https://github.com/halide/Halide
Raw File
Tip revision: 718989c60dd348036c6e605527457be02cd4e276 authored by Andrew Adams on 12 March 2021, 21:47:41 UTC
Slightly more general
Tip revision: 718989c
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