search for: _mkllibpath

Displaying 7 results from an estimated 7 matches for "_mkllibpath".

2015 Sep 04
2
Build R with MKL and ICC
...t; > R-3.2.2 > > > > Here is my build configuration: > > > > ------------------------------------------------------- > > source /opt/intel/compilers_and_libraries_2016/linux/mkl/bin/mklvars.sh intel64 > > source /opt/intel/bin/compilervars.sh intel64 > > _mkllibpath=$MKLROOT/lib/intel64 > > _icclibpath=$MKLROOT/linux/compiler/lib > > export LD_LIBRARY_PATH=${_mkllibpath}:${_icclibpath} > > export MKL="-L${_mkllibpath} -L${_icclibpath} -lmkl_intel_lp64 > > -lmkl_intel_thread -lmkl_core -liomp5 -lpthread" > > export CC=&q...
2015 Sep 02
4
Build R with MKL and ICC
...ineIntel Model name: Intel(R) Core(TM) i7-2600K CPU @ 3.40GHz - Sandybridge R-3.2.2 Here is my build configuration: ------------------------------------------------------- source /opt/intel/compilers_and_libraries_2016/linux/mkl/bin/mklvars.sh intel64 source /opt/intel/bin/compilervars.sh intel64 _mkllibpath=$MKLROOT/lib/intel64 _icclibpath=$MKLROOT/linux/compiler/lib export LD_LIBRARY_PATH=${_mkllibpath}:${_icclibpath} export MKL="-L${_mkllibpath} -L${_icclibpath} -lmkl_intel_lp64 -lmkl_intel_thread -lmkl_core -liomp5 -lpthread" export CC="icc" export F77="ifort" export...
2015 Sep 30
1
Build R with MKL and ICC
...ad it's working for you. I'm not sure I understand your final > answer. Are you saying that the version I posted worked for you as > given, or that you had to remove some of the other options? I say it works perfectly when using the single dynamic library (lmkl_rt): MKL=" -L${_mkllibpath} -lmkl_rt -lpthread -lm" N.B: not sure the -lm is needed, and It builds without it. It seems it may trigger some issues on. See[0]. Thus I removed it > Perhaps you could post the full final recipe in a way that others can > copy and paste if they find this thread in the future? Here it...
2015 Sep 02
0
Build R with MKL and ICC
...i7-2600K CPU @ 3.40GHz - Sandybridge > R-3.2.2 > > Here is my build configuration: > > ------------------------------------------------------- > source /opt/intel/compilers_and_libraries_2016/linux/mkl/bin/mklvars.sh intel64 > source /opt/intel/bin/compilervars.sh intel64 > _mkllibpath=$MKLROOT/lib/intel64 > _icclibpath=$MKLROOT/linux/compiler/lib > export LD_LIBRARY_PATH=${_mkllibpath}:${_icclibpath} > export MKL="-L${_mkllibpath} -L${_icclibpath} -lmkl_intel_lp64 > -lmkl_intel_thread -lmkl_core -liomp5 -lpthread" > export CC="icc" > export...
2015 Sep 05
0
Build R with MKL and ICC
...; >> > Here is my build configuration: >> > >> > ------------------------------------------------------- >> > source /opt/intel/compilers_and_libraries_2016/linux/mkl/bin/mklvars.sh intel64 >> > source /opt/intel/bin/compilervars.sh intel64 >> > _mkllibpath=$MKLROOT/lib/intel64 >> > _icclibpath=$MKLROOT/linux/compiler/lib >> > export LD_LIBRARY_PATH=${_mkllibpath}:${_icclibpath} >> > export MKL="-L${_mkllibpath} -L${_icclibpath} -lmkl_intel_lp64 >> > -lmkl_intel_thread -lmkl_core -liomp5 -lpthread" >&g...
2015 Sep 07
2
Build R with MKL and ICC
...y build configuration: > >> > > >> > ------------------------------------------------------- > >> > source /opt/intel/compilers_and_libraries_2016/linux/mkl/bin/mklvars.sh intel64 > >> > source /opt/intel/bin/compilervars.sh intel64 > >> > _mkllibpath=$MKLROOT/lib/intel64 > >> > _icclibpath=$MKLROOT/linux/compiler/lib > >> > export LD_LIBRARY_PATH=${_mkllibpath}:${_icclibpath} > >> > export MKL="-L${_mkllibpath} -L${_icclibpath} -lmkl_intel_lp64 > >> > -lmkl_intel_thread -lmkl_core -liomp5 -l...
2015 Sep 29
2
Build R with MKL and ICC
On Wed, Sep 9, 2015 at 11:26 PM, Nathan Kurz <nate at verse.com> wrote: > > As a short and simple approach, I just compiled the current R release > on Ubuntu with ICC and MKL using just this: > > $ tar -xzf R-3.2.2.tar.gz > $ cd R-3.2.2 > $ CC=icc CXX=icpc AR=xiar LD=xild CFLAGS="-g -O3 -xHost" CXXFLAGS="-g > -O3 -xHost" ./configure