Skip to content

Commit

Permalink
Bump IREE (nod-ai#587)
Browse files Browse the repository at this point in the history
Co-authored-by: Nirvedh Meshram <[email protected]>
  • Loading branch information
yzhang93 and nirvedhmeshram authored Jul 24, 2024
1 parent 172c891 commit 699f786
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
1 change: 0 additions & 1 deletion build_tools/ci/build_test_cpp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ cmake -S "$iree_dir" -B "$build_dir" \
-DCMAKE_INSTALL_PREFIX="$install_dir" \
-DCMAKE_INSTALL_LIBDIR=lib \
-DIREE_ENABLE_ASSERTIONS=ON \
-DIREE_DEFAULT_CPU_LLVM_TARGETS=host \
-DIREE_BUILD_SAMPLES=OFF \
-DIREE_BUILD_PYTHON_BINDINGS=OFF \
-DIREE_BUILD_BINDINGS_TFLITE=OFF \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -306,8 +306,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 @@ -364,8 +364,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
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,6 @@ iree_cc_test(
DEPS
gtest
iree::target::amd-aie::Transforms
iree::compiler::Dialect::HAL::IR
iree::compiler::Dialect::HAL::IR::HALDialect
)
2 changes: 1 addition & 1 deletion sync_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
### Update with: shark-workspace pin

PINNED_VERSIONS = {
"iree": "dcc8a0d1cce384baf10dd9dd5870f148e02db288",
"iree": "d07a309d010981d7ecef6bc8bfc573c559395989",
}

ORIGINS = {
Expand Down

0 comments on commit 699f786

Please sign in to comment.