We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1287334 commit ee9070dCopy full SHA for ee9070d
python/CMakeLists.txt
@@ -97,7 +97,9 @@ add_mlir_python_common_capi_library(GcPythonCAPI
97
MLIRPythonExtension.RegisterEverything
98
MLIRPythonSources.Core
99
)
100
-target_link_libraries(GcPythonCAPI PUBLIC GcInterface)
+# todo: replace with a gpu rutnime library once we have an appropriate target
101
+get_property(gc_passes_libs GLOBAL PROPERTY GC_PASS_LIBS)
102
+target_link_libraries(GcPythonCAPI PUBLIC GcInterface ${gc_passes_libs})
103
104
################################################################################
105
# Instantiation of all Python modules
0 commit comments