[Mlir-commits] [mlir] [NVGPU] Fix nvdsl examples (PR #156830)

Guray Ozen llvmlistbot at llvm.org
Mon Oct 27 10:47:26 PDT 2025


================
@@ -35,9 +35,11 @@ def compile(self, module: ir.Module):
 
     def jit(self, module: ir.Module) -> execution_engine.ExecutionEngine:
         """Wraps the module in a JIT execution engine."""
-        return execution_engine.ExecutionEngine(
+        ee = execution_engine.ExecutionEngine(
             module, opt_level=self.opt_level, shared_libs=self.shared_libs
         )
+        ee.initialize()
----------------
grypp wrote:

I am wondering why did you need this? 

https://github.com/llvm/llvm-project/pull/156830


More information about the Mlir-commits mailing list