Program Listing for File return.h

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

#ifndef MINDSPORE_CORE_OPS_RETURN_H_
#define MINDSPORE_CORE_OPS_RETURN_H_
#include "ops/base_operator.h"

namespace mindspore {
namespace ops {
constexpr auto kNameReturn = "Return";
class MIND_API Return : public BaseOperator {
 public:
  MIND_API_BASE_MEMBER(Return);
  Return() : BaseOperator(kNameReturn) {}
};
}  // namespace ops
}  // namespace mindspore

#endif  // MINDSPORE_CORE_OPS_RETURN_H_