We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50fe993 commit 0958575Copy full SHA for 0958575
install_scalapack.md
@@ -0,0 +1,14 @@
1
+## scalapack source install
2
+- we need libblas.a and liblapack.a
3
+- Download source from https://performance.netlib.org/lapack/
4
+- setup using mkdir build; cd build; ccmake ..
5
+ - disable shared lib. Install static only
6
+ - add -fPIC into CFLAG and FFLAG
7
+- make -j 40; make install
8
+- Download source from http://www.netlib.org/scalapack/
9
+- setup using mkdir build; cd buld; ccmake ..
10
+ - Use the location of libblas.a and liblapack.a
11
+ - Use mpicc, mpif90 as necessary
12
13
+
14
+## for intel compiler, use intel mpi + mkl when available
0 commit comments