Installing OpenBLAS
Procedure
- Use PuTTY to log in to the server as the root user.
- Decompress the OpenBLAS installation package.
tar -xvf OpenBLAS-0.3.6.tar.gz
- Go to the directory generated after the decompression.
cd OpenBLAS-0.3.6
- Perform the configuration.
export CC=`which clang` export CXX= `which clang++` export FC=`which flang`
- Perform the compilation and installation.
make make PREFIX=/path/to/OPENBLAS install
Parent topic: Configuring the Compilation Environment