https://github.com/halide/Halide
Raw File
Tip revision: d165b6b9b49c3bcce8421a34e52561a2fa4fcbaa authored by KarimaMa on 17 January 2020, 15:54:07 UTC
merged
Tip revision: d165b6b
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