https://github.com/halide/Halide
Raw File
Tip revision: 97f9cc0de3559adaba8d6ddffdb465b9d6aa5ecf authored by Alexander Root on 12 July 2021, 15:38:30 UTC
add clean random rts
Tip revision: 97f9cc0
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