https://github.com/halide/Halide
Raw File
Tip revision: b497cf1c42dea81275439041318a59f91b012d64 authored by Andrew Adams on 18 December 2018, 19:03:41 UTC
Enable tests
Tip revision: b497cf1
RemoveUndef.h
#ifndef HALIDE_REMOVE_UNDEF
#define HALIDE_REMOVE_UNDEF

#include "IR.h"

/** \file
 * Defines a lowering pass that elides stores that depend on unitialized values.
 */

namespace Halide {
namespace Internal {

/** Removes stores that depend on undef values, and statements that
 * only contain such stores. */
Stmt remove_undef(Stmt s);

}  // namespace Internal
}  // namespace Halide

#endif
back to top