https://github.com/halide/Halide
Raw File
Tip revision: 2a8ced8cbcfa9aa31acf1d2eafaa89d5097d5cfc authored by Steven Johnson on 01 December 2020, 18:46:33 UTC
Merge branch 'master' into abadams/fix_fft_compile_time_regression
Tip revision: 2a8ced8
AlignLoads.h
#ifndef HALIDE_ALIGN_LOADS_H
#define HALIDE_ALIGN_LOADS_H

/** \file
 * Defines a lowering pass that rewrites unaligned loads into
 * sequences of aligned loads.
 */
#include "Expr.h"

namespace Halide {
namespace Internal {

/** Attempt to rewrite unaligned loads from buffers which are known to
 * be aligned to instead load aligned vectors that cover the original
 * load, and then slice the original load out of the aligned
 * vectors. */
Stmt align_loads(const Stmt &s, int alignment);

}  // namespace Internal
}  // namespace Halide

#endif
back to top