https://github.com/halide/Halide
Raw File
Tip revision: 35e7414251d6304daf21fd011c52b0efcf867e24 authored by Alexander Root on 02 September 2021, 17:31:19 UTC
fix a few bugs + add TODOs
Tip revision: 35e7414
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