https://github.com/halide/Halide
Raw File
Tip revision: 0bd82da9598f7500dd4c932baa2fa32f6074e121 authored by Z Stern on 24 August 2022, 03:38:00 UTC
Remove some helper routines from CodeGen_Internal interface and
Tip revision: 0bd82da
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