Skip to content
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
7 changes: 7 additions & 0 deletions .github/workflows/run-onert-micro-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,13 @@ jobs:
ref: ${{ github.event.pull_request.head.sha }}
# Fetch all history and branch (default: 1)
fetch-depth: 0
- name: Build for Cortex ARM
run: |
mkdir build_arm
cd build_arm
cmake ../infra/onert-micro/ -DCMAKE_BUILD_TYPE=Release -DNOT_BUILD_EXTERNALS=0
cmake --build . --target onert_micro_arm -j1

- name: Build and Run Tests
run: |
mkdir build
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ OMStatus OMRuntimeAllocator::allocateGraphInputs(OMRuntimeContext *context,
OMStatus status = Ok;
const auto &graph_inputs = context->getCircleInputs();

for (uint i = 0; i < graph_inputs->size(); ++i)
for (uint32_t i = 0; i < graph_inputs->size(); ++i)
{
auto tensor_index = graph_inputs->operator[](i);
const circle::Tensor *tensor = context->getTensorByIndex(tensor_index);
Expand Down