https://github.com/halide/Halide
Raw File
Tip revision: 331df56ccef09b854de73299539b9d0daf37d308 authored by Jing Pu on 21 August 2018, 20:16:29 UTC
Add a simplify test from #3229.
Tip revision: 331df56
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