https://github.com/halide/Halide
Raw File
Tip revision: a18fe59a3b6cc3053dbb8648ba89b703c909a2bd authored by Pranav Bhandarkar on 22 January 2020, 21:27:46 UTC
Deprecate Hexagon v60 in the Makefile too
Tip revision: a18fe59
android_host_cpu_count.cpp
#include "HalideRuntime.h"

extern "C" {

extern long sysconf(int);

WEAK int halide_host_cpu_count() {
    // Works for Android ARMv7. Probably bogus on other platforms.
    return sysconf(97);
}
}
back to top