OpenCL example

The error is hinting at the issue “missing LLVMTranslationDialectInterface”, the mlir-opt tool is registering this translation interface but your python environment does not. This is done by calling mlir::registerGPUDialectTranslation.

1 Like