https://github.com/halide/Halide
Raw File
Tip revision: 8cee0dae7fb134da9f7c81d110f3a773bf302863 authored by Andrew Adams on 23 August 2020, 21:39:07 UTC
Check for duplicate vars in calls to reorder/reorder_storage
Tip revision: 8cee0da
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