https://github.com/halide/Halide
Raw File
Tip revision: db956570610bf440c25359b8b7e1889c5367f722 authored by Steven Johnson on 30 August 2018, 21:01:25 UTC
Add Buffer::mutable_raw_buffer()
Tip revision: db95657
windows_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