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

[onert-micro] Fix build error for arm #11200

Merged
merged 1 commit into from
Aug 1, 2023
Merged
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 onert-micro/luci-interpreter/pal/mcu/PALResizeBilinear.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ inline int Offset(const luci_interpreter::RuntimeShape &shape, int i0, int i1, i
{
assert(shape.dimensionsCount() == 4);

const int32_t *dims_data = reinterpret_cast<const int *>(shape.dimsData());
const int32_t *dims_data = reinterpret_cast<const int32_t *>(shape.dimsData());
LUCI_INTERPRETER_CHECK(i0 >= 0 && i0 < dims_data[0]);
LUCI_INTERPRETER_CHECK(i1 >= 0 && i1 < dims_data[1]);
LUCI_INTERPRETER_CHECK(i2 >= 0 && i2 < dims_data[2]);
Expand Down