https://github.com/halide/Halide
Raw File
Tip revision: 89513de7ac1161be7bda6a01d91878d4ef44ae87 authored by Patricia Suriana on 19 October 2017, 21:20:08 UTC
Fix bugs in auto-scheduler inlining impure func
Tip revision: 89513de
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