TianlongLiang 59f9240dd8 Import Gitbook v1.0 (#1732) 3 ani în urmă
..
XNNPACK d41543f829 cmake: Use CMAKE_BINARY_DIR instead of ${CMAKE_CURRENT_SOURCE_DIR}/build (#1410) 3 ani în urmă
bwa d41543f829 cmake: Use CMAKE_BINARY_DIR instead of ${CMAKE_CURRENT_SOURCE_DIR}/build (#1410) 3 ani în urmă
cmake 7be0d385a6 Implement SIMD latest opcodes and update LLVM to 13.0 (#758) 4 ani în urmă
docker ee210d019f Dockerfile lint errors fix (#1493) 3 ani în urmă
meshoptimizer a9cb9206d6 Fix build issue of the meshoptimizer workload (#1452) 3 ani în urmă
tensorflow 7be0d385a6 Implement SIMD latest opcodes and update LLVM to 13.0 (#758) 4 ani în urmă
wasm-av1 7be0d385a6 Implement SIMD latest opcodes and update LLVM to 13.0 (#758) 4 ani în urmă
README.md 59f9240dd8 Import Gitbook v1.0 (#1732) 3 ani în urmă
preparation.sh 7be0d385a6 Implement SIMD latest opcodes and update LLVM to 13.0 (#758) 4 ani în urmă

README.md


description: "The related code/working directory of this example resides in directory {WAMR_DIR}/samples/workload"

All workloads have similar requirment of software dependencies, including emsdk, wabt and binaryen

There might be slight differences when using MacOS and other Linux distro than Ubuntu. This document only target Ubuntu 18.04 as example.

Installation instructions

use preparation.sh to install all dependencies before compiling any workload.

for details, the script includes below steps:

  • wabt. Install latest release to /opt/wabt

    $ wget https://github.com/WebAssembly/wabt/releases/download/${WABT_VER}/${WABT_FILE}
    $ tar zxf ${WABT_FILE} -C /opt
    $ ln -sf /opt/wabt-${WABT_VER} /opt/wabt
    
  • emsdk. Refer to the guide. Don't forget to activate emsdk and set up environment variables. Verify it with echo ${EMSDK}. Please be sure to install and activate the building of 2.0.26

    $ cd /opt
    $ git clone https://github.com/emscripten-core/emsdk.git
    $ cd emsdk
    $ git pull
    $ ./emsdk install 2.0.26
    $ ./emsdk activate 2.0.26
    $ echo "source /opt/emsdk/emsdk_env.sh" >> "${HOME}"/.bashrc
    
  • binaryen. Install latest release to /opt/binaryen

    $ wget https://github.com/WebAssembly/binaryen/releases/download/${BINARYEN_VER}/${BINARYEN_FILE}
    $ tar zxf ${BINARYEN_FILE} -C /opt
    $ ln -sf /opt/binaryen-${BINARYEN_VER} /opt/binaryen