[Apache TVM Discuss] [Questions] Add new backend to TVM

2021-11-28 Thread shiy10 via Apache TVM Discuss
Hello, We are also working on this. Perhaps we can discuss and learn this progress together? --- [Visit Topic](https://discuss.tvm.apache.org/t/add-new-backend-to-tvm/10373/8) to respond. You are receiving this because you enabled mailing list mode. To unsubscribe from these emails, [cli

[Apache TVM Discuss] [Questions] Add new backend to TVM

2021-11-26 Thread LK via Apache TVM Discuss
@chiuchiu , Hello, have you solved this problem? I want to get some suggestions --- [Visit Topic](https://discuss.tvm.apache.org/t/add-new-backend-to-tvm/10373/7) to respond. You are receiving this because you enabled mailing list mode. To unsubscribe from these emails, [click here](http

[Apache TVM Discuss] [Questions] Add new backend to TVM

2021-07-03 Thread randy via Apache TVM Discuss
thanks for your suggestion! I will read the tvm source code for more information. --- [Visit Topic](https://discuss.tvm.apache.org/t/add-new-backend-to-tvm/10373/5) to respond. You are receiving this because you enabled mailing list mode. To unsubscribe from these emails, [click here](h

[Apache TVM Discuss] [Questions] Add new backend to TVM

2021-07-02 Thread Cody H. Yu via Apache TVM Discuss
See this blog post about BYOC: https://tvm.apache.org/2020/07/15/how-to-bring-your-own-codegen-to-tvm For more examples, you can search "BYOC" in pull request titles of the upstream TVM. Usually the PR with title `[BYOC] XXX integration` is the one that introduces a new backend. --- [Vis

[Apache TVM Discuss] [Questions] Add new backend to TVM

2021-07-02 Thread randy via Apache TVM Discuss
Thanks for your reply so much! But I'm a little confused about your answer, sorry for my ignorance about DNN compiler. 1) > Firstly, you should implement your own quantization algorithm... what's mean about "quantization algorithm", and what for? 2) Is there any prject or example about addin

[Apache TVM Discuss] [Questions] Add new backend to TVM

2021-07-02 Thread Zhao Wu via Apache TVM Discuss
I assume you don't have your own NPU accelerate library, so you couldn't go TVM BYOC. Firstly, you should implement your own quantization algorithm based on your NPU (not all operation / data type could be provided on your NPU, like int64) Secondly, you should consider provide your own relay

[Apache TVM Discuss] [Questions] Add new backend to TVM

2021-07-01 Thread randy via Apache TVM Discuss
Hi all, we design an NPU for our SOC which is not like VTA, how should we do to run TVM on this AI core? this NPU has its own ISA, but we have not yet implemented any LLVM backend for it. anyone can give the suggestion(guide) that the main steps(tasks) to enable TVM running on the chip? Than