https://github.com/halide/Halide
Raw File
Tip revision: 0bec5434332d44b39d2a7692015391689e68c0aa authored by Steven Johnson on 05 January 2018, 17:43:11 UTC
Merge branch 'master' into pr/2676
Tip revision: 0bec543
AddParameterChecks.h
#ifndef HALIDE_INTERNAL_ADD_PARAMETER_CHECKS_H
#define HALIDE_INTERNAL_ADD_PARAMETER_CHECKS_H

/** \file
 *
 * Defines the lowering pass that adds the assertions that validate
 * scalar parameters.
 */

#include "IR.h"

namespace Halide {

struct Target;

namespace Internal {

/** Insert checks to make sure that all referenced parameters meet
 * their constraints. */
Stmt add_parameter_checks(Stmt s, const Target &t);


}
}

#endif
back to top