https://github.com/halide/Halide
Raw File
Tip revision: 5fa8749096360ecde7dda1a19547ca0a4ce3241e authored by Steven Johnson on 27 August 2018, 18:38:14 UTC
Don't run associativity/commutativity proof in reorder unless there are RVars in the dims.
Tip revision: 5fa8749
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