-
Notifications
You must be signed in to change notification settings - Fork 30
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
[WIP] FEA Support Veclib/Accelerate #166
base: master
Are you sure you want to change the base?
Conversation
I don't think it's possible to support Accelerate:
|
When using otool I can see that it's actually linked to
|
Here are known cases of numpy being linked accelerate in the wild:
Note that the various packaging methods my differ in how vecLib is linked to the Python program. This might introduce additional difficulty in finding a robust heuristic to detect accelerate/vecLib given the fact that there are no vecLib-specific exported symbols, as far as I know. |
So irl we discussed the possibility to check if the detected Although on linux it's seems doable using I tried to look at the source code of I have an alternative that I don't particularly like. When we find a |
Another alternative that we discussed irl but I'm not a fan either is to directly check for |
Anyway, let's not delay the release any longer for that. |
Fixes #135.