-
Notifications
You must be signed in to change notification settings - Fork 227
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TODO: - show somehow generalize to/from encodings? - move code to somwewhere else?
- Loading branch information
Showing
2 changed files
with
88 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
def from_f16be: _from_float(16; false); | ||
def from_f32be: _from_float(32; false); | ||
def from_f64be: _from_float(64; false); | ||
def from_f16le: _from_float(16; true); | ||
def from_f32le: _from_float(32; true); | ||
def from_f64le: _from_float(64; true); | ||
def to_f16le: _to_float(16; true); | ||
def to_f32le: _to_float(32; true); | ||
def to_f64le: _to_float(64; true); | ||
def to_f16be: _to_float(16; false); | ||
def to_f32be: _to_float(32; false); | ||
def to_f64be: _to_float(64; false); |