[Apache TVM Discuss] [Questions] How to get an example to use resnet50 with wasm?

2022-01-05 Thread Nigel Amers via Apache TVM Discuss
How to get an example to use resnet50 with wasm? --- [Visit Topic](https://discuss.tvm.apache.org/t/how-to-get-an-example-to-use-resnet50-with-wasm/11856/1) 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] Any plans/schedules for TVMConf 2021 video uploading?

2022-01-05 Thread Johnson Lu via Apache TVM Discuss
https://www.youtube.com/playlist?list=PL_4zDggB-DBpynCEnC9hV-1euZrP3xDRK --- [Visit Topic](https://discuss.tvm.apache.org/t/any-plans-schedules-for-tvmconf-2021-video-uploading/11849/2) to respond. You are receiving this because you enabled mailing list mode. To unsubscribe from these em

[Apache TVM Discuss] [Questions] Run test_cutlass.py error:unexpected keyword argument 'capture_output'

2022-01-05 Thread masahi via Apache TVM Discuss
Now conv2d is fully supported, including residual block fusion. --- [Visit Topic](https://discuss.tvm.apache.org/t/run-test-cutlass-py-error-unexpected-keyword-argument-capture-output/11400/6) to respond. You are receiving this because you enabled mailing list mode. To unsubscribe from t

[Apache TVM Discuss] [Questions] Quantized Transformer

2022-01-05 Thread masahi via Apache TVM Discuss
First of all, Ansor is no good for int8, since it cannot use fast int8 hardware (VNNI, tensorcore) at all. * How are you quantizing the model? * What backends are you interested in? CPU or GPU? --- [Visit Topic](https://discuss.tvm.apache.org/t/quantized-transformer/11850/2) to respond.

[Apache TVM Discuss] [Questions] Quantized Transformer

2022-01-05 Thread Jason Huh via Apache TVM Discuss
Hi, I'm trying to use TVM's stack to deploy INT8-quantized Transformer-based models. I tried Relay + Ansor(AutoScheduler) for a Transformer (# layers = 1) and the results weren't so neat. |Time (ms)|Original|Quantized| | --- | --- | --- | |PyTorch|20|--| |TVM (Relay, optimized)|130|120|

[Apache TVM Discuss] [Questions] Any plans/schedules for TVMConf 2021 video uploading?

2022-01-05 Thread Jason Huh via Apache TVM Discuss
Hi, everyone. I'm waiting for the videos from TVMConf '21. I see '20's was uploaded only a few days after the conference. Could you share any information regarding the possible dates for '21's? I'd be thrilled to watch them. Thanks, Jason --- [Visit Topic](https://discuss.tvm.apache.org/

[Apache TVM Discuss] [Questions] How to generate a region from for loop iter var and predicate?

2022-01-05 Thread Junru Shao via Apache TVM Discuss
CC @Hzfengsy if you want to take a look :-) --- [Visit Topic](https://discuss.tvm.apache.org/t/how-to-generate-a-region-from-for-loop-iter-var-and-predicate/11838/3) to respond. You are receiving this because you enabled mailing list mode. To unsubscribe from these emails, [click here](

[Apache TVM Discuss] [Questions] How to generate a region from for loop iter var and predicate?

2022-01-05 Thread wrongtest via Apache TVM Discuss
```python def estimate_region_lower_bound(region, var_dom, predicate): """Analyze the region with affine map, given the domain of variables and their predicate Parameters -- region : List[Range] The region to be analyzed. var_dom : Dict[Var, Range] T