https://github.com/halide/Halide
Raw File
Tip revision: 9579767fcdbd53189769a44084efcde3c827aee8 authored by Alexander Root on 12 July 2021, 16:08:01 UTC
add constant bounds methods
Tip revision: 9579767
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