Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions include/PTO/Transforms/Passes.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,7 @@ std::unique_ptr<Pass> createConvertToPTOOpPass();
std::unique_ptr<Pass> createInferPTOMemScopePass();

std::unique_ptr<Pass>
createPlanMemoryPass(const PlanMemoryOptions &options = {});
std::unique_ptr<Pass>
createPlanMemoryModernPass(const PlanMemoryOptions &options);
createPlanMemoryModernPass(const PlanMemoryOptions &options = {});
std::unique_ptr<Pass> createPTORemoveRedundantBarrierPass();
std::unique_ptr<Pass> createPTOValidateIntToPtrUsesPass();
std::unique_ptr<Pass> createPTORematerializeFixpipeVectorQuantPass();
Expand Down
2 changes: 1 addition & 1 deletion include/PTO/Transforms/Passes.td
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def PTOMaterializeImplicitTmp

def PlanMemory : Pass<"pto-plan-memory", "ModuleOp"> {
let summary = "Plan memory for PTO Ops";
let constructor = "mlir::pto::createPlanMemoryPass()";
let constructor = "mlir::pto::createPlanMemoryModernPass()";

let options = [
Option<"memMode", "mem-mode", "std::string", "\"local\"",
Expand Down
1 change: 0 additions & 1 deletion lib/PTO/Transforms/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ add_mlir_dialect_library(PTOTransforms
Utils.cpp
OptMemPlanForPipeline.cpp
InferPTOMemScope.cpp
PTOPlanMemory.cpp
PTOPlanMemoryModern.cpp
PTORemoveRedundantBarrier.cpp
InferPTOLayout.cpp
Expand Down
Loading
Loading