We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d10cb1d commit d16448aCopy full SHA for d16448a
mlir/lib/Dialect/Utils/ReshapeOpsUtils.cpp
@@ -579,11 +579,11 @@ SmallVector<Range> SliceFromCollapseHelper::getExtractSliceParams(
579
// have proven that these are not sliced. In this case we just take
580
// the full extent of each dimension in the reassociation list.
581
if (linearizedDimensions[it.index()]) {
582
- llvm::append_range(
583
- offsetsSizesAndStrides,
584
- llvm::map_range(it.value(), [&](int64_t idx) -> Range {
585
- return {zeroAttr, collapseShapeInputShape[idx], oneAttr};
586
- }));
+ llvm::append_range(offsetsSizesAndStrides,
+ llvm::map_range(it.value(), [&](int64_t idx) -> Range {
+ return {zeroAttr, collapseShapeInputShape[idx],
+ oneAttr};
+ }));
587
588
continue;
589
}
0 commit comments