Jetson Nano target for CPU inference with llvm

What string should I use to set the target for tvm on Jetson Nano without using CUDA? I can’t find it anywhere. Thanks!

If compiling for the ARM CPU using LLVM, you can specify the target as –target=“llvm -device=arm_cpu -mcpu=cortex-a57 -mtriple=‘target triple’ where the ‘target triple’ can potentially be deteremined from the output of gcc -v (the output string of the Target: field).

1 Like

Thank you very much!