Skip to content
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

Runtime: Add float16 support to bigarray #1803

Merged
merged 7 commits into from
Jan 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
* Test: run wasm tests on windows
* Misc: drop support for IE
* Misc: move tests to OCaml 5.3
* Runtime: support for float16 bigarrays

## Bug fixes
* Compiler: Fix small bug in global data flow analysis (#1768)
Expand Down
8 changes: 8 additions & 0 deletions compiler/tests-jsoo/dune
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
\
test_io
test_floats
test_float16
test_marshal_compressed
test_parsing
calc_parser
Expand All @@ -51,6 +52,13 @@
(preprocess
(pps ppx_expect)))

(test
(name test_float16)
(build_if
(>= %{ocaml_version} 5.2))
(modules test_float16)
(modes js wasm native))

(ocamlyacc calc_parser)

(ocamllex calc_lexer)
Expand Down
Loading
Loading