If I understand correctly, if I compile and run a static case using the same approach as shown in https://github.com/apache/tvm/tree/main/apps/bundle_deploy, the case won’t run with multi-threading parallelism support even though its OPs are scheduled in parallel in TVM.
The reason I believe is that the TVMBackendParallelLaunch() function doesn’t include a thread pool support:
If I would like to make multi-threading available, is it correct to make reference to how TVMBackendParallelLaunch() is supported in this file https://github.com/apache/tvm/blob/36b9535ff364c484d04b384555106731049f44cd/src/runtime/thread_pool.cc#L501-519 ?
Any help is well appreciated