https://github.com/halide/Halide
Raw File
Tip revision: 0fd5edbb58598bc932d8577c0f3ccc3b88db2355 authored by Steven Johnson on 16 January 2021, 00:04:50 UTC
Revert "Update Introspection.cpp"
Tip revision: 0fd5edb
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 EXPORT lower_lerp(Expr zero_val, Expr one_val, Expr weight);

}
}

#endif
back to top