https://github.com/halide/Halide
Raw File
Tip revision: c61ad72153be1c3c710ac7c8e2e2671f6f94a2f1 authored by Steven Johnson on 02 April 2024, 19:41:20 UTC
hack for testing
Tip revision: c61ad72
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