https://github.com/halide/Halide
Raw File
Tip revision: a36d614a8e9ec3da4e9470a393852bcac6aa8891 authored by Andrew Adams on 11 June 2024, 21:33:21 UTC
Add clarifying comment
Tip revision: a36d614
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