-
-
Notifications
You must be signed in to change notification settings - Fork 25.8k
Add fused type to Cython files #5973
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
the main benefit is saving memory using 32bit float, right? So we should look into algorithms that currently only have 64bit, and I guess that are commonly used? Maybe also the ones that are often memory limited? Trees are always 32 bit, SVMs are C++ anyhow and we don't want to touch. How about the neighbors trees (probably tricky)? or DBSCAN or other clustering algorithms? |
see #5932 |
Also everything related to coordinate descent uses 64 bit. |
Now that we have .c files generation embedded in the build system, we can try adding fused type to various cython based module. Any thoughts on where to begin, on priorities and excepted challenges ?
The text was updated successfully, but these errors were encountered: