This repository has been archived by the owner on Dec 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Floating-point rounding instructions (#232)
New floating-point rounding instructions: - Round to nearest integer, ties to even: `f32x4.nearest`/`f64x2.nearest` - Round to integer towards zero (truncate to integer): `f32x4.trunc`/`f64x2.trunc` - Round to integer above (ceiling): `f32x4.ceil`/`f64x2.ceil` - Round to integer below (floor): `f32x4.floor`/`f64x2.floor`
- Loading branch information
1 parent
e1ff82e
commit 8e87db7
Showing
3 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters