-
Notifications
You must be signed in to change notification settings - Fork 18
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
could not import: cblas_ddot #38
Comments
Compiling with Hat tip: SciNim/nimblas#3 (comment) |
Some functions are pure nim, for instance Most of the functionality, though, comes from BLAS, which is dinamically linked. Getting the right library on all platforms is a little tricky, which is why you may have to pass the CBLAS (I use the C API) library name explicitly |
Thank you, that makes sense. Is |
It depends on the libraries installed in your system. Assuming you are on Linux, the library could be called To answer your second question, no, you cannot specify this in the source code, it is an external flag. |
Thank you, |
The following works fine
but the following throws an error
could not import: cblas_ddot
Similar when
echo 2.0 * v1
I getcould not import: cblas_dcopy
. On the other handecho min(v1)
works.Any ideas?
The text was updated successfully, but these errors were encountered: