Skip to content

Commit

Permalink
fix a renamed variable (#15)
Browse files Browse the repository at this point in the history
old: iree_hal_buffer_view_get_descriptor
new: iree_hal_buffer_view_descriptor
  • Loading branch information
okkwon authored Mar 8, 2023
1 parent 587caef commit 56fb06e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iree/integrations/pjrt/common/api_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1514,7 +1514,7 @@ iree_status_t LoadedExecutableInstance::BatchExecute(
for (size_t i = 0; i < inv.res_exe->result_count; ++i) {
iree::vm::ref<iree_hal_buffer_view_t> ret_buffer_view =
retain_ref((iree_hal_buffer_view_t*)iree_vm_list_get_ref_deref(
inv.outputs.get(), i, iree_hal_buffer_view_get_descriptor()));
inv.outputs.get(), i, &iree_hal_buffer_view_descriptor));
// This should not be possible so just hard-assert.
IREE_ASSERT_ARGUMENT(ret_buffer_view);
auto result_buffer = std::make_unique<BufferInstance>(
Expand Down

0 comments on commit 56fb06e

Please sign in to comment.