https://github.com/halide/Halide
Raw File
Tip revision: 88509a850310af20868a24b57bcd2e30d82d6209 authored by Andrew Adams on 02 March 2023, 19:33:55 UTC
fix typo
Tip revision: 88509a8
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