File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
mlir/lib/Dialect/Vector/Transforms Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -311,7 +311,7 @@ struct UnrollContractionPattern
311
311
applyPermutationMap (accPermutationMap, ArrayRef<int64_t >(offsets));
312
312
// If a version of the accumulator has already been computed, use it
313
313
// otherwise extract the first version from the original operand.
314
- auto accIt = accCache.find (accOffets);
314
+ auto * accIt = accCache.find (accOffets);
315
315
if (accIt != accCache.end ())
316
316
slicesOperands[2 ] = accIt->second ;
317
317
else
@@ -387,7 +387,7 @@ struct UnrollMultiReductionPattern
387
387
SmallVector<int64_t > accStrides (destOffset.size (), 1 );
388
388
// If a version of the accumulator has already been computed, use it
389
389
// otherwise extract the first version from the original operand.
390
- auto accIt = accCache.find (destOffset);
390
+ auto * accIt = accCache.find (destOffset);
391
391
if (accIt != accCache.end ())
392
392
acc = accIt->second ;
393
393
else
You can’t perform that action at this time.
0 commit comments