Skip to content

Commit 2c2855d

Browse files
authored
Cleanup (#165)
1 parent f98b757 commit 2c2855d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ endif()
5151

5252
option(DPNP_ENABLE "Use DPNP for some math functions" OFF)
5353
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)
5656

5757
message(STATUS "DPNP_ENABLE ${DPNP_ENABLE}")
5858
message(STATUS "GPU_ENABLE ${GPU_ENABLE}")

numba_dpcomp/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@
6363
"-DCMAKE_INSTALL_PREFIX=" + CMAKE_INSTALL_PREFIX,
6464
"-DPython3_NumPy_INCLUDE_DIRS=" + NUMPY_INCLUDE_DIR,
6565
"-DPython3_FIND_STRATEGY=LOCATION",
66+
"-DNUMBA_ENABLE=ON",
67+
"-DTBB_ENABLE=ON",
6668
]
6769

6870
# DPNP
@@ -74,8 +76,6 @@
7476
'-DDPNP_LIBRARY_DIR=' + DPNP_LIBRARY_DIR,
7577
'-DDPNP_INCLUDE_DIR=' + DPNP_INCLUDE_DIR,
7678
'-DDPNP_ENABLE=ON',
77-
'-DNUMBA_ENABLE=ON',
78-
'-DTBB_ENABLE=ON'
7979
]
8080
print("Found DPNP at", DPNP_LIBRARY_DIR)
8181
except ImportError:

0 commit comments

Comments
 (0)