https://github.com/halide/Halide
Raw File
Tip revision: 28346746a8cfdb7d4b54c4bb493da07fe70f9b60 authored by Karima Ma on 21 August 2020, 14:40:16 UTC
adding manual schedules for demosaicing apps
Tip revision: 2834674
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