utils.h 1.53 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*!
 * \file layout/utils.h
 * \brief Some arith tools for layout & fragment inference
 *
 */

#ifndef TVM_TL_LAYOUT_UTILS_H_
#define TVM_TL_LAYOUT_UTILS_H_

#include <tvm/arith/iter_affine_map.h>

namespace tvm {
namespace tl {

using namespace tir;

/*!
 * \brief Collect the IterSplit that is not used in expr.
 *
 *  If the expr is (x // 2) and x is in Range(4),
 *  than the result should be (x % 2)
 */
23
24
25
26
Array<arith::IterSplitExpr>
DivideUnusedIterators(const Array<PrimExpr> &exprs,
                      const Array<IterVar> input_iters,
                      arith::Analyzer *analyzer);
27
28

/*!
29
30
 * \brief Compress the iterator var, remove the unused part of the var not
 * present in the expr
31
32
33
 *
 *  Returns the compressed IterVar as well as the Updated iter sum expression.
 */
34
35
36
37
std::pair<PrimExpr, IterVar> CompressIterator(const PrimExpr &expr,
                                              const Array<IterVar> input_iters,
                                              const Var &var,
                                              arith::Analyzer *analyzer);
38
39

/*!
40
41
 * \brief Convert the iter splits returned by DivideUnusedIterators into
 * flattened expression
42
43
 *
 */
44
PrimExpr MakeFlattenedExpression(const Array<arith::IterSplitExpr> &splits);
45
46
47
48
49

/*!
 * \brief Convert an Array of IterVar to a Map object
 *
 */
50
Map<Var, Range> ToVMap(const Array<IterVar> &ivs);
51
52
53
54
55

/*!
 * \brief Convert a Map object to an Array of IterVar
 *
 */
56
Array<IterVar> ToIterVars(const Map<Var, Range> &vmap);
57

58
59
} // namespace tl
} // namespace tvm
60

61
#endif // TVM_TL_LAYOUT_UTILS_H_