https://github.com/halide/Halide
Raw File
Tip revision: df01e7ba8f4a0d6a1fe4e8bb4a5c269c7716463c authored by Steven Johnson on 08 November 2022, 00:42:27 UTC
Call cache.clear between internal functions in CG_C
Tip revision: df01e7b
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