Skip to content

Commit 614b889

Browse files
Enable python extensions when building out of tree (#363)
1 parent 30df2ec commit 614b889

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

CMakeLists.txt

+2-4
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,10 @@ if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
5353
include(AddMLIR)
5454
include(HandleLLVMOptions)
5555

56-
include(AddMLIRPython)
57-
declare_mlir_python_sources(MLIRPythonSources)
58-
5956
# Don't try to compile the python extensions at the moment. We need
6057
# to import lots of dependencies from AddMLIRPython to make this work.
61-
set(MLIR_ENABLE_BINDINGS_PYTHON 0)
58+
set(MLIR_ENABLE_BINDINGS_PYTHON 1)
59+
option(TORCH_MLIR_ENABLE_JIT_IR_IMPORTER "Enables JIT IR Importer" ON)
6260

6361
set(TORCH-MLIR_BUILT_STANDALONE 1)
6462
set(BACKEND_PACKAGE_STRING "LLVM ${LLVM_PACKAGE_VERSION}")

lib/CAPI/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ add_mlir_public_c_api_library(TorchMLIRCAPI
66
ADDITIONAL_HEADER_DIRS
77
${PROJECT_SOURCE_DIR}/include/torch-mlir-c/
88

9+
ENABLE_AGGREGATION
910
LINK_COMPONENTS
1011
Core
1112

python/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ declare_mlir_python_extension(TorchMLIRPythonExtensions.Main
4141
MODULE_NAME _torchMlir
4242
ADD_TO_PARENT TorchMLIRPythonExtensions
4343
SOURCES
44-
${CMAKE_CURRENT_SOURCE_DIR}/TorchMLIRModule.cpp
44+
TorchMLIRModule.cpp
4545
EMBED_CAPI_LINK_LIBS
4646
TorchMLIRCAPI
4747
PRIVATE_LINK_LIBS

0 commit comments

Comments
 (0)