search for: lmkl_sequential

Displaying 3 results from an estimated 3 matches for "lmkl_sequential".

2008 Jan 25
4
Problem building R with Intel MKL v10 BLAS
NO Hi. I'm not sure if this is an R-help or R-devel problem, so I'm starting here in the hope that someone can help (and willing to go to the other list if it's more appropriate). I think I am following all of the instructions in the various manuals, but clearly I am missing something. I have an Intel EM64T Dell with 2 dual-core Xeon processors running Red Hat EL5. I would
2008 May 27
3
MKL Patch
...braries to use depend on the platform and compiler, this requires a bit of setup to get working. For me, the correct configure line is: bash autogen.sh && CFLAGS="-O2 -g -I/opt/intel/mkl/10.0.3.020/include/" LDFLAGS="-L/opt/intel/mkl/10.0.3.020/lib/em64t -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -lm" ./configure --with-intel-mkl If you use the intel compiler, you can replace all of the '-lmkl_xx' with a single '-lmkl', and if you want threaded support, replace mkl_sequential with mkl_gnu_thread. If there are anyone from Intel reading this list: Fix your...
2010 Aug 06
0
Problems using external BLAS
...with several libraries: # ACML: export LD_LIBRARY_PATH=/site/VERSIONS/acml-3.6.0/gfortran64_int64/lib BLAS=--with-blas="-L/site/VERSIONS/acml-3.6.0/gfortran64_int64/lib -lacml" LAPACK=--with-lapack # MKL 11: BLAS=--with-blas="-L/site/VERSIONS/intel-11.1/mkl/lib/em64t -lmkl_gf_lp64 -lmkl_sequential -lmkl_lapack -lmkl_core" LAPACK=--with-lapack # MKL 8.1, trad. way: BLAS=--with-blas="-L/site/intel/cmkl/8.1/lib/em64t -lmkl -lvml -lguide -lpthread" LAPACK=--with-lapack I configure R like this: export CFLAGS="-O3 -mtune=opteron" export FFLAGS="-O3 -mtune=opteron&q...