File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
mlir/lib/Dialect/AMDGPU/IR Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -716,9 +716,9 @@ struct PackScales final : OpRewritePattern<ScaledMFMAOp> {
716716 op, " no packing if # of scales less than four" );
717717 }
718718
719- // Find a linearized idx using the size and offsets of the extract op
720- SmallVector< int64_t > extractedPos ( llvm::to_vector_of<int64_t >(
721- llvm::reverse (extractOp.getStaticPosition ()))) ;
719+ // Find a linearized idx using the size and offsets of the extract op.
720+ auto extractedPos = llvm::to_vector_of<int64_t >(
721+ llvm::reverse (extractOp.getStaticPosition ()));
722722 ArrayRef<int64_t > scaleSrcShape = scaleSrcType.getShape ();
723723 int64_t scaleSrcRank = scaleSrcType.getRank ();
724724 SmallVector<int64_t > extractSizes (scaleSrcRank, 1 );
You can’t perform that action at this time.
0 commit comments