https://github.com/halide/Halide
Raw File
Tip revision: cde9b7482315da9593927166e183859216a81ae2 authored by Andrew Adams on 28 October 2017, 23:11:45 UTC
Merge pull request #2490 from halide/update-matmul
Tip revision: cde9b74
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