https://github.com/halide/Halide
Raw File
Tip revision: 1efb65ead5fa01d7687d82c122327f3bd6b03053 authored by Steven Johnson on 01 May 2019, 21:21:14 UTC
Fix Codegen_C for msan
Tip revision: 1efb65e
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