https://github.com/halide/Halide
Raw File
Tip revision: 3a974c2df25c8a34e318504002b8a0a45e0e1664 authored by Derek Gerstmann on 01 December 2021, 21:02:43 UTC
Use ICD rather than dynload Molten directly.
Tip revision: 3a974c2
posix_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