tvm
tvm copied to clipboard
Open deep learning compiler stack for cpu, gpu and specialized accelerators
### Representation This commit extends `BufferLoad` and `BufferStore` to accept a predicate mask argument indicating which lanes in a vectorized buffer load/store should be read/written. As a simple example, we...
The ONNX pretrained ResNet model URLs have been updated in the autoTVM documentation. The previous URLs are no longer valid, and this change points to the correct URLs. Related PR:...
[Tracking Issue] Pre-quantized RNN Operators Support (e.g., UnidirectionalSequenceLSTM from TFlite)
### This issue is to track progress for Pre-quantized RNN Operators It'd be great to expand support for recurrent quantized operators, such as the UnidirectionalSequenceLSTM from TensorFlow. Are there any...
BYOC Compiler's Config node defines the target compiler's command line options, along with default values. This change extract the default values from config node, while constructing target options for codegen/target...
When I load a TFlite model with `relay.frontend.from_tflite` API, I get an AttributeError, as show below: ### Actual behavior `Traceback (most recent call last): File "tflite_main.py", line 59, in mod,...
1. Do not check region cover for cache_read and cache_inline when schedule enable_check set to false. We don't need region cover check in some cases. 2. Add some boundary check...
Bumps [requests](https://github.com/psf/requests) from 2.27.1 to 2.32.0. Release notes Sourced from requests's releases. v2.32.0 2.32.0 (2024-05-20) 🐍 PYCON US 2024 EDITION 🐍 Security Fixed an issue where setting verify=False on the...
This PR introduces vector codegen support for llvm_pure_intrin builtin.
Prior to this commit, use of the `disco.Session` API to broadcast or scatter an array required several steps from the caller. 1. Allocate memory on worker0 2. Transfer data from...
The `.rodata*` section of any program should not be writable. The missing `const` specifier in `static struct global_const_workspace {...}` leads to the following `readelf -e` output (shortened): ``` Section Headers:...