lstm_compute.cu 2.2 KB
Newer Older
D
dangqingqing 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */

15
#include "paddle/operators/math/detail/lstm_gpu_kernel.h"
D
dangqingqing 已提交
16
#include "paddle/operators/math/detail/lstm_kernel.h"
17
#include "paddle/operators/math/lstm_compute.h"
D
dangqingqing 已提交
18 19 20 21 22 23 24

namespace paddle {
namespace operators {
namespace math {

template <class T>
struct LstmUnitFunctor<platform::GPUPlace, T> {
25 26
  static void compute(const platform::DeviceContext& context,
                      LstmMetaValue<T> value, int frame_size, int batch_size,
D
dangqingqing 已提交
27 28
                      std::string gate_act, std::string cell_act,
                      std::string cand_act) {
29 30 31
    detail::gpu_lstm_forward<T>(context, detail::forward::lstm<T>(), value,
                                frame_size, batch_size, ActiveType(cand_act),
                                ActiveType(gate_act), ActiveType(cell_act));
D
dangqingqing 已提交
32 33 34 35 36
  }
};

template <class T>
struct LstmUnitGradFunctor<platform::GPUPlace, T> {
37 38 39
  static void compute(const platform::DeviceContext& context,
                      LstmMetaValue<T> value, LstmMetaGrad<T> grad,
                      int frame_size, int batch_size, std::string gate_act,
D
dangqingqing 已提交
40
                      std::string cell_act, std::string cand_act) {
41 42 43
    detail::gpu_lstm_backward(context, detail::backward::lstm<T>(), value, grad,
                              frame_size, batch_size, ActiveType(cand_act),
                              ActiveType(gate_act), ActiveType(cell_act));
44 45 46 47
  }
};

template class LstmUnitFunctor<platform::GPUPlace, float>;
48 49
template class LstmUnitFunctor<platform::GPUPlace, double>;
template class LstmUnitGradFunctor<platform::GPUPlace, float>;
50
template class LstmUnitGradFunctor<platform::GPUPlace, double>;
D
dangqingqing 已提交
51 52 53 54

}  // namespace math
}  // namespace operators
}  // namespace paddle