Skip to content

Commit

Permalink
Revert "Messages"
Browse files Browse the repository at this point in the history
This reverts commit 04dcd7f.
  • Loading branch information
pvasireddy-amd committed Sep 19, 2024
1 parent 04dcd7f commit e155c24
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion include/aie/Dialect/AIE/Transforms/AIEPasses.td
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def AIEAssignBufferAddresses : Pass<"aie-assign-buffer-addresses", "DeviceOp"> {

let options = [
Option<"clAllocScheme", "alloc-scheme", "std::string", /*default=*/"",
"Select allocation scheme:basic-sequential or bank-aware. Default is bank-aware, falling back to basic-sequential if it fails">,
"Choose allocation scheme; possibilities: basic-sequential, bank-aware. By default, bank-aware is selected and if it fails, will fall back to basic-sequential scheme.">,
];
}

Expand Down
1 change: 0 additions & 1 deletion lib/Dialect/AIE/Transforms/AIEAssignBuffers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,6 @@ struct AIEAssignBufferAddressesPass
}
} else {
for (auto tile : device.getOps<TileOp>()) {
tile.emitWarning("Memory allocation scheme is either missing or unrecognized. By default, bank-aware is selected.");
if (auto res = simpleBankAwareAllocation(tile); res.failed()) {
if (auto res2 = basicAllocation(tile); res2.failed())
return signalPassFailure();
Expand Down

0 comments on commit e155c24

Please sign in to comment.