https://github.com/halide/Halide
Raw File
Tip revision: 44f174c111bde2d511063df8fbdaeb960ea01817 authored by Steven Johnson on 23 October 2020, 19:45:29 UTC
foo
Tip revision: 44f174c
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