https://github.com/halide/Halide
Raw File
Tip revision: 81074fd2e45e24220cf98ebd03a1fb684ba40960 authored by Shoaib Kamil on 05 May 2020, 17:09:14 UTC
Second try at merge
Tip revision: 81074fd
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