* Release notes: https://github.com/apache/tvm/releases/tag/v0.21.0 - Skipped 0.20.0: * Release notes: https://github.com/apache/tvm/releases/tag/v0.20.0 - Backport upstream patch to fix build with llvm21: * 18204_backported.patch - Refresh patch: * lib-finder-python-cmake.patch - Remove unneeded patch: * tvm-fix-openblas.patch OBS-URL: https://build.opensuse.org/package/show/science:machinelearning/tvm?expand=0&rev=79
14 lines
638 B
Diff
14 lines
638 B
Diff
--- tvm-0.21.0/python/tvm/libinfo.py.orig 2025-07-07 16:48:21.000000000 +0200
|
|
+++ tvm-0.21.0/python/tvm/libinfo.py 2025-09-24 09:12:48.885453735 +0200
|
|
@@ -67,8 +67,8 @@ def get_dll_directories():
|
|
# Pip lib directory
|
|
dll_path.append(ffi_dir)
|
|
# Default cmake build directory
|
|
- dll_path.append(os.path.join(source_dir, "build"))
|
|
- dll_path.append(os.path.join(source_dir, "build", "Release"))
|
|
+ dll_path.append(os.path.join(source_dir, "build_cmake"))
|
|
+ dll_path.append(os.path.join(source_dir, "build_cmake", "Release"))
|
|
# Default make build directory
|
|
dll_path.append(os.path.join(source_dir, "lib"))
|
|
|