Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

No Format
module load library/superflsuperlu/5.2.1

 

Installation

No Format
module purge; sleep 4
module load cmake/3.5.0

cd /sw/library/superLU/5.2.1/src/
tar -zxvf superlu_5.2.1.tar.gz
mkdir -p /sw/library/superLU/5.2.1/src/SuperLU_5.2.1/build
cd /sw/library/superLU/5.2.1/src/SuperLU_5.2.1/build
cmake   -DBUILD_SHARED_LIBS=ON -DCMAKE_C_COMPILER=/sw/gcc/7.1.0/bin/gcc -DCMAKE_CXX_COMPILER=/sw/gcc/7.1.0/bin/g++ -DCMAKE_Fortran_COMPILER=/sw/gcc/7.1.0/bin/gfortran -DCMAKE_INSTALL_PREFIX=/sw/library/superLU/5.2.1   -D BLAS_LIB=/sw/library/blas/3.8.0/lib64 .. 2>&1 | tee cmakeLog.txt

make all 2>&1 | tee makeAllLog.txt
make install 2>&1 | tee makeInstallLog.txt

...