https://github.com/halide/Halide
Raw File
Tip revision: f1a362c4466addb0ac2b067a981ca9238450cf12 authored by Ron Lieberman on 05 March 2018, 22:58:11 UTC
Makefile to support building libhalide_hexagon_host.so for LE
Tip revision: f1a362c
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