https://github.com/halide/Halide
Raw File
Tip revision: 2c994ec0a39528551a38128198f79532c11e239b authored by Steven Johnson on 12 July 2019, 18:33:25 UTC
Hide TickStackEntry and tick_stack
Tip revision: 2c994ec
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