Skip to content

Commit 1afc26d

Browse files
authored
Move math runtime into numba_dpcomp dir (#163)
1 parent 439a047 commit 1afc26d

File tree

6 files changed

+3
-2
lines changed

6 files changed

+3
-2
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,12 @@ 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" ON)
54+
option(NUMBA_ENABLE "Enable numba-based python frontend" ON)
5555

5656
message(STATUS "DPNP_ENABLE ${DPNP_ENABLE}")
5757
message(STATUS "GPU_ENABLE ${GPU_ENABLE}")
5858
message(STATUS "BUILD_TESTING ${BUILD_TESTING}")
59+
message(STATUS "NUMBA_ENABLE ${NUMBA_ENABLE}")
5960

6061
include(CTest)
6162

@@ -74,7 +75,6 @@ endif()
7475
add_subdirectory(mlir)
7576

7677
if(NUMBA_ENABLE)
77-
add_subdirectory(dpcomp_math_runtime)
7878
add_subdirectory(dpcomp_runtime)
7979
add_subdirectory(tools)
8080
add_subdirectory(numba_dpcomp)

numba_dpcomp/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@
1313
# limitations under the License.
1414

1515
add_subdirectory(numba_dpcomp/python_runtime)
16+
add_subdirectory(numba_dpcomp/math_runtime)
1617
add_subdirectory(numba_dpcomp/mlir_compiler)

0 commit comments

Comments
 (0)