Installing OpenBLAS
Procedure
- Use PuTTY to log in to the server as the root user.
- Upload the OpenBLAS source package to the path/to/OPENBLAS directory.
- Install BLAS and LAPACK using Yum.
yum install blas64.aarch64 blas64-devel.aarch64 lapack64.aarch64 lapack64-devel.aarch64 -y
- Decompress the OpenBLAS source package.
cd /path/to/OPENBLAS tar -xvf OpenBLAS-0.3.6.tar.gz
- Go to the directory generated after the decompression.
cd OpenBLAS-0.3.6
- Perform the compilation and installation.
make make PREFIX=/path/to/OPENBLAS install
Parent topic: Configuring the Compilation Environment