https://github.com/halide/Halide
Raw File
Tip revision: a675193b8db0b7c8437ef179fd20c06400147593 authored by Steven Johnson on 23 February 2018, 00:55:09 UTC
Verify that Python stubs work only with new-style Generators
Tip revision: a675193
msan_stubs.cpp
#include "HalideRuntime.h"

extern "C" {

WEAK void halide_msan_annotate_memory_is_initialized(void *user_context, const void *ptr, uint64_t len) {}

WEAK void halide_msan_annotate_buffer_is_initialized(void *user_context, halide_buffer_t *b) {}

WEAK void halide_msan_annotate_buffer_is_initialized_as_destructor(void *user_context, void *b) {}

}
back to top