Files
UnrealEngine/Engine/Plugins/Experimental/NNERuntimeIREE/Config/IREE_Linux_To_Linux.json
2025-05-18 13:04:45 +08:00

15 lines
812 B
JSON

{
"ImporterCommand": [ "${PLUGIN_DIR}/Binaries/ThirdParty/IREE/Linux/torch-mlir-import-onnx" ],
"ImporterArguments": "-o ${OUTPUT_PATH} --opset-version 21 ${INPUT_PATH}",
"CompilerCommand": [ "${PLUGIN_DIR}/Binaries/ThirdParty/IREE/Linux/iree-compile" ],
"LinkerCommand": [ "${PLUGIN_DIR}/Binaries/ThirdParty/IREE/Linux/ld.lld" ],
"SharedLibExt": ".so",
"Targets": [
{
"Architecture": "",
"CompilerArguments": "--iree-llvmcpu-target-triple=x86_64-unknown-linux-gnu --iree-input-type=auto --iree-hal-target-backends=llvm-cpu --iree-llvmcpu-link-embedded=false --iree-llvmcpu-link-static --output-format=vm-bytecode --iree-llvmcpu-static-library-output-path=${OBJECT_PATH} -o ${VMFB_PATH} ${INPUT_PATH}",
"LinkerArguments": "-shared --export-dynamic -o ${SHARED_LIB_PATH} ${OBJECT_PATH}"
}
]
}