mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-10 04:35:03 -05:00
15 lines
435 B
TableGen
15 lines
435 B
TableGen
#ifndef CONCRETELANG_FHELINALG_TILING_PASS
|
|
#define CONCRETELANG_FHELINALG_TILING_PASS
|
|
|
|
include "mlir/Pass/PassBase.td"
|
|
|
|
def FinalizingBufferize : FunctionPass<"concretelang-bufferize"> {
|
|
let summary =
|
|
"Marks FHELinalg operations for tiling using a vector of tile sizes";
|
|
let constructor = "mlir::concretelang::createBufferizePass()";
|
|
let options = [];
|
|
let dependentDialects = [ "mlir::memref::MemRefDialect" ];
|
|
}
|
|
|
|
#endif
|