https://github.com/halide/Halide
Raw File
Tip revision: e8f1dbe02dc2440b99e49c9e642e1a2a7e7ffbd1 authored by Andrew Adams on 14 November 2023, 23:32:39 UTC
Add a little picture of the 9 zones
Tip revision: e8f1dbe
windows_io.cpp
#include "HalideRuntime.h"

extern "C" {

WEAK void halide_default_print(void *user_context, const char *str) {
    write(STDOUT_FILENO, str, strlen(str));
}
}
back to top