Program Listing for File lin_space.h

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

#ifndef MINDSPORE_CORE_OPS_LIN_SPACE_H_
#define MINDSPORE_CORE_OPS_LIN_SPACE_H_
#include <memory>
#include <vector>

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

namespace mindspore {
namespace ops {
constexpr auto kNameLinSpace = "LinSpace";
class MIND_API LinSpace : public BaseOperator {
 public:
  MIND_API_BASE_MEMBER(LinSpace);
  LinSpace() : BaseOperator(kNameLinSpace) { InitIOName({"start", "stop", "num"}, {"output"}); }
};
}  // namespace ops
}  // namespace mindspore

#endif  // MINDSPORE_CORE_OPS_LIN_SPACE_H_