Complete the following steps to install a single-threaded AOCL-BLAS:
Clone the AOCL-BLAS Git repository (amd/blis.git).
Configure the library as required:
# CMake commands # GCC (Default) $ cmake . -DENABLE_CBLAS=ON -DCMAKE_INSTALL_PREFIX=<your-install-dir> \ -DBLIS_CONFIG_FAMILY=auto # AOCC $ cmake . -DENABLE_CBLAS=ON -DCMAKE_INSTALL_PREFIX=<your-install-dir> \ -DCOMPLEX_RETURN=intel CC=clang CXX=clang++ -DBLIS_CONFIG_FAMILY=auto # Alternatively, using configure # GCC (Default) $ ./configure --enable-cblas --prefix=<your-install-dir> auto # AOCC $ ./configure --enable-cblas --prefix=<your-install-dir> \ --complex-return=intel CC=clang CXX=clang++ auto
To build the library, use the command:
$ makeTo install the library on build machine, use the command:
$ make install