* Release notes: https://github.com/apache/tvm/releases/tag/v0.16.0 - Skipped 0.14.0: * Release notes: https://github.com/apache/tvm/releases/tag/v0.14.0 - Refresh patch: * tvm-disable-vulkan-test-check.patch OBS-URL: https://build.opensuse.org/package/show/science:machinelearning/tvm?expand=0&rev=68
18 lines
445 B
Diff
18 lines
445 B
Diff
--- tvm-0.11.0/python/tvm/testing/utils.py.orig 2023-03-07 09:40:58.121602504 +0100
|
|
+++ tvm-0.11.0/python/tvm/testing/utils.py 2023-03-07 09:45:47.652819665 +0100
|
|
@@ -823,13 +823,7 @@ class Feature:
|
|
|
|
|
|
def _any_gpu_exists():
|
|
- return (
|
|
- tvm.cuda().exist
|
|
- or tvm.rocm().exist
|
|
- or tvm.opencl().exist
|
|
- or tvm.metal().exist
|
|
- or tvm.vulkan().exist
|
|
- )
|
|
+ return (False)
|
|
|
|
|
|
def _multi_gpu_exists():
|