https://github.com/halide/Halide
Raw File
Tip revision: d94e7a75ac22eca6225f9aa0cff857592a9e6504 authored by Steven Johnson on 21 October 2020, 16:44:25 UTC
Update CodeGen_Hexagon.cpp
Tip revision: d94e7a7
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