Skip to content

Commit 91051e9

Browse files
author
metrics
committed
chore: Merge branch 'main' of https://github.com/arnoox/herkos into pr-d/optimizer-infrastructure
2 parents 1b03520 + 5cb6c33 commit 91051e9

3 files changed

Lines changed: 491 additions & 1 deletion

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ docs/.ub_cache/
2323
**/*.so
2424
**/*.dylib
2525
**/*.wasm
26+
**/*.wasm.rs
2627

2728
# Test artifacts
2829
*.profraw

crates/herkos-runtime/src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ mod ops;
2626
pub use ops::{
2727
i32_div_s, i32_div_u, i32_rem_s, i32_rem_u, i32_trunc_f32_s, i32_trunc_f32_u, i32_trunc_f64_s,
2828
i32_trunc_f64_u, i64_div_s, i64_div_u, i64_rem_s, i64_rem_u, i64_trunc_f32_s, i64_trunc_f32_u,
29-
i64_trunc_f64_s, i64_trunc_f64_u,
29+
i64_trunc_f64_s, i64_trunc_f64_u, wasm_max_f32, wasm_max_f64, wasm_min_f32, wasm_min_f64,
30+
wasm_nearest_f32, wasm_nearest_f64,
3031
};
3132

3233
/// Wasm execution errors — no panics, no unwinding.

0 commit comments

Comments
 (0)