https://github.com/halide/Halide
Raw File
Tip revision: 825d863e7bd82bc00ca59be3934e1a0199a45dd2 authored by Andrew Adams on 22 May 2018, 21:11:35 UTC
Add stripped-down version of simplifier
Tip revision: 825d863
metadata.cpp
#include "HalideRuntime.h"

namespace Halide { namespace Runtime { namespace Internal {

// This is unused and expected to be optimized away; it exists solely to ensure
// that the halide_filter_metadata_t type is in the runtime module, so that
// Codegen_LLVM can access its description.
WEAK const halide_filter_metadata_t *unused_function_to_get_halide_filter_metadata_t_declared() { return NULL; }

} } }

back to top