https://github.com/halide/Halide
Raw File
Tip revision: d876f3638d33c6201dfa501eda3d3dc546f6f278 authored by Steven Johnson on 25 July 2022, 17:22:11 UTC
Revert "re-enable apps/bgu"
Tip revision: d876f36
osx_host_cpu_count.cpp
#include "HalideRuntime.h"

extern "C" {

extern long sysconf(int);

WEAK int halide_host_cpu_count() {
    return sysconf(58);
}
}
back to top