https://github.com/halide/Halide
Raw File
Tip revision: 25db7fe3c596d27edc35eaf76ccc165cfa0d42ee authored by Steven Johnson on 12 October 2018, 20:29:30 UTC
Blacklist async_copy_chain on Windows for now (Issue #3358)
Tip revision: 25db7fe
Lerp.h
#ifndef HALIDE_LERP_H
#define HALIDE_LERP_H

/** \file
 * Defines methods for converting a lerp intrinsic into Halide IR.
 */

#include "IR.h"

namespace Halide {
namespace Internal {

/** Build Halide IR that computes a lerp. Use by codegen targets that
 * don't have a native lerp. */
Expr lower_lerp(Expr zero_val, Expr one_val, Expr weight);

}  // namespace Internal
}  // namespace Halide

#endif
back to top