Skip to content

Commit

Permalink
Remove moduleOp - not needed anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
Abhishek-Varma committed Jan 29, 2025
1 parent 8cabb4c commit 26ef401
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ static FailureOr<int64_t> fetchTotalUniqueL2L1(
/// will be split. This would form the split factor which would be capped by the
/// total no. of columns OR std::gcd of source/target size.
LogicalResult collectSplittingDims(
ModuleOp &moduleOp, const SmallVector<DmaObjFifoPairT> &dmaObjFifoPairs,
const SmallVector<DmaObjFifoPairT> &dmaObjFifoPairs,
DenseMap<AMDAIE::DmaCpyNdOp, DmaSplitInfo> &dmaSplitInfoMap,
DenseMap<AMDAIE::LogicalObjectFifoFromMemrefOp, ObjFifoSplitInfo>
&objFifoSplitInfoMap,
Expand Down Expand Up @@ -411,7 +411,7 @@ void AMDAIESplitLogicalObjFifosPass::runOnOperation() {
DenseMap<AMDAIE::DmaCpyNdOp, DmaSplitInfo> dmaSplitInfoMap;
DenseMap<AMDAIE::LogicalObjectFifoFromMemrefOp, ObjFifoSplitInfo>
objFifoSplitInfoMap;
if (failed(collectSplittingDims(moduleOp, dmaObjFifoPairs, dmaSplitInfoMap,
if (failed(collectSplittingDims(dmaObjFifoPairs, dmaSplitInfoMap,
objFifoSplitInfoMap, numColumns))) {
return signalPassFailure();
}
Expand Down

0 comments on commit 26ef401

Please sign in to comment.