[Apache TVM Discuss] [Questions] Compile TF model for Hexagon

2021-03-10 Thread Pine Wu via Apache TVM Discuss
Thanks a lot! My platform is Linux, but I will try it on Android. --- [Visit Topic](https://discuss.tvm.apache.org/t/compile-tf-model-for-hexagon/9354/5) to respond. You are receiving this because you enabled mailing list mode. To unsubscribe from these emails, [click here](https://disc

[Apache TVM Discuss] [Questions] Compile TF model for Hexagon

2021-03-10 Thread Pine Wu via Apache TVM Discuss
Thanks, is there any plan on it? --- [Visit Topic](https://discuss.tvm.apache.org/t/compile-tf-model-for-hexagon/9354/4) to respond. You are receiving this because you enabled mailing list mode. To unsubscribe from these emails, [click here](https://discuss.tvm.apache.org/email/unsubscr

[Apache TVM Discuss] [Questions] Implementation of Hexagon Runtime for Target

2021-03-10 Thread nikzb via Apache TVM Discuss
Hi @kparzysz Thank you very much for your detailed reply! I am currently stuck somewhere trying to make this work. So for starters, I would like to verify further if the preceding steps I have taken so far are correct: My understanding from reading the READ.MD of Hexagon Backend Runtime, fo

[Apache TVM Discuss] [Questions] Interpretation of measurement records when Auto-scheduling

2021-03-10 Thread Lizhi via Apache TVM Discuss
In TVM Auto-scheduling, we can use `RecordToFile` to dump measurement records into a file xxx.json. The measurement records can be used to query the history best, resume the search, and do more analyses later. However, is there an interpretation of measurement records (e.g., the meaning of fi

[Apache TVM Discuss] [Questions] Compile TF model for Hexagon

2021-03-10 Thread Alexander Pivovarov via Apache TVM Discuss
You can convert TF to TFLite. TFLite Android runtime supports CPU/GPU/[NNAPI](https://www.tensorflow.org/lite/performance/nnapi)/[Hexagon](https://www.tensorflow.org/lite/performance/hexagon_delegate) [TFLite image classification example](https://github.com/tensorflow/examples/tree/master/lite

[Apache TVM Discuss] [Questions] Compile TF model for Hexagon

2021-03-10 Thread Krzysztof Parzyszek via Apache TVM Discuss
We don't really support relay compilation for Hexagon at the moment. --- [Visit Topic](https://discuss.tvm.apache.org/t/compile-tf-model-for-hexagon/9354/2) to respond. You are receiving this because you enabled mailing list mode. To unsubscribe from these emails, [click here](https://d

[Apache TVM Discuss] [Questions] Compile TF model for Hexagon

2021-03-10 Thread Pine Wu via Apache TVM Discuss
Can we use relay.build to compile TF model for Hexagon target now? I tried it, but got following error: `relay.build(mod, target=target, params=params)` raise RuntimeError("schedule_injective not registered for '%s'" % target) RuntimeError: schedule_injective not registered for 'hexag

[Apache TVM Discuss] [Questions] Can we generate assembly code that tensor dimensions are not fixed?

2021-03-10 Thread Johnson Lu via Apache TVM Discuss
Thanks for your suggestion, but I want to generate assembly code directly, then call it in C code, with original one, I can call assembly code by the function call like this: void assembly(int *C,int*A,int *B), and result are correct. I try to use te.ver() for the output geometry, like this.