/*! * \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 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 MakeIterVars() const; // ivs: itervars returned by MakeIterVars() // src_dst: 0 for src_indices, 1 for dst_indices Array MakeIndices(const Array &ivs, int src_dst) const; PrimExpr MakePredicate(arith::Analyzer *analyzer, const Array &ivs, Array extents, int src_dst) const; Array args_; Buffer src, dst; Array src_range, dst_range; IntImm coalesced_width; Bool disable_tma = Bool(false); std::unique_ptr par_op_; }; class Fill : public Operator { public: Fill(Array 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; Array region; }; } // namespace tl } // namespace tvm #endif // TVM_TL_OP_ELEM_H_