Rate This Document
Findability
Accuracy
Completeness
Readability

Installing OpenBLAS

Procedure

  1. Use PuTTY to log in to the server as the root user.
  2. Decompress the OpenBLAS installation package.
    tar -xvf OpenBLAS-0.3.6.tar.gz
  3. Go to the directory generated after the decompression.
    cd OpenBLAS-0.3.6
  4. Perform the configuration.
    export CC=`which clang`
    export CXX= `which clang++`
    export FC=`which flang`
  5. Perform the compilation and installation.
    make
    make PREFIX=/path/to/OPENBLAS install