File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
lib/Dialect/AIEVec/Transforms Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -412,8 +412,8 @@ struct FlattenMultDimTransferReadPattern
412412
413413 auto inBoundsArrayAttrOpt = adaptor.getInBounds ();
414414 if (inBoundsArrayAttrOpt) {
415- SmallVector<bool > inBounds = llvm::to_vector (
416- inBoundsArrayAttrOpt.getAsValueRange <BoolAttr>());
415+ SmallVector<bool > inBounds =
416+ llvm::to_vector ( inBoundsArrayAttrOpt.getAsValueRange <BoolAttr>());
417417 SmallVector<bool > newInBounds ({false });
418418 newInBounds[0 ] = std::all_of (inBounds.begin (), inBounds.end (),
419419 [](bool v) { return v; });
@@ -472,8 +472,8 @@ struct FlattenMultDimTransferWritePattern
472472
473473 auto inBoundsArrayAttrOpt = adaptor.getInBounds ();
474474 if (inBoundsArrayAttrOpt) {
475- SmallVector<bool > inBounds = llvm::to_vector (
476- inBoundsArrayAttrOpt.getAsValueRange <BoolAttr>());
475+ SmallVector<bool > inBounds =
476+ llvm::to_vector ( inBoundsArrayAttrOpt.getAsValueRange <BoolAttr>());
477477 SmallVector<bool > newInBounds ({false });
478478 newInBounds[0 ] = std::all_of (inBounds.begin (), inBounds.end (),
479479 [](bool v) { return v; });
You can’t perform that action at this time.
0 commit comments