https://github.com/halide/Halide
Raw File
Tip revision: 1d073daa65c05e2ba46e3d52f741b61f2c0163b7 authored by Steven Johnson on 07 February 2024, 18:52:08 UTC
Fix clang-tidy error in runtime.printer.h (parameter shadows member)
Tip revision: 1d073da
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