https://github.com/halide/Halide
Raw File
Tip revision: 45301551e7b177cc5ae3b7be59ba941d854d879a authored by Alex Reinking on 18 August 2022, 20:56:32 UTC
add comment
Tip revision: 4530155
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