https://github.com/halide/Halide
Raw File
Tip revision: aeb4c8afd0873310f8b91bc16310250bb2a55cc4 authored by Dan Palermo on 29 March 2019, 19:17:56 UTC
Change the priority of thread pool threads to match the pipeline context thread
Tip revision: aeb4c8a
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