commit | 9d8a1d927b5223640255a3ef8633cc4fb4a416d9 | [log] [tgz] |
---|---|---|
author | Cindy Liu <hcindyl@google.com> | Thu Aug 03 20:00:17 2023 -0700 |
committer | Cindy Liu <hcindyl@google.com> | Thu Aug 03 20:11:26 2023 -0700 |
tree | c21090de1fbc980d620b0dbcd66f71085db72249 | |
parent | b315dd242728ae4a6bf1709514b877d90ab74351 [diff] |
Update branch_mul example Check in the dispatch object file instead of render from the mlir -- no dependency to `iree-compile` The runtime library is relatively stable at this point (no API change in > 16 months), so it should be okay to keep a copy of the generated object file like this. Bug: 294402411 Change-Id: I8f384c1789a5355ba3d24cead6c9c15638b555f1
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.