Program Listing for File shape.h

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

#ifndef MINDSPORE_CORE_OPS_SHAPE_H_
#define MINDSPORE_CORE_OPS_SHAPE_H_
#include <map>
#include <memory>
#include <string>

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

namespace mindspore {
namespace ops {
constexpr auto kNameShape = "Shape";

class MIND_API Shape : public BaseOperator {
 public:
  MIND_API_BASE_MEMBER(Shape);
  Shape() : BaseOperator(kNameShape) {}
  void Init() const {}
};
}  // namespace ops
}  // namespace mindspore

#endif  // MINDSPORE_CORE_OPS_SHAPE_H_