https://github.com/halide/Halide
Raw File
Tip revision: 62260e8a339259a75cad6db5b579fad00318968c authored by Shoaib Kamil on 15 October 2020, 21:22:39 UTC
Can serialize/deserialize first testcase
Tip revision: 62260e8
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