Skip to content

Commit 03a5918

Browse files
ScottToddeagarvey-amdmonorimet
authored
Bump IREE to iree-3.1.0rc20241220. (#721)
We're approaching our 3.1.0 release across all IREE packages, so bumping to build/test closer to HEAD. This builds on #713, bumping to the latest nightly. We'll also want to update again to pull in new changes to https://github.com/iree-org/iree/tree/main/runtime/src/iree/hal/drivers/hip, once the next nightly release is available. Commit range: iree-org/iree@iree-3.1.0rc20241204...iree-3.1.0rc20241220 --------- Co-authored-by: Ean Garvey <[email protected]> Co-authored-by: Ean Garvey <[email protected]>
1 parent 28800b7 commit 03a5918

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

.github/workflows/ci-libshortfin.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
repository: iree-org/iree
102102
path: ${{ env.IREE_REPO_DIR }}
103103
submodules: false
104-
ref: iree-3.1.0rc20241204
104+
ref: iree-3.1.0rc20241220
105105

106106
- name: Initalize IREE submodules
107107
working-directory: ${{ env.IREE_REPO_DIR }}

.github/workflows/ci_linux_x64_asan-libshortfin.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
repository: iree-org/iree
107107
path: ${{ env.IREE_SOURCE_DIR }}
108108
submodules: false
109-
ref: iree-3.1.0rc20241204
109+
ref: iree-3.1.0rc20241220
110110

111111
- name: Initalize IREE submodules
112112
working-directory: ${{ env.IREE_SOURCE_DIR }}

.github/workflows/ci_linux_x64_nogil-libshortfin.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
repository: iree-org/iree
5555
path: ${{ env.IREE_REPO_DIR }}
5656
submodules: false
57-
ref: iree-3.1.0rc20241204
57+
ref: iree-3.1.0rc20241220
5858

5959
- name: Initalize IREE submodules
6060
working-directory: ${{ env.IREE_REPO_DIR }}

shortfin/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ add_compile_options("$<$<C_COMPILER_ID:MSVC>:/utf-8>")
4444
add_compile_options("$<$<CXX_COMPILER_ID:MSVC>:/utf-8>")
4545

4646
# Pins
47-
set(SHORTFIN_IREE_GIT_TAG "iree-3.1.0rc20241204")
47+
set(SHORTFIN_IREE_GIT_TAG "iree-3.1.0rc20241220")
4848

4949
# build options
5050
option(SHORTFIN_BUILD_PYTHON_BINDINGS "Builds Python Bindings" OFF)

shortfin/src/shortfin/array/storage.cc

+2-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,8 @@ storage storage::subspan(iree_device_size_t byte_offset,
9292
iree_device_size_t byte_length) {
9393
storage new_storage(device_, {}, timeline_resource_);
9494
SHORTFIN_THROW_IF_ERROR(iree_hal_buffer_subspan(
95-
buffer_, byte_offset, byte_length, new_storage.buffer_.for_output()));
95+
buffer_, byte_offset, byte_length, host_allocator(),
96+
new_storage.buffer_.for_output()));
9697
return new_storage;
9798
}
9899

shortfin/src/shortfin/local/program.cc

+2-1
Original file line numberDiff line numberDiff line change
@@ -663,7 +663,8 @@ void StaticProgramParameters::Load(std::filesystem::path file_path,
663663

664664
// Parse.
665665
SHORTFIN_THROW_IF_ERROR(iree_io_parse_file_index(
666-
to_iree_string_view(options.format), file_handle.get(), index_.get()));
666+
to_iree_string_view(options.format), file_handle.get(), index_.get(),
667+
host_allocator_));
667668
}
668669

669670
// -------------------------------------------------------------------------- //

0 commit comments

Comments
 (0)