Skip to content

Commit

Permalink
MNN:Bugfix: Fix compile bug for armv7a-arm82
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaying committed Aug 20, 2024
1 parent b11b703 commit 9dfd733
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/backend/cpu/CPURuntime.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1128,7 +1128,7 @@ static void _getInfoARMv7(MNNCPUInfo* cpuinfo_isa) {
if (0 == cpuinfo_isa->groups.size()) {
return;
}
const uint32_t processors_count = cpuinfo_isa->allCpuIdsSorted.size();
const uint32_t processors_count = cpuinfo_isa->cpuNumber;

char proc_cpuinfo_hardware[CPUINFO_HARDWARE_VALUE_MAX] = {0};

Expand Down

0 comments on commit 9dfd733

Please sign in to comment.