https://github.com/halide/Halide
Raw File
Tip revision: 3a0d8d074b74eb0761fe1dba2854f0bf0dc7ece2 authored by Alexander Root on 12 July 2021, 15:26:18 UTC
add a few more bounds-related simplifier rules
Tip revision: 3a0d8d0
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