!24663 [MS][LITE][develop] add RaggedRange docs

Merge pull request !24663 from sunsuodong/code_docs_master
This commit is contained in:
i-robot 2021-10-11 07:26:24 +00:00 committed by Gitee
commit 5447831947
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() {}
};