https://github.com/halide/Halide
Raw File
Tip revision: 80cc1aadcc862606c924ed932495972a0996d4d6 authored by Steven Johnson on 03 November 2022, 00:47:44 UTC
Attempt to fix Python layout once and for all
Tip revision: 80cc1aa
android_host_cpu_count.cpp
#include "HalideRuntime.h"

extern "C" {

extern long sysconf(int);

WEAK int halide_host_cpu_count() {
    // Works for Android ARMv7. Probably bogus on other platforms.
    return sysconf(97);
}
}
back to top