https://github.com/halide/Halide
Raw File
Tip revision: e50ed85da25710de30b33d946c99be7af36718e1 authored by Andrew Adams on 24 March 2023, 17:40:18 UTC
Remove HALIDE_NO_USER_CODE_INLINE
Tip revision: e50ed85
fuchsia_host_cpu_count.cpp
#include "HalideRuntime.h"

extern "C" {

uint32_t zx_system_get_num_cpus(void);

WEAK int halide_host_cpu_count() {
    return (int)zx_system_get_num_cpus();
}
}
back to top