mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-09 20:25:34 -05:00
15 lines
471 B
TableGen
15 lines
471 B
TableGen
#ifndef CONCRETELANG_FHELINALG_TILING_PASS
|
|
#define CONCRETELANG_FHELINALG_TILING_PASS
|
|
|
|
include "mlir/Pass/PassBase.td"
|
|
|
|
def ForLoopToParallel : Pass<"for-loop-to-parallel", "mlir::ModuleOp"> {
|
|
let summary =
|
|
"Transform scf.for marked with the custom attribute parallel = true loop "
|
|
"to scf.parallel after the bufferization";
|
|
let constructor = "mlir::concretelang::createForLoopToParallel()";
|
|
let dependentDialects = ["mlir::scf::SCFDialect"];
|
|
}
|
|
|
|
#endif
|