https://github.com/halide/Halide
Raw File
Tip revision: 97f765aec03ea227bd81d5db801db624fe01a0af authored by Steven Johnson on 13 September 2022, 20:27:29 UTC
IF NOT EXISTS before file(WRITE)
Tip revision: 97f765a
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