https://github.com/halide/Halide
Raw File
Tip revision: cf38ee9dccdc00265482e2906898bf84a51a3f56 authored by Steven Johnson on 12 January 2019, 17:43:42 UTC
Add some 'touch' to make rebuilds better
Tip revision: cf38ee9
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