Browse Source
Update user_manual.md for static linker
when I use static link method to compile , result is undefined with pthread_create, so we should add -lpthread
tags/v0.3.28^2
cyk
GitHub
2 years ago
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
docs/user_manual.md
|
|
|
@@ -159,7 +159,7 @@ int main(int argc, char* argv[]) |
|
|
|
``` |
|
|
|
|
|
|
|
``` |
|
|
|
gcc -o time_dgemm time_dgemm.c /your/path/libopenblas.a |
|
|
|
gcc -o time_dgemm time_dgemm.c /your/path/libopenblas.a -lpthread |
|
|
|
./time_dgemm <m> <n> <k> |
|
|
|
``` |
|
|
|
|
|
|
|
|