search for: fimplicit

Displaying 13 results from an estimated 13 matches for "fimplicit".

Did you mean: implicit
2019 Sep 11
4
Fw: Calling a LAPACK subroutine from R
...namic library to be loaded in your script: > > <mkso.sh> > # Build a binary dynamic library for accessing Lapack dpbtrf > > # syntax checking > > SONAME=xdpbtrf.so > > echo Strict syntax checking > echo ---------------------- > gfortran -c -fsyntax-only -fimplicit-none -Wall src/*.f || exit 1 > > LAPACK=$(R CMD config LAPACK_LIBS) > R CMD SHLIB --output=${SONAME} src/*.f ${LAPACK} || exit 1 > </mkso.sh> > > To load the dynamic library xdpbtrf.so change your script into this > > <yourscript> > dyn.load("xdpbtrf....
2019 Aug 04
0
gfortran 9 quantreg bug
Roger, I have run gfortran -c -fsyntax-only -fimplicit-none -Wall -pedantic rqbr.f in the src folder of quantreg. There are many warnings about defined but not used labels. Also two errors such as "Symbol ?in? at (1) has no IMPLICIT type". And warnings such as: Warning: "Possible change of value in conversion from REAL(8) to INTEGER(4)...
2019 Sep 11
4
Fw: Calling a LAPACK subroutine from R
Sorry for cross-posting, but I realized my question might be more appropriate for r-devel... Thank you, Giovanni ________________________________________ From: R-help <r-help-bounces at r-project.org> on behalf of Giovanni Petris <gpetris at uark.edu> Sent: Tuesday, September 10, 2019 16:44 To: r-help at r-project.org Subject: [R] Calling a LAPACK subroutine from R Hello R-helpers!
2011 May 05
2
Compiling a FORTRAN program under Windows 7
Hi, I am trying to compile a FORTRAN program to call from R under Windows 7 but I am having problem in the compiling step. To demonstrate this is the program testit.f: ------------------------------------------ subroutine TESTIT(x,n,m) dimension x(n) do 10 i=1,n 10 x(i)=x(i)**m end -------------------------------------------- When I compile it with gfortran I get
2019 Sep 12
1
Calling a LAPACK subroutine from R
...your script: >>> <mkso.sh> >>> # Build a binary dynamic library for accessing Lapack dpbtrf >>> # syntax checking >>> SONAME=xdpbtrf.so >>> echo Strict syntax checking >>> echo ---------------------- >>> gfortran -c -fsyntax-only -fimplicit-none -Wall src/*.f || exit 1 >>> LAPACK=$(R CMD config LAPACK_LIBS) >>> R CMD SHLIB --output=${SONAME} src/*.f ${LAPACK} || exit 1 >>> </mkso.sh> >>> To load the dynamic library xdpbtrf.so change your script into this >>> <yourscript> >&g...
2019 Sep 11
0
Fw: Calling a LAPACK subroutine from R
...ell script in the folder of your script to generate a dynamic library to be loaded in your script: <mkso.sh> # Build a binary dynamic library for accessing Lapack dpbtrf # syntax checking SONAME=xdpbtrf.so echo Strict syntax checking echo ---------------------- gfortran -c -fsyntax-only -fimplicit-none -Wall src/*.f || exit 1 LAPACK=$(R CMD config LAPACK_LIBS) R CMD SHLIB --output=${SONAME} src/*.f ${LAPACK} || exit 1 </mkso.sh> To load the dynamic library xdpbtrf.so change your script into this <yourscript> dyn.load("xdpbtrf.so") n <- 4L phi <- 0.64 AB <-...
2019 Sep 11
1
Fw: Calling a LAPACK subroutine from R
...# Build a binary dynamic library for accessing Lapack dpbtrf > > > > # syntax checking > > > > SONAME=xdpbtrf.so > > > > echo Strict syntax checking > > echo ---------------------- > > gfortran -c -fsyntax-only -fimplicit-none -Wall src/*.f || exit 1 > > > > LAPACK=$(R CMD config LAPACK_LIBS) > > R CMD SHLIB --output=${SONAME} src/*.f ${LAPACK} || exit 1 > > </mkso.sh> > > > > To load the dynamic library xdpbtrf.so? change your script into this...
2019 Sep 12
0
Calling a LAPACK subroutine from R
...ic library to be loaded in your script: >> <mkso.sh> >> # Build a binary dynamic library for accessing Lapack dpbtrf >> # syntax checking >> SONAME=xdpbtrf.so >> echo Strict syntax checking >> echo ---------------------- >> gfortran -c -fsyntax-only -fimplicit-none -Wall src/*.f || exit 1 >> LAPACK=$(R CMD config LAPACK_LIBS) >> R CMD SHLIB --output=${SONAME} src/*.f ${LAPACK} || exit 1 >> </mkso.sh> >> To load the dynamic library xdpbtrf.so change your script into this >> <yourscript> >> dyn.load("xd...
2019 Aug 04
6
gfortran 9 quantreg bug
I?d like to solicit some advice on a debugging problem I have in the quantreg package. Kurt and Brian have reported to me that on Debian machines with gfortran 9 library(quantreg) f = summary(rq(foodexp ~ income, data = engel, tau = 1:4/5)) plot(f) fails because summary() produces bogus estimates of the coefficient bounds. This example has been around in my R package from the earliest days of R,
2019 Sep 11
0
Fw: Calling a LAPACK subroutine from R
...gt; > > <mkso.sh> > > # Build a binary dynamic library for accessing Lapack dpbtrf > > > > # syntax checking > > > > SONAME=xdpbtrf.so > > > > echo Strict syntax checking > > echo ---------------------- > > gfortran -c -fsyntax-only -fimplicit-none -Wall src/*.f || exit 1 > > > > LAPACK=$(R CMD config LAPACK_LIBS) > > R CMD SHLIB --output=${SONAME} src/*.f ${LAPACK} || exit 1 > > </mkso.sh> > > > > To load the dynamic library xdpbtrf.so change your script into this > > > > <yoursc...
2019 Sep 12
2
Fw: Calling a LAPACK subroutine from R
...dynamic library to be loaded in your script: > > <mkso.sh> > # Build a binary dynamic library for accessing Lapack dpbtrf > > # syntax checking > > SONAME=xdpbtrf.so > > echo Strict syntax checking > echo ---------------------- > gfortran -c -fsyntax-only -fimplicit-none -Wall src/*.f || exit 1 > > LAPACK=$(R CMD config LAPACK_LIBS) > R CMD SHLIB --output=${SONAME} src/*.f ${LAPACK} || exit 1 > </mkso.sh> > > To load the dynamic library xdpbtrf.so change your script into this > > <yourscript> > dyn.load("xdpbtrf.so&...
2019 Sep 12
0
Fw: Calling a LAPACK subroutine from R
...apack dpbtrf >>>>> >>>>> # syntax checking >>>>> >>>>> SONAME=xdpbtrf.so >>>>> >>>>> echo Strict syntax checking >>>>> echo ---------------------- >>>>> gfortran -c -fsyntax-only -fimplicit-none -Wall src/*.f || exit 1 >>>>> >>>>> LAPACK=$(R CMD config LAPACK_LIBS) >>>>> R CMD SHLIB --output=${SONAME} src/*.f ${LAPACK} || exit 1 >>>>> </mkso.sh> >>>>> >>>>> To load the dynamic library xdpbt...
2019 Jul 29
4
ICE in release/9.x when using LLVM_ENABLE_MODULES
I ran into an LLVM/Clang crash when attempting to do the following: 1. Build Clang from the release/9.x branch source. 2. Use the Clang from (1) to build clangd on the release/9.x branch, with LLVM_ENABLE_MODULES=On. I wrote a script to reproduce the crash: https://gist.github.com/modocache/ac366ca9673b93bb21e75d3e72162608 At the above URL, you'll find a script `repro.sh` that reproduces