elem.h 1.61 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

/*!
 * \file tl/op/elem.h
 * \brief Define elment-wise operators.
 *
 */

#ifndef TVM_TL_OP_ELEM_H_
#define TVM_TL_OP_ELEM_H_

#include "op.h"
#include "parallel.h"

namespace tvm {
namespace tl {

using namespace tir;

class Copy : public Operator {
 public:
  Copy(Array<PrimExpr> args, BufferMap vmap);
  Stmt Lower(const LowerArgs& T, arith::Analyzer* analyzer) const final;
  LayoutMap InferLayout(const LayoutInferArgs& T, InferLevel level) final;

  static const Op& Get();

 protected:
  Stmt LowerBulkCopy(const LowerArgs& T, arith::Analyzer* analyzer) const;
  Stmt LowerLDSMCopy(const LowerArgs& T, arith::Analyzer* analyzer) const;

  For MakeSIMTLoop(arith::Analyzer* analyzer) const;
  Array<IterVar> MakeIterVars() const;

  // ivs: itervars returned by MakeIterVars()
  // src_dst: 0 for src_indices, 1 for dst_indices
  Array<PrimExpr> MakeIndices(const Array<IterVar>& ivs, int src_dst) const;

  PrimExpr MakePredicate(arith::Analyzer* analyzer, const Array<IterVar>& ivs,
                         Array<PrimExpr> extents, int src_dst) const;

  Array<PrimExpr> args_;

  Buffer src, dst;
  Array<Range> src_range, dst_range;
  IntImm coalesced_width;

  std::unique_ptr<ParallelOp> par_op_;
};

class Fill : public Operator {
 public:
  Fill(Array<PrimExpr> args, BufferMap vmap);
  Stmt Lower(const LowerArgs& T, arith::Analyzer* analyzer) const final;
  static const Op& Get();

 private:
  For MakeSIMTLoop(arith::Analyzer* analyzer) const;
  tir::Buffer dst;
  PrimExpr value;
};

}  // namespace tl
}  // namespace tvm

#endif  //  TVM_TL_OP_ELEM_H_