File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -51,8 +51,8 @@ endif()
51
51
52
52
option (DPNP_ENABLE "Use DPNP for some math functions" OFF )
53
53
option (GPU_ENABLE "Enable GPU codegen" OFF )
54
- option (NUMBA_ENABLE "Enable numba-based python frontend" ON )
55
- option (TBB_ENABLE "Enable TBB" ON )
54
+ option (NUMBA_ENABLE "Enable numba-based python frontend" OFF )
55
+ option (TBB_ENABLE "Enable TBB" OFF )
56
56
57
57
message (STATUS "DPNP_ENABLE ${DPNP_ENABLE} " )
58
58
message (STATUS "GPU_ENABLE ${GPU_ENABLE} " )
Original file line number Diff line number Diff line change 63
63
"-DCMAKE_INSTALL_PREFIX=" + CMAKE_INSTALL_PREFIX ,
64
64
"-DPython3_NumPy_INCLUDE_DIRS=" + NUMPY_INCLUDE_DIR ,
65
65
"-DPython3_FIND_STRATEGY=LOCATION" ,
66
+ "-DNUMBA_ENABLE=ON" ,
67
+ "-DTBB_ENABLE=ON" ,
66
68
]
67
69
68
70
# DPNP
74
76
'-DDPNP_LIBRARY_DIR=' + DPNP_LIBRARY_DIR ,
75
77
'-DDPNP_INCLUDE_DIR=' + DPNP_INCLUDE_DIR ,
76
78
'-DDPNP_ENABLE=ON' ,
77
- '-DNUMBA_ENABLE=ON' ,
78
- '-DTBB_ENABLE=ON'
79
79
]
80
80
print ("Found DPNP at" , DPNP_LIBRARY_DIR )
81
81
except ImportError :
You can’t perform that action at this time.
0 commit comments