Revision a3ee5f7cbd65d4e37a0cca7da81aa1a3bf45de53 authored by Steven Johnson on 31 July 2018, 00:56:30 UTC, committed by GitHub on 31 July 2018, 00:56:30 UTC
Add missing #include to HexagonAlignment.h
2 parent s db256bd + 6a7ff1b
Raw File
LICM.h
#ifndef HALIDE_LICM_H
#define HALIDE_LICM_H

/** \file
 * Methods for lifting loop invariants out of inner loops.
 */

#include "IR.h"

namespace Halide {
namespace Internal {

/** Hoist loop-invariants out of inner loops. This is especially
 * important in cases where LLVM would not do it for us
 * automatically. For example, it hoists loop invariants out of cuda
 * kernels. */
Stmt loop_invariant_code_motion(Stmt);

}  // namespace Internal
}  // namespace Halide

#endif
back to top