https://github.com/halide/Halide
Raw File
Tip revision: 6c7e15e11392751f34357f688a41b8502dc5209b authored by Pranav Bhandarkar on 01 February 2017, 21:35:12 UTC
Incorporate review comments.
Tip revision: 6c7e15e
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