Skip to content

Commit

Permalink
Merge pull request #2998 from alibaba/feature/bugfix
Browse files Browse the repository at this point in the history
MNN:Bugfix: Fix compile bug for armv7a-arm82
  • Loading branch information
jxt1234 authored Aug 20, 2024
2 parents e6753f5 + 9dfd733 commit 72ef1ff
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 72ef1ff

Please sign in to comment.