File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
mlir/lib/Dialect/Linalg/Transforms Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ struct PackedOperandsDim {
202
202
203
203
// / Helper struct to encode packing along all dimensions of a LinalgOp.
204
204
struct PackedOperandsDimList {
205
- void push_back (PackedOperandsDim &&packedOperandsDims) {
205
+ void pushBack (PackedOperandsDim &&packedOperandsDims) {
206
206
spec.emplace_back (packedOperandsDims);
207
207
}
208
208
// / Return all the dims that have been packed for operand @ `operandPos`.
@@ -539,7 +539,7 @@ FailureOr<PackResult> linalg::pack(RewriterBase &rewriter,
539
539
if (failed (maybePackedDimForEachOperand))
540
540
return failure ();
541
541
packedOperandsDims.packedDimForEachOperand = *maybePackedDimForEachOperand;
542
- listOfPackedOperandsDim.push_back (std::move (packedOperandsDims));
542
+ listOfPackedOperandsDim.pushBack (std::move (packedOperandsDims));
543
543
544
544
LLVM_DEBUG (
545
545
DBGS () << " ++++ After pack size #" << i << " : " << packedSizes[i]
You can’t perform that action at this time.
0 commit comments