I am trying to install scalapack on my linux laptop (I have opempi) with the scalapack installer.
I have run successfully the following installation:
- Code: Select all
wget http://www.netlib.org/scalapack/scalapack_installer.tgz
tar -xzvf scalapack_installer.tgz
cd scalapack_installer_1.0.2/
sudo ./setup.py --prefix=/opt/scalapack --mpiincdir=/usr/lib/openmpi/include --downblas --downlapack
Unfortunately the directory /opt/scalapack/include is empty. I do not have any scalapack.h to link.
I have tried to compile my C program with
- Code: Select all
mpicc ... -L/opt/scalapack/lib -lscalapack
or
- Code: Select all
mpicc ... -L/opt/scalapack/lib/libscalapack.a
but I got
- Code: Select all
fatal error: scalapack.h: No such file or directory
#include <scalapack.h>
Note that I can compile and run my program on some machine where scalapack have been installed.
Best Regards
Alex

