https://github.com/halide/Halide
Raw File
Tip revision: b7a20b6962324d217461c44436524afaa2a4fe4d authored by Derek Gerstmann on 08 May 2023, 21:52:41 UTC
Fix missing initializer for vulkan memory config that got munged in a previous merge.
Tip revision: b7a20b6
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