Program Listing for File tile.h

Return to documentation for file (include/converter/include/ops/tile.h)

#ifndef MINDSPORE_CORE_OPS_TILE_H_
#define MINDSPORE_CORE_OPS_TILE_H_
#include <memory>
#include <set>
#include <string>
#include <vector>

#include "mindapi/base/types.h"
#include "ops/base_operator.h"

namespace mindspore {
namespace ops {
constexpr auto kNameTile = "Tile";
class MIND_API Tile : public BaseOperator {
 public:
  MIND_API_BASE_MEMBER(Tile);
  Tile() : BaseOperator(kNameTile) { InitIOName({"x", "multiples"}, {"output"}); }
  explicit Tile(const std::string k_name) : BaseOperator(k_name) { InitIOName({"x", "multiples"}, {"output"}); }
  void Init() const {}
};
}  // namespace ops
}  // namespace mindspore

#endif  // MINDSPORE_CORE_OPS_TILE_H_