https://github.com/halide/Halide
Raw File
Tip revision: ea26771f36ec9a233f026deaa66f3fd91a167b90 authored by Steven Johnson on 12 January 2022, 19:57:45 UTC
sstuff
Tip revision: ea26771
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