https://github.com/halide/Halide
Raw File
Tip revision: 7496245ee5b1528dcb9fcc67627d5effe7cd65ca authored by Steven Johnson on 02 April 2020, 00:41:18 UTC
Avoid including IR.h in other .h files except where necessary
Tip revision: 7496245
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