https://github.com/halide/Halide
Raw File
Tip revision: 784f0ece1b3c1b231875e4cf76a59f924815e736 authored by Derek Gerstmann on 06 February 2024, 20:09:34 UTC
Add bool_predicate_cast correctness test to verify bool conversion for
Tip revision: 784f0ec
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