https://github.com/halide/Halide
Raw File
Tip revision: f1a362c4466addb0ac2b067a981ca9238450cf12 authored by Ron Lieberman on 05 March 2018, 22:58:11 UTC
Makefile to support building libhalide_hexagon_host.so for LE
Tip revision: f1a362c
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 "IR.h"
#include "Target.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(Stmt s, int alignment);

}
}

#endif
back to top