In this doc, we explain the process of generating the IREE executables and inspecting the excutables with various tools.
IREE's main codegen tools are iree-opt (generate MLIR representations) and iree-translate (generate the IREE bytecode modules). IREE codegen flow is based on LLVM and MLIR, so it utilizes the typical LLVM flags to define the machine targets. For example, to generate the IREE bytecode module from a vector multiply MLIR:
${OUT}/host/iree_compiler/install/bin/iree-translate \ -iree-input-type=mhlo \ -iree-mlir-to-vm-bytecode-module \ -iree-hal-target-backends=dylib-llvm-aot \ -iree-llvm-target-triple=riscv32-pc-linux-elf \ -iree-llvm-target-cpu=generic-rv32 \ -iree-llvm-target-cpu-features="+m,+f" \ -iree-llvm-target-abi=ilp32 \ -iree-llvm-embedded-linker-path=${OUT}/host/iree_compiler/install/bin/lld \ ${ROOTDIR}/toolchain/iree/iree/samples/simple_embedding/simple_embedding_test.mlir \ -o /tmp/simple_mul-llvm_aot.vmfb
With the options of:
Some extra options:
/tmp/<module_name>_linked_<hal_target>-xxxxxx.so
. (the exact path is printed in the stdout).7z e -aoa -bb0 <vmfb> -y
iree-llvm-target-cpu-features
, the RVV VLS (vector length specific) code will be generated with the vector length specified by these two options.false
at the production executable can reduce the workload size.To render the bytecode flatbuffer in a text file, the iree-dump-module
tool can print out the content based on the descriptors in the schema, including the weights in the ML model.
${OUT}/host/iree-compiler/install/bin/iree-dump-module <vmfb file>
With the linker artifact enabled, The .so
file contends the dispatch functions of the workload, and the user can use the objdump in the RISC-V toolchain to retrieve the assembler content. For example, to render the executable (.text) segment
${CACHE}/toolchain_iree_rv32imf/bin/riscv32-unknown-elf-objdump -d <linker artifact>
Note:
Use iree-opt
to check the IR output
${OUT}/host/iree-compiler/install/bin/iree-opt \ -print-ir-after-all \ -iree-transformation-pipeline \ -iree-hal-target-backends=dylib-llvm-aot \ -iree-llvm-target-triple=riscv32-pc-linux-elf \ -iree-llvm-target-cpu=generic-rv32 \ -iree-llvm-target-cpu-features="+m,+f" \ -iree-llvm-target-abi=ilp32 \ <MLIR input>