This is an automated email from the ASF dual-hosted git repository.
mousius pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git
The following commit(s) were added to refs/heads/main by this push:
new f3661f5 [CMSIS-NN] Fixed the network hash to avoid type inference
failure (#9887)
f3661f5 is described below
commit f3661f552be5772efdb451a66df23f150ab93d8a
Author: Ashutosh Parkhi <[email protected]>
AuthorDate: Mon Jan 10 19:51:21 2022 +0000
[CMSIS-NN] Fixed the network hash to avoid type inference failure (#9887)
Co-authored-by: Chris Sidebottom <[email protected]>
---
tests/python/contrib/test_cmsisnn/test_networks.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/python/contrib/test_cmsisnn/test_networks.py
b/tests/python/contrib/test_cmsisnn/test_networks.py
index a099e81..06347a0 100644
--- a/tests/python/contrib/test_cmsisnn/test_networks.py
+++ b/tests/python/contrib/test_cmsisnn/test_networks.py
@@ -79,7 +79,7 @@ def convert_to_relay(
@tvm.testing.requires_cmsisnn
def test_cnn_small():
# download the model
- base_url =
"https://github.com/ARM-software/ML-zoo/raw/master/models/keyword_spotting/cnn_small/tflite_int8"
+ base_url =
"https://github.com/ARM-software/ML-zoo/raw/ee35139af86bdace5e502b09fe8b9da9cb1f06bb/models/keyword_spotting/cnn_small/tflite_int8"
file_to_download = "cnn_s_quantized.tflite"
model_file = download_testdata("{}/{}".format(base_url, file_to_download),
file_to_download)