https://github.com/halide/Halide
Raw File
Tip revision: 79b4cffe5c2258305d6c4982dd06c9eb35770d69 authored by Alex Reinking on 01 September 2022, 18:21:37 UTC
Fixes for Xcode "new" build system.
Tip revision: 79b4cff
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