-
Notifications
You must be signed in to change notification settings - Fork 7
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
/lib/aarch64-linux-gnu/libqmkl6.so: undefined symbol: drm_v3d_submit_csd #20
Comments
What if |
Thanks for the reply. That worked. But I got another error:
I guess that is because qmkl6 doesn't have all cblas functions. Am I right? Do you know any workaround? |
The only workaround is to implement the missing calls, which really is a hard work... c.f. single-precision gemm: src/sgemm_rnn.py. |
Hello again, Thanks for the reply.
Do you possibly know what is the easiest way to do this? I mean, how to tell numpy to use QMKL in some cases and use OpenBlas in some other. |
A lookup table-based approach with dlsym seems feasible. |
Hello,
I'm trying to use qmkl6 as numpy backend. I already installed
py-videocore6
andlibdrm_v3d
.After successfully installing numpy against qmkl6, when I'm importing numpy, I keep getting this error:
/lib/aarch64-linux-gnu/libqmkl6.so: undefined symbol: drm_v3d_submit_csd
Do you possibly have any idea how to fix this?
The text was updated successfully, but these errors were encountered: