You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixes FP rounding issue, adds tests and uses cargo hyperlight for building wasm_runtime (#166)
* Fixes FP rounding issue and adds tests
The issue was caused becuase cranelift compilation assume SSE2 even for the where as rust compiler doesn't include these instructions by default. This means when transitioning through wasmtime libcalls the parameters are lost since wasm is using SSE2 instructions and wasmtime isn't. The more advance SSE intructions require a seperate pr in HL core that is needed to enable them.
Signed-off-by: James Sturtevant <jsturtevant@gmail.com>
* Updates for cargo plugin
Signed-off-by: James Sturtevant <jsturtevant@gmail.com>
* Update to use the new hyperlight cargo lib
Signed-off-by: James Sturtevant <jsturtevant@gmail.com>
* Fix left over debugging artifacts
Signed-off-by: James Sturtevant <jsturtevant@gmail.com>
* Update to lastest Hyperlight
Signed-off-by: James Sturtevant <jsturtevant@gmail.com>
* Use latest hyperlight cargo
Signed-off-by: James Sturtevant <jsturtevant@gmail.com>
---------
Signed-off-by: James Sturtevant <jsturtevant@gmail.com>
0 commit comments