https://github.com/halide/Halide
Raw File
Tip revision: e80d592543c87e3a517f3927b558ab0abff018b5 authored by Steven Johnson on 23 August 2019, 00:44:06 UTC
Try using --parseable-output
Tip revision: e80d592
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