commit | d291b7811287c05bbff2f5b5d692b6c93117c7b1 | [log] [tgz] |
---|---|---|
author | Lun Dong <lundong@google.com> | Tue Jul 30 11:23:45 2024 -0700 |
committer | Lun Dong <lundong@google.com> | Tue Jul 30 11:25:10 2024 -0700 |
tree | 206b4d6287a3b532604b1f3a2223ebb494b82f38 | |
parent | a380007c30b8c35ebe1333bac3b6c414bf666366 [diff] |
sw/vec_iree: fix breakage due to IREE device API change Making the similar changes as in IREE upstream (https://github.com/iree-org/iree/commit/e9006927d10635ea475d34d545dba5175b2ac2b8) Change-Id: I2a5f69f2bc3c377907e1885d93444d5a59b19da0
This project contains ML model codegen and execution libraries/examples. The artifacts built from this project is targeted for RISC-V 32-bit baremetal machine (Springbok or Kelvin).
If you get this project from Project Shodan manifest, you are all set. If not, you need to have following projects as well to build the project successfully.
<dir>/sw/vec
<dir>/sw/kelvin
<dir>/toolchain/iree
<dir>/ml/ml-models-public
This project needs to be at <dir>/sw/vec_iree
If you are running from Project Shodan repo, you can build the artifacts with m iree
. If you download this project alone, you need to download/build IREE's host compiler, then go to the top level directory.
For Springbok
cmake -B <output dir> -G Ninja \ -DCMAKE_TOOLCHAIN_FILE="$(realpath sw/vec_iree/cmake/riscv_iree.cmake)" \ -DCMAKE_BUILD_TYPE=MinSizeRel \ -DIREE_HOST_BIN_DIR="$(IREE_COMPILER_DIR)/install/bin" \ -DRISCV_TOOLCHAIN_ROOT=$(TOOLCHAINRV32_PATH) \ <dir>/sw/vec_iree cmake --build <output dir> --target all
For Kelvin
cmake -B <output dir> -G Ninja \ -DCMAKE_TOOLCHAIN_FILE="$(realpath sw/vec_iree/cmake/riscv_iree_gcc.cmake)" \ -DCMAKE_BUILD_TYPE=MinSizeRel \ -DIREE_HOST_BIN_DIR="$(IREE_COMPILER_DIR)/install/bin" \ -DRISCV_TOOLCHAIN_ROOT=$(TOOLCHAINRV32_PATH) \ <dir>/sw/vec_iree cmake --build <output dir> --target all
You can run RENODE emulation with the built executables. In Shodan repo, sim_springbok
for Renode simulation on Springbok; sim_kelvin
for Renode simulation on Kelvin. Out-of-repo emulation is possible but requires more steps.
In Shodan, this project utilizes LLVM lit
and Python filecheck
to test the ML executable performance. The tests are defined in the *_test.run files under <output dir>
. To run the test, at the Shodan top level directory
lit -a <output dir>
Default is renode tests for Springbok. Add-D RUNNER=kelvin
to enable renode tests for Kelvin. Add-D RUNNER=kelvin_hw
to enable renode tests for Kelvin HW.