https://github.com/halide/Halide
Raw File
Tip revision: 49982b9e2fa7dd52cf5f4169c5a36f455f0b8e26 authored by Jing Pu on 28 May 2018, 21:21:13 UTC
Add simplify rules for a modulo of a difference (in the new simplifier).
Tip revision: 49982b9
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