https://github.com/halide/Halide
Raw File
Tip revision: f80fb1b060c8fc96ef6e748f59c6b532dc534ad6 authored by Steven Johnson on 03 February 2022, 00:41:23 UTC
Gen2 C++ Generator Experiment, KEEP
Tip revision: f80fb1b
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