https://github.com/halide/Halide
Raw File
Tip revision: 9eb39a817dd67a7c6477ba7e0afeae4e7f8781a4 authored by Steven Johnson on 16 February 2023, 20:07:38 UTC
halide_reuse_device_allocations() & related
Tip revision: 9eb39a8
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