https://github.com/halide/Halide
Raw File
Tip revision: 11a60e785b0610dcf682bce1e9faf7f18c119128 authored by Volodymyr Kysenko on 01 September 2023, 18:30:00 UTC
Comments
Tip revision: 11a60e7
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