forked from flame/blis
-
Notifications
You must be signed in to change notification settings - Fork 46
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
-
$ ./configure --enable-shared --enable-cblas --prefix= zen
-
$ make
-
$ make install
Multi-thread version : This version is thread-safe and can be used with multi-threaded application
- $ ./configure --enable-shared --enable-cblas --enable-threading=[Mode] --prefix= zen
[Mode] values can be openmp,pthread,no. "no" will disable multi-threading.
-
$ make
-
$ make install