https://github.com/halide/Halide
Raw File
Tip revision: 5ef1dbbc1fd8ad6a8d3b01b7c5b4c8bc3702ec63 authored by Steven Johnson on 19 August 2019, 22:10:44 UTC
auto_schedule_mat_mul: increase thresh from 3.5 -> 5.0 (Issue #4152)
Tip revision: 5ef1dbb
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