https://github.com/halide/Halide
Raw File
Tip revision: 57157d183cf230b9edf40925c7874ce8f52b2ba2 authored by Steven Johnson on 26 January 2024, 22:51:39 UTC
trigger buildbots
Tip revision: 57157d1
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