This is an automated email from the ASF dual-hosted git repository.
leandron 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 41ae745023 [CI] Downgrade ci_cpu llvm version back to 11 (#14680)
41ae745023 is described below
commit 41ae745023d79960a46c8fc0d6bdb8e42f0a4e00
Author: neildhickey <[email protected]>
AuthorDate: Thu Apr 20 16:57:06 2023 +0100
[CI] Downgrade ci_cpu llvm version back to 11 (#14680)
[CI] Downgrade ci_cpu llvm version back to 11.
The upgrade to llvm 15 caused failures in topi tests
python/topi/python/test_topi_math.py::test_cast[float64-float16-llvm].
It seems to be a miscompilation due to opaque pointers.
Downgrading while working to fix the issue.
---
tests/scripts/task_config_build_cpu.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/scripts/task_config_build_cpu.sh
b/tests/scripts/task_config_build_cpu.sh
index 9a5228b536..b59fa08e7e 100755
--- a/tests/scripts/task_config_build_cpu.sh
+++ b/tests/scripts/task_config_build_cpu.sh
@@ -29,7 +29,7 @@ echo set\(USE_MICRO_STANDALONE_RUNTIME ON\) >> config.cmake
echo set\(USE_PROFILER ON\) >> config.cmake
echo set\(USE_DNNL ON\) >> config.cmake
echo set\(USE_ARM_COMPUTE_LIB ON\) >> config.cmake
-echo set\(USE_LLVM llvm-config\) >> config.cmake
+echo set\(USE_LLVM llvm-config-11\) >> config.cmake
echo set\(USE_NNPACK ON\) >> config.cmake
echo set\(NNPACK_PATH /NNPACK/build/\) >> config.cmake
echo set\(USE_ANTLR ON\) >> config.cmake