https://github.com/halide/Halide
Raw File
Tip revision: d2ab64343510324fde8432623f3a8fc2b04f0754 authored by Steven Johnson on 17 April 2023, 23:49:41 UTC
Update Generator.cpp
Tip revision: d2ab643
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