https://github.com/halide/Halide
Raw File
Tip revision: 3a24168521e846325a950f5b610f8cee8da2f719 authored by Steven Johnson on 05 June 2024, 17:10:56 UTC
Merge branch 'abadams/fix_lossless_cast_of_sub' into srj/lossless-test
Tip revision: 3a24168
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