- Add Arm Compute Library support - Update to 0.7.0: https://github.com/apache/incubator-tvm/blob/main/NEWS.md v0.7 brings many major features. The community works together to refactor the internal code base to bring an unified IR code structure with a unified IRModule, type system and pass infrastructure. We have also bought many exciting new features, some highlights include: * Initial automatic scheduling support * Initial command line driver interface * WebGPU and webassembly support * Better first class rust support in the codebase * Intial Hexagon support * Bring your own codegen (BYOC) support The community also continues to bring high quality improvements to the existing modules including, but not limited to: better frontend coverage, performance, quantization, uTVM and dynamic shape support. - Rebase pacth: * tvm-fix-openblas.patch - Drop patch: * lib-finder-python-cmake.patch OBS-URL: https://build.opensuse.org/request/show/865045 OBS-URL: https://build.opensuse.org/package/show/science:machinelearning/tvm?expand=0&rev=24
12 lines
344 B
Diff
12 lines
344 B
Diff
--- incubator-tvm-0.7.0.orig/src/runtime/contrib/cblas/cblas.cc 2020-10-28 09:28:10.232853022 +0100
|
|
+++ incubator-tvm-0.7.0/src/runtime/contrib/cblas/cblas.cc 2020-10-28 09:28:24.908978003 +0100
|
|
@@ -25,7 +25,7 @@
|
|
#include <tvm/runtime/registry.h>
|
|
|
|
extern "C" {
|
|
-#include <cblas.h>
|
|
+#include <openblas/cblas.h>
|
|
}
|
|
|
|
#include "gemm_common.h"
|