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

Integrate IREE at iree-org/iree@d39c3c5 #343

Merged
merged 1 commit into from
Sep 18, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion iree-release-link.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
https://github.com/iree-org/iree/releases/download/candidate-20240728.968/iree-dist-20240728.968-linux-x86_64.tar.xz
https://github.com/iree-org/iree/releases/download/candidate-20240730.970/iree-dist-20240730.970-linux-x86_64.tar.xz
2 changes: 1 addition & 1 deletion requirements-compiler.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023 The IREE bare-metal Arm Authors
# SPDX-License-Identifier: CC0-1.0
-f https://iree.dev/pip-release-links.html
iree-compiler==20240728.968
iree-compiler==20240730.970
4 changes: 2 additions & 2 deletions requirements-tools.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-FileCopyrightText: 2022 The IREE bare-metal Arm Authors
# SPDX-License-Identifier: CC0-1.0
-f https://iree.dev/pip-release-links.html
iree-tools-tf==20240728.968
iree-tools-tflite==20240728.968
iree-tools-tf==20240730.970
iree-tools-tflite==20240730.970
2 changes: 1 addition & 1 deletion samples/simple_embedding/device_embedded_sync.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ iree_status_t create_sample_device(iree_allocator_t host_allocator,
/*plugin_manager=*/NULL, host_allocator, &loader));

// Use the default host allocator for buffer allocations.
iree_string_view_t identifier = iree_make_cstring_view("dylib");
iree_string_view_t identifier = iree_make_cstring_view("local-sync");
iree_hal_allocator_t* device_allocator = NULL;
iree_status_t status = iree_hal_allocator_create_heap(
identifier, host_allocator, host_allocator, &device_allocator);
Expand Down
2 changes: 1 addition & 1 deletion samples/simple_embedding/device_vmvx_sync.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ iree_status_t create_sample_device(iree_allocator_t host_allocator,
iree_vm_instance_release(instance);

// Use the default host allocator for buffer allocations.
iree_string_view_t identifier = iree_make_cstring_view("vmvx");
iree_string_view_t identifier = iree_make_cstring_view("local-sync");
iree_hal_allocator_t* device_allocator = NULL;
if (iree_status_is_ok(status)) {
status = iree_hal_allocator_create_heap(identifier, host_allocator,
Expand Down
2 changes: 1 addition & 1 deletion samples/simple_vec_mul/device_static_sync.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ iree_status_t create_sample_device(iree_allocator_t host_allocator,
iree_hal_executable_import_provider_null(), host_allocator, loader);

// Use the default host allocator for buffer allocations.
iree_string_view_t identifier = iree_make_cstring_view("sync");
iree_string_view_t identifier = iree_make_cstring_view("local-sync");
iree_hal_allocator_t* device_allocator = NULL;
if (iree_status_is_ok(status)) {
status = iree_hal_allocator_create_heap(identifier, host_allocator,
Expand Down
2 changes: 1 addition & 1 deletion samples/simple_vec_mul/device_vmvx_sync.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ iree_status_t create_sample_device(iree_allocator_t host_allocator,
iree_vm_instance_release(instance);

// Use the default host allocator for buffer allocations.
iree_string_view_t identifier = iree_make_cstring_view("vmvx");
iree_string_view_t identifier = iree_make_cstring_view("local-sync");
iree_hal_allocator_t* device_allocator = NULL;
if (iree_status_is_ok(status)) {
status = iree_hal_allocator_create_heap(identifier, host_allocator,
Expand Down
2 changes: 1 addition & 1 deletion samples/static_library/static_library_demo.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ iree_status_t create_device_with_static_loader(iree_allocator_t host_allocator,
&library_loader);

// Use the default host allocator for buffer allocations.
iree_string_view_t identifier = iree_make_cstring_view("sync");
iree_string_view_t identifier = iree_make_cstring_view("local-sync");
iree_hal_allocator_t* device_allocator = NULL;
if (iree_status_is_ok(status)) {
status = iree_hal_allocator_create_heap(identifier, host_allocator,
Expand Down
2 changes: 1 addition & 1 deletion samples/vision_inference/static_library_mnist.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ iree_status_t create_device_with_static_loader(iree_allocator_t host_allocator,
&library_loader);

// Use the default host allocator for buffer allocations.
iree_string_view_t identifier = iree_make_cstring_view("sync");
iree_string_view_t identifier = iree_make_cstring_view("local-sync");
iree_hal_allocator_t* device_allocator = NULL;
if (iree_status_is_ok(status)) {
status = iree_hal_allocator_create_heap(identifier, host_allocator,
Expand Down
2 changes: 1 addition & 1 deletion third_party/iree
Submodule iree updated 302 files