Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update llvm #1636

Merged
merged 4 commits into from
Jul 26, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.value().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.value().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
4 changes: 2 additions & 2 deletions utils/clone-llvm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
##===----------------------------------------------------------------------===##

# The LLVM commit to use.
LLVM_PROJECT_COMMIT=ae570d82e8c021f45209830db8c9c7bb79bed394
DATETIME=2024070115
LLVM_PROJECT_COMMIT=db1d88137212fec6c884dcb0f76a8dfab4fcab98
DATETIME=2024072223
WHEEL_VERSION=19.0.0.$DATETIME+${LLVM_PROJECT_COMMIT:0:8}

############################################################################################
Expand Down
Loading