We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0adbde6 commit c4d3807Copy full SHA for c4d3807
mlir/lib/Conversion/SCFToSPIRV/SCFToSPIRVPass.cpp
@@ -58,3 +58,7 @@ void SCFToSPIRVPass::runOnOperation() {
58
if (failed(applyPartialConversion(op, *target, std::move(patterns))))
59
return signalPassFailure();
60
}
61
+
62
+std::unique_ptr<OperationPass<>> mlir::createConvertSCFToSPIRVPass() {
63
+ return std::make_unique<SCFToSPIRVPass>();
64
+}
0 commit comments