https://github.com/halide/Halide
Raw File
Tip revision: f3837f7ae827136e33114f16eb65435698754646 authored by Steven Johnson on 19 September 2022, 22:26:21 UTC
Update CMakeLists.txt
Tip revision: f3837f7
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