-
-
Notifications
You must be signed in to change notification settings - Fork 1
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
[Q] Int, Double and Float comparisons? #17
Comments
These can be implemented 😁 |
For |
Which one of these are you looking to expose from this library? |
Thank you for the link! I don't know which bindings might be needed yet, but some people say leveraging this should give us faster sorting code than |
Unfortunately GHC doesn't support SIMD (yet). There is ongoing work to improve SIMD support in GHC: https://gist.github.com/Abhiroop/9a2600f24f8139b7fc0742a2b4585bb3 The work around (which is what this library does) is to write the relevant functions in C and then writing FFI wrappers to call the C functions. |
Are there comparison operations for integer and floating point types, or how could they be implemented? Thanks!
The text was updated successfully, but these errors were encountered: