graph.h 3.19 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
/*!
 *  Copyright (c) 2016 by Contributors
 * \file graph.h
 * \brief Utilities to get information about schedule graph.
 */
#ifndef TVM_SCHEDULE_GRAPH_H_
#define TVM_SCHEDULE_GRAPH_H_

#include <tvm/expr.h>
#include <tvm/schedule.h>
11
#include <tvm/operation.h>
12
#include <unordered_map>
13
#include <unordered_set>
14 15 16 17 18 19 20 21
#include <vector>

namespace tvm {
namespace schedule {

/*!
 * \brief data structure of Operation->Tensors it reads
 */
22
using ReadGraph = Map<Operation, Array<Tensor> >;
23 24

/*!
25 26 27 28 29
 * \brief AttachPath maps op-> a list of IterVar
 */
using AttachPath = Map<Operation, Array<IterVar> >;

/*!
30
 * \brief The map between tensor and operation it feeds to.
31 32 33 34
 */
using FeedGraph = std::unordered_map<Tensor, std::vector<Operation> >;

/*!
35 36 37 38
 * \brief Get read graph of each operation to all the
 *  Tensors that it directly depends on.
 *
 *  The result map contains Operations needed to finish root Operation.
39
 * \param roots The root operation.
40 41
 * \return The result map.
 */
42
ReadGraph CreateReadGraph(const Array<Operation>& roots);
43 44

/*!
45 46 47 48
 * \brief Get minimum subgraph between outputs and inputs.
 *  The operations contains node which input-reachable from any inputs
 *  output reachable to any outputs.
 *
49
 *  The inputs won't be included in the subgraph, the outputs will be included.
50 51 52 53 54 55 56 57 58 59 60 61
 *
 * \param outputs The outputs of the subgraph
 * \param inputs The inputs to the subgraph.
 * \param include_inputs Whether to include inputs
 *
 * \return The subgraph.
 */
Array<Operation> GetSubGraph(const Array<Tensor>& outputs,
                             const Array<Tensor>& inputs,
                             bool include_inputs);

/*!
62
 * \brief Get a post DFS ordered of operations in the graph.
63
 * \param roots The root of the graph.
64 65 66 67 68 69
 * \param g The read graph.
 * \return vector order of Operations in PostDFS order.
 *
 * \note PostDFSOrder is a special case of Topoligical order,
 *   and can be used when topoligical order is needed.
 */
70
Array<Operation> PostDFSOrder(
71
    const Array<Operation>& roots, const ReadGraph& g);
72

73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
/*!
 * \brief Create feedgraph for given Schedule
 * \param  g The read graph.
 * \return The created feedgraph.
 */
FeedGraph CreateFeedGraph(const ReadGraph& g);

/*!
 * \brief Create AttachPath that  maps op-> a list of IterVar
 *  That represents the loop nest op sits in from inner most to outermost
 *  Also inserts attach_stage for scan updates when needed.
 *
 * \param sch The schedule.
 * \return The attach path.
 */
AttachPath CreateAttachPath(Schedule sch);

/*!
 * \brief Get all operations inside the recursion of scan.
92
 * \param scan_op The scan node ops.
93 94
 * \return The body operations, in read dependency order.
 */
95
Array<Operation> ScanGetBody(const Operation& scan_op);
96 97 98 99 100 101 102 103 104 105 106 107

/*!
 * \brief Analyze each spatial dimension of scan's result.
 *  Give check on whether each dimension is fix point,
 *  An axis is a fixed point if it only refers back to itself in recursion
 *  and it is not used in axis of other recursion field.
 *
 *  next_state[t, ..., axis, ...] = f(prev_state[t-1, ...,axis,...]
 *
 * \param scan The scan node.
 * \return Map of spatial_axis -> IntImm
 */
108
Map<IterVar, Expr> ScanFixPointAnalysis(const Operation& scan);
109

110 111 112 113
}  // namespace schedule
}  // namespace tvm

#endif  // TVM_SCHEDULE_GRAPH_H_