https://github.com/halide/Halide
Raw File
Tip revision: 28e94e15ed313d0f65d668018bc322940e94f7c7 authored by Andrew Adams on 22 May 2024, 19:54:36 UTC
Add some EVAL_IN_LAMBDAs to Simplify_Sub.cpp
Tip revision: 28e94e1
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