https://github.com/halide/Halide
Raw File
Tip revision: 31a452445ea464e85f9b728c75ed399703412072 authored by Andrew Adams on 14 December 2018, 17:30:29 UTC
Update conv layer reference schedule
Tip revision: 31a4524
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 "IR.h"
#include "Target.h"

namespace Halide {
namespace Internal {

/** 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