https://github.com/halide/Halide
Raw File
Tip revision: c62538d482dd2bb1cdec2b6c48e275bb5bce5358 authored by Steven Johnson on 08 November 2022, 22:25:13 UTC
Add a struct with type signatures to output, as compile-time-only alternative to #7149
Tip revision: c62538d
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"

namespace Halide {

struct Target;

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