Build TVM with NNPACK support

Set set(USE_NNPACK ON) in config.cmake.
Set NNPACK_PATH to the $(YOUR_NNPACK_INSTALL_PATH)

The above two steps, i finished the first,but i don’t know where to set the NNPACK_PATH in second step.Can you give me some instruction?

You can set NNPACK path with cmake -D, for example:

cmake -DNNPACK_PATH="path/to/NNPACK" ..
1 Like