add ops docs

This commit is contained in:
sunsuodong 2021-10-11 00:00:52 -07:00
parent c1cb86e5f8
commit de115d4fb6
1 changed files with 4 additions and 0 deletions

View File

@ -26,11 +26,15 @@
namespace mindspore {
namespace ops {
constexpr auto kNameRaggedRange = "RaggedRange";
/// \brief RaggedRange operator prototype.
class MS_CORE_API RaggedRange : public PrimitiveC {
public:
/// \brief Constructor
RaggedRange() : PrimitiveC(kNameRaggedRange) {}
/// \brief Destructor
~RaggedRange() = default;
MS_DECLARE_PARENT(RaggedRange, PrimitiveC);
/// \brief Method to init the op.
void Init() {}
};