https://github.com/halide/Halide
Raw File
Tip revision: 85c1b91c47ce15aab0d9502d955e48615f3bcee0 authored by Alex Reinking on 19 February 2021, 04:27:28 UTC
Set version number to 11.0.1
Tip revision: 85c1b91
StorageFlattening.h
#ifndef HALIDE_STORAGE_FLATTENING_H
#define HALIDE_STORAGE_FLATTENING_H

/** \file
 * Defines the lowering pass that flattens multi-dimensional storage
 * into single-dimensional array access
 */

#include <map>
#include <string>
#include <vector>

#include "Expr.h"
#include "Target.h"

namespace Halide {
namespace Internal {

class Function;

/** Take a statement with multi-dimensional Realize, Provide, and Call
 * nodes, and turn it into a statement with single-dimensional
 * Allocate, Store, and Load nodes respectively. */
Stmt storage_flattening(Stmt s,
                        const std::vector<Function> &outputs,
                        const std::map<std::string, Function> &env,
                        const Target &target);

}  // namespace Internal
}  // namespace Halide

#endif
back to top