diff options
author | Brendan Dahl <brendan.dahl@gmail.com> | 2024-08-06 14:15:58 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-06 14:15:58 -0700 |
commit | 0c269482097ae9da62a690b0ace406e2d2109c48 (patch) | |
tree | d7fa2f2f5b9e7e703dce9805f9dbd1bb16f65cfb /third_party/FP16/include/fp16.h | |
parent | d5a5425c0c76cfc08711b81d6ec70c3a2879e405 (diff) | |
download | binaryen-0c269482097ae9da62a690b0ace406e2d2109c48.tar.gz binaryen-0c269482097ae9da62a690b0ace406e2d2109c48.tar.bz2 binaryen-0c269482097ae9da62a690b0ace406e2d2109c48.zip |
[FP16] Implement load and store instructions. (#6796)
Specified at
https://github.com/WebAssembly/half-precision/blob/main/proposals/half-precision/Overview.md
Diffstat (limited to 'third_party/FP16/include/fp16.h')
-rw-r--r-- | third_party/FP16/include/fp16.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/third_party/FP16/include/fp16.h b/third_party/FP16/include/fp16.h new file mode 100644 index 000000000..adbcb961c --- /dev/null +++ b/third_party/FP16/include/fp16.h @@ -0,0 +1,7 @@ +#pragma once +#ifndef FP16_H +#define FP16_H + +#include <fp16/fp16.h> + +#endif /* FP16_H */ |