search for: _icclibpath

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

2015 Sep 04
2
Build R with MKL and ICC
...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="if...
2015 Sep 02
4
Build R with MKL and ICC
...e(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 CXX="icpc" export AR=&q...
2015 Sep 02
0
Build R with MKL and ICC
...> 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 CXX...
2015 Sep 05
0
Build R with MKL and ICC
...>> > >> > ------------------------------------------------------- >> > 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" >> >...
2015 Sep 07
2
Build R with MKL and ICC
...gt; > ------------------------------------------------------- > >> > 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...
2015 Sep 30
1
Build R with MKL and ICC
...vars in a script so it won't polluated your shell environment once the build is done. --------------------------------------------------------------- #! /bin/sh source /opt/intel/compilers_and_libraries_2016.0.109/linux/mkl/bin/mklvars.sh intel64 source /opt/intel/bin/compilervars.sh intel64 _icclibpath=/opt/intel/compilers_and_lbraries_2016.0.109/linux/compiler/lib/intel64/ _mkllibpath=${MKLROOT}/lib/intel64/ _omp_lib=/opt/intel/lib/intel64/ MKL=" -L${_mkllibpath} -lmkl_rt -lpthread" export CC="icc" export CXX="icpc" export AR="xiar" export LD="xild&...
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