-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix mpi test #956
Fix mpi test #956
Conversation
@@ -190,7 +190,7 @@ BLAS.set_num_threads(N) | |||
where `N` is the number of threads you desire. | |||
To **check the number of BLAS threads** currently used, you can use | |||
```julia | |||
Int(ccall((BLAS.@blasfunc(openblas_get_num_threads), BLAS.libblas), Cint, ())) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Int(…)
really complicated and does not work on my machine or cluster. get_num_threads()
does.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see next line; we depend on a newer version so just scrap this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good to merge after the minor comment
@@ -190,7 +190,7 @@ BLAS.set_num_threads(N) | |||
where `N` is the number of threads you desire. | |||
To **check the number of BLAS threads** currently used, you can use | |||
```julia | |||
Int(ccall((BLAS.@blasfunc(openblas_get_num_threads), BLAS.libblas), Cint, ())) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see next line; we depend on a newer version so just scrap this.
Sorry, overlooked because MPI test lately fail randomly for no apparent reason…