我要评分
获取效率
正确性
完整性
易理解

Installing OpenBLAS Dependencies

Procedure

  1. Use PuTTY to log in to the server as the root user.
  2. Go to the OpenBLAS installation directory.
    cd /path/to/OPENBLAS
  3. Decompress the OpenBLAS installation package.
    tar -xvf OpenBLAS.tar.gz
  4. Go to the directory generated after the decompression.
    cd OpenBLAS-0.3.6
  5. Perform the configuration.
    export CC=`which clang`
    export CXX=`which clang++`
    export FC=`which flang`
  6. Load the environment variables.
    export LD_LIBRARY_PATH=/path/to/OPENBLAS/lib:$LD_LIBRARY_PATH
  7. Perform the installation.
    make
    make PREFIX=/path/to/OPENBLASinstall