Displaying 6 results from an estimated 6 matches for "dlapack".
Did you mean:
lapack
2014 Jun 04
1
Lapack / dgesvx function declaration
...h, i find the following line
F77_NAME(dgesvx)(const int* fact, const char* trans, const int* n,
and I believe that "fact" should've been char instead of int, i.e.
F77_NAME(dgesvx)(const char* fact, const char* trans, const int* n,
My reasoning: In the R-source:
src/modules/lapack/dlapack.f
I find the following lines:
* SUBROUTINE DGESVX( FACT, TRANS, N, NRHS, A, LDA, AF, LDAF, IPIV,
* EQUED, R, C, B, LDB, X, LDX, RCOND, FERR, BERR,
* WORK, IWORK, INFO )
*
* .. Scalar Arguments ..
* CHARACTER EQUED, FACT,...
2004 Feb 26
2
ATLAS threaded 64 bit (Opteron) - need *.so?
...-g -O2 -Wall -fno-f90
>>
>> Interfaces supported: X11
>> External libraries: readline, BLAS(ATLAS)
^^^^^^^^^^^
and compilation (of course) goes fine till the crucial linking
stage :
gcc -shared -o libRlapack.so dlapack0.lo dlapack1.lo dlapack2.lo dlapack3.lo cmplx.lo -lf77blas -latlas -L/usr/lib64 -L/usr/lib/gcc-lib/x86_64-redhat-linux/3.2.3 -L/usr/lib/gcc-lib/x86_64-redhat-linux/3.2.3/../../../../lib64 -L/usr/lib/gcc-lib/x86_64-redhat-linux/3.2.3/../../.. -L/lib/../lib64 -L/usr/lib/../lib64 -lfrtbegin -lg2c -lm...
2010 Nov 20
1
R-.12.0 atlas lapack
Greetings,
I last built R-2.11.1 a few months ago. The computer was equipped with
these:-
---cpu amd64 2 cores
---o/s cblfs 64-bit only linux kernel-2.6.32 gcc-4.4.2 jdk(1.5)-6U20?
---bls atlas3.9.26 lapacck-3.2.1
I obtained an installed directory of ~58Mbytes and in the ~/lib directory
was libR.so (~7.8Mbytes in size) as well as libRblas.so and libRlapack.so
(~2.9Mbytes).
I have
2016 May 17
2
R-3.3.0 Base: Windows compilation fails while building 'base' package
...:
gfortran -m64 -O3 -mtune=core2 -c cmplx.f -o cmplx.o
gcc -std=gnu99 -m64 -I../../include -DHAVE_CONFIG_H -O3 -Wall -pedantic
-mtune=
core2 -c init_win.c -o init_win.o
windres -F pe-x86-64 -i Rlapackrc.rc -o Rlapackrc.o
gcc -std=gnu99 -m64 -shared -s -o ../../../bin/x64/Rlapack.dll dlamch.o
dlapack.
o cmplx.o init_win.o Rlapackrc.o -L../../../bin/x64 -lR -lRblas -lgfortran
-lqua
dmath
gcc -std=gnu99 -m64 -I../../include -DHAVE_CONFIG_H -O3 -Wall -pedantic
-mtune=
core2 -c Lapack.c -o Lapack.o
windres -F pe-x86-64 -i dllversion.rc -o dllversion.o
gcc -std=gnu99 -m64 -shared -s -o lapack....
2014 Jun 30
1
Building R on Windows: mkdir of Rtools creates directories with read-only permissions [WEIRD]
..../../bin/Rscript.exe
> make[1]: `COPYRIGHTS' is up to date.
> make --no-print-directory -C ../modules -f Makefile.win \
> CFLAGS='-O3 -Wall -pedantic -mtune=core2' FFLAGS='-O3 -mtune=core2'
> gcc -std=gnu99 -shared -s -o ../../../bin/i386/Rlapack.dll dlamch.o
> dlapack.o cmplx.o init_win.o Rlapackrc.o -L../../../bin/i386 -lR
> -lRblas -lgfortran
> cp lapack.dll ../../../modules/i386/lapack.dll
>
> and there is (obviously) read permissions on those files:
>
> C:\R\src\gnuwin32>file ..\..\bin\i386\*.dll
> ..\..\bin\i386\R.dll: PE32...
2014 Jan 09
0
Building R on Windows: mkdir of Rtools creates directories with read-only permissions [WEIRD]
...../../bin
cp Rfe.exe ../../../bin/Rscript.exe
make[1]: `COPYRIGHTS' is up to date.
make --no-print-directory -C ../modules -f Makefile.win \
CFLAGS='-O3 -Wall -pedantic -mtune=core2' FFLAGS='-O3 -mtune=core2'
gcc -std=gnu99 -shared -s -o ../../../bin/i386/Rlapack.dll dlamch.o
dlapack.o cmplx.o init_win.o Rlapackrc.o -L../../../bin/i386 -lR
-lRblas -lgfortran
cp lapack.dll ../../../modules/i386/lapack.dll
and there is (obviously) read permissions on those files:
C:\R\src\gnuwin32>file ..\..\bin\i386\*.dll
..\..\bin\i386\R.dll: PE32 executable for MS Windows (DLL)
(G...