Skip to content

Commit

Permalink
clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
fifield committed Jul 24, 2024
1 parent 8ad83da commit 618c999
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/Dialect/AIEVec/Transforms/VectorToVectorConversions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -412,8 +412,8 @@ struct FlattenMultDimTransferReadPattern

auto inBoundsArrayAttrOpt = adaptor.getInBounds();
if (inBoundsArrayAttrOpt) {
SmallVector<bool> inBounds = llvm::to_vector(
inBoundsArrayAttrOpt.getAsValueRange<BoolAttr>());
SmallVector<bool> inBounds =
llvm::to_vector(inBoundsArrayAttrOpt.getAsValueRange<BoolAttr>());
SmallVector<bool> newInBounds({false});
newInBounds[0] = std::all_of(inBounds.begin(), inBounds.end(),
[](bool v) { return v; });
Expand Down Expand Up @@ -472,8 +472,8 @@ struct FlattenMultDimTransferWritePattern

auto inBoundsArrayAttrOpt = adaptor.getInBounds();
if (inBoundsArrayAttrOpt) {
SmallVector<bool> inBounds = llvm::to_vector(
inBoundsArrayAttrOpt.getAsValueRange<BoolAttr>());
SmallVector<bool> inBounds =
llvm::to_vector(inBoundsArrayAttrOpt.getAsValueRange<BoolAttr>());
SmallVector<bool> newInBounds({false});
newInBounds[0] = std::all_of(inBounds.begin(), inBounds.end(),
[](bool v) { return v; });
Expand Down

0 comments on commit 618c999

Please sign in to comment.