summarylogtreecommitdiffstats
path: root/enable_features.diff
blob: 38d7d7f5823029c64f13c8e7d67a9c2a50a906f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
--- tvm/src/tvm/cmake/config.cmake	2021-11-12 22:16:08.000000000 +0100
+++ tvm/src/build/config.cmake	2023-04-04 15:30:52.253126256 +0200
@@ -68,7 +68,7 @@
 # - ON: enable OpenCL with cmake's auto search
 # - OFF: disable OpenCL
 # - /path/to/opencl-sdk: use specific path to opencl-sdk
-set(USE_OPENCL OFF)
+set(USE_OPENCL ON)
 
 # Whether enable Metal runtime
 set(USE_METAL OFF)
@@ -106,7 +106,7 @@
 set(USE_GRAPH_EXECUTOR_CUDA_GRAPH OFF)
 
 # Whether enable pipeline executor.
-set(USE_PIPELINE_EXECUTOR OFF)
+set(USE_PIPELINE_EXECUTOR ON)
 
 # Whether to enable the profiler for the graph executor and vm
 set(USE_PROFILER ON)
@@ -122,7 +122,7 @@
 # - OFF: disable llvm, note this will disable CPU codegen
 #        which is needed for most cases
 # - /path/to/llvm-config: enable specific LLVM when multiple llvm-dev is available.
-set(USE_LLVM OFF)
+set(USE_LLVM ON)
 
 #---------------------------------------------
 # Contrib libraries
@@ -137,7 +137,7 @@
 set(USE_BYODT_POSIT OFF)
 
 # Whether use BLAS, choices: openblas, atlas, apple
-set(USE_BLAS none)
+set(USE_BLAS openblas)
 
 # Whether to use MKL
 # Possible values:
@@ -154,7 +154,7 @@
 
 # Whether use OpenMP thread pool, choices: gnu, intel
 # Note: "gnu" uses gomp library, "intel" uses iomp5 library
-set(USE_OPENMP none)
+set(USE_OPENMP gnu)
 
 # Whether use contrib.random in runtime
 set(USE_RANDOM ON)
@@ -283,7 +283,7 @@
 set(USE_ANTLR OFF)
 
 # Whether use Relay debug mode
-set(USE_RELAY_DEBUG OFF)
+set(USE_RELAY_DEBUG ON)
 
 # Whether to build fast VTA simulator driver
 set(USE_VTA_FSIM OFF)
@@ -327,7 +327,7 @@
 set(USE_HEXAGON_QHL OFF)
 
 # Whether to use ONNX codegen
-set(USE_TARGET_ONNX OFF)
+set(USE_TARGET_ONNX ON)
 
 # Whether enable BNNS runtime
 set(USE_BNNS OFF)