Program Listing for File log_softmax.h

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

#ifndef MINDSPORE_CORE_OPS_LOG_SOFTMAX_H_
#define MINDSPORE_CORE_OPS_LOG_SOFTMAX_H_

#include <map>
#include <memory>
#include <string>
#include <vector>
#include "mindapi/base/types.h"
#include "ops/base_operator.h"

namespace mindspore {
namespace ops {
constexpr auto kNameLogSoftmax = "LogSoftmax";
class MIND_API LogSoftmax : public BaseOperator {
 public:
  MIND_API_BASE_MEMBER(LogSoftmax);
  LogSoftmax() : BaseOperator(kNameLogSoftmax) { InitIOName({"x"}, {"output"}); }
  void Init(const int64_t axis = -1);
  void set_axis(const int64_t axis);
  int64_t get_axis() const;
};

MIND_API abstract::AbstractBasePtr LogSoftmaxInfer(const abstract::AnalysisEnginePtr &, const PrimitivePtr &primitive,
                                                   const std::vector<abstract::AbstractBasePtr> &input_args);
}  // namespace ops
}  // namespace mindspore

#endif  // MINDSPORE_CORE_OPS_LOG_SOFTMAX_H_