Skip to content

AMD BLIS BUILD Instructions

Pradeep Rao edited this page Jul 19, 2018 · 1 revision

Here are the build instructions for AMD BLIS

Single-thread BLIS : This version is not thread-safe when used with multi-threaded application

  1. $ ./configure --enable-shared --enable-cblas --prefix= zen

  2. $ make

  3. $ make install

Multi-thread version : This version is thread-safe and can be used with multi-threaded application

  1. $ ./configure --enable-shared --enable-cblas --enable-threading=[Mode] --prefix= zen

[Mode] values can be openmp,pthread,no. "no" will disable multi-threading.

  1. $ make

  2. $ make install