https://github.com/halide/Halide
Raw File
Tip revision: 3c055c99b68feee0e402f3d39dcf13e84e198ab1 authored by Andrew Adams on 12 December 2022, 22:10:41 UTC
Actually perform the requested operation
Tip revision: 3c055c9
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