-
-
Notifications
You must be signed in to change notification settings - Fork 28
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
implement floor and ceil for f64 and f32 types #183
Conversation
dc28800
to
079acac
Compare
It looks like the workflow is broken for WASM other than stable, but running all other workflows succeeded for me locally. |
The WASI target is now called |
Thanks this worked, but now it looks like there's some kind of permission issue with the workflows... |
Now an architecture error... I'm not super familiar with wasm if anyone wants to pitch in |
I'm gonna merge this, the wasm stuff shouldn't be on your shoulders. @CryZe can you fix the wasm ci setup at some point later? |
The problem is that it's still the old target name here (and possibly other places): https://github.com/Lokathor/wide/blob/main/.cargo-ci/config#L11 |
This PR implements the
floor
andceil
functions for the f64 and f32 types.