File tree 3 files changed +4
-5
lines changed
3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -53,12 +53,10 @@ if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
53
53
include (AddMLIR)
54
54
include (HandleLLVMOptions)
55
55
56
- include (AddMLIRPython)
57
- declare_mlir_python_sources(MLIRPythonSources)
58
-
59
56
# Don't try to compile the python extensions at the moment. We need
60
57
# 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 )
62
60
63
61
set (TORCH-MLIR_BUILT_STANDALONE 1)
64
62
set (BACKEND_PACKAGE_STRING "LLVM ${LLVM_PACKAGE_VERSION} " )
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ add_mlir_public_c_api_library(TorchMLIRCAPI
6
6
ADDITIONAL_HEADER_DIRS
7
7
${PROJECT_SOURCE_DIR} /include /torch-mlir-c/
8
8
9
+ ENABLE_AGGREGATION
9
10
LINK_COMPONENTS
10
11
Core
11
12
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ declare_mlir_python_extension(TorchMLIRPythonExtensions.Main
41
41
MODULE_NAME _torchMlir
42
42
ADD_TO_PARENT TorchMLIRPythonExtensions
43
43
SOURCES
44
- ${CMAKE_CURRENT_SOURCE_DIR} / TorchMLIRModule.cpp
44
+ TorchMLIRModule.cpp
45
45
EMBED_CAPI_LINK_LIBS
46
46
TorchMLIRCAPI
47
47
PRIVATE_LINK_LIBS
You can’t perform that action at this time.
0 commit comments