https://github.com/halide/Halide
Raw File
Tip revision: 9458aaf7f598240bccaf68dfd0328350f52d1da7 authored by Matthias Kramm on 23 May 2018, 13:00:18 UTC
Ignore (duplicate) functions on legacy buffers.
Tip revision: 9458aaf
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