https://github.com/halide/Halide
Raw File
Tip revision: 9f049d48a60ba2aea2280b718515abbe9c737e65 authored by Steven Johnson on 21 October 2021, 16:51:27 UTC
Update Util.cpp
Tip revision: 9f049d4
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