Browse Source

!13194 fix LSTM

From: @xutianchun
Reviewed-by: @hangangqiang,@zhang_xue_tong
Signed-off-by: @hangangqiang
tags/v1.2.0-rc1
mindspore-ci-bot Gitee 5 years ago
parent
commit
a7a0e054f6
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      mindspore/core/base/core_ops.h

+ 1
- 1
mindspore/core/base/core_ops.h View File

@@ -193,7 +193,7 @@ inline const PrimitivePtr kPrimSoftmax = std::make_shared<Primitive>("Softmax");
inline const PrimitivePtr kPrimSparseSoftmaxCrossEntropy = std::make_shared<Primitive>("SparseSoftmaxCrossEntropy");
inline const PrimitivePtr kPrimLogSoftmax = std::make_shared<Primitive>("LogSoftmax");
inline const PrimitivePtr kPrimLogSoftmaxGrad = std::make_shared<Primitive>("LogSoftmaxGrad");
inline const PrimitivePtr kPrimLstm = std::make_shared<Primitive>("Lstm");
inline const PrimitivePtr kPrimLstm = std::make_shared<Primitive>("LSTM");
inline const PrimitivePtr kPrimTan = std::make_shared<Primitive>("Tan");
inline const PrimitivePtr kPrimAtan2 = std::make_shared<Primitive>("Atan2");
inline const PrimitivePtr kPrimAtan = std::make_shared<Primitive>("Atan");


Loading…
Cancel
Save