commit | 07040011a77aae9d622257ea1fa19ee024741cca | [log] [tgz] |
---|---|---|
author | Lun Dong <lundong@google.com> | Tue Dec 13 21:01:00 2022 -0800 |
committer | Lun Dong <lundong@google.com> | Wed Feb 08 09:54:04 2023 -0800 |
tree | 85a719d1b533774f0e42159481f4a998b1d98e68 | |
parent | 5ee99f6a1b4b3e19dbd550734e3cebed1d905a07 [diff] |
Do not print memory stats for wmmu simulations We do not print memory statistics for WMMU simulations due to b/258304148. Also add some flags to further shrink the library/binary. Change-Id: I2c1e744e22f49cefec0d63d631b331006b1347c7
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).
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>/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 at the top level directory
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
You can run QEMU or RENODE emulation with the built executables. In Shodan repo, qemu_sim_springbok
for QEMU emulation, and sim_springbok
for Renode simulation. Out-of-repo emulation is possible but require more steps.
In Shodan, this project utilizes LLVM lit
and 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 --path <Filecheck dir> -a <output dir>
Filecheck in Debian testing is under /usr/lib/llvm-11/bin
Add -D RUNNER=qemu
to enable the qemu tests.