elem.h 1.6 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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 {
22
public:
23
  Copy(Array<PrimExpr> args, BufferMap vmap);
24
25
  Stmt Lower(const LowerArgs &T, arith::Analyzer *analyzer) const final;
  LayoutMap InferLayout(const LayoutInferArgs &T, InferLevel level) final;
26

27
  static const Op &Get();
28

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

33
  For MakeSIMTLoop(arith::Analyzer *analyzer) const;
34
35
36
37
  Array<IterVar> MakeIterVars() const;

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

40
  PrimExpr MakePredicate(arith::Analyzer *analyzer, const Array<IterVar> &ivs,
41
42
43
44
45
46
47
48
49
50
51
52
                         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 {
53
public:
54
  Fill(Array<PrimExpr> args, BufferMap vmap);
55
56
  Stmt Lower(const LowerArgs &T, arith::Analyzer *analyzer) const final;
  static const Op &Get();
57

58
59
private:
  For MakeSIMTLoop(arith::Analyzer *analyzer) const;
60
61
62
63
  tir::Buffer dst;
  PrimExpr value;
};

64
65
} // namespace tl
} // namespace tvm
66

67
#endif //  TVM_TL_OP_ELEM_H_