https://github.com/halide/Halide
Raw File
Tip revision: 0ad79dadb360be8345e4d839c5c9f24a377379c8 authored by Andrew Adams on 05 December 2023, 18:09:11 UTC
Add missing print
Tip revision: 0ad79da
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