https://github.com/halide/Halide
Raw File
Tip revision: c0202215e423a9182da6c6a877223e9a9a5bc7e9 authored by Steven Johnson on 08 December 2022, 22:30:48 UTC
Update qurt_allocator.cpp
Tip revision: c020221
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