Stream: wamr

Topic: Introduction to WAMR running modes


view this post on Zulip Wang Xin (Feb 03 2023 at 11:41):

https://bytecodealliance.github.io/wamr.dev/blog/introduction-to-wamr-running-modes/

The options of running a Wasm module # Usually, a WebAssembly module can be executed in either interpreter, Just-In-Time (JIT), or Ahead-Of-Time (AOT) compilation mode, and the choice can be based on the preference for execute performance, resource, etc. WAMR supports all three modes and even more: AOT: WAMR AOT helps to achieve nearly native speed, very small footprint, and quick startup. Use the wamrc compiler to compile wasm file to the AOT file, and then run it on iwasm vmcore.

Last updated: Oct 23 2024 at 20:03 UTC