-
-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Fast Math Functions #352
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
Comments
They look very nice. Does the STM32F405 have Neon SMD instructions? The LGPL is an issue... we can't just include it in the uPy source tree. |
no it doesn't, VFP/some SIMD instructions only, but this has all the math functions we might ever need (and will compile for other platforms) why can't we use LGPL ? |
We can't include LGPL source in the repo here, nor modify that source and use it, unless we convert to LGPL. We can link against it, but that's it. Musl is MIT and includes all math functions, written in C. We could use that. |
it might be worth building as a library if MP is ported to a platform with Neon ? could be used to implement something like numpy maybe ? anyway, I will close this now since it's not very useful at the moment. |
Hi,
Found some fast math functions here:
http://code.google.com/p/math-neon/source/browse/trunk/?r=28
There are two versions of each function, neon and a fast software approximation, the library is released under LGPL.
The text was updated successfully, but these errors were encountered: