https://github.com/halide/Halide
Raw File
Tip revision: be5e70aba145b6a736c803b2e62c9bf3988b5cbd authored by Steven Johnson on 26 August 2020, 01:32:08 UTC
wip
Tip revision: be5e70a
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