https://github.com/halide/Halide
Raw File
Tip revision: 5a17e84395c19570e9e4a6a25df39b4892a65ee5 authored by Steven Johnson on 12 March 2019, 01:42:35 UTC
Sketch of float16 support for Generator (Issue #3709)
Tip revision: 5a17e84
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