https://github.com/halide/Halide
Raw File
Tip revision: bfd447c439d026f0c4c704c9ea67b39455dd14df authored by Andrew Adams on 05 October 2023, 16:59:30 UTC
Update README.md to include RISCV in llvm build instructions
Tip revision: bfd447c
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