lstm_compute.cu 2.4 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

namespace paddle {
namespace operators {
namespace math {

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

template <class T>
Q
QI JUN 已提交
37 38
struct LstmUnitGradFunctor<platform::CUDADeviceContext, T> {
  static void compute(const platform::CUDADeviceContext& context,
39
                      LstmMetaValue<T> value, LstmMetaGrad<T> grad,
Y
Yu Yang 已提交
40
                      int frame_size, int batch_size,
41 42 43
                      const detail::ActivationType& gate_act,
                      const detail::ActivationType& cell_act,
                      const detail::ActivationType& cand_act) {
44
    detail::gpu_lstm_backward(context, detail::backward::lstm<T>(), value, grad,
D
dangqingqing 已提交
45 46
                              frame_size, batch_size, cand_act, gate_act,
                              cell_act);
47 48 49
  }
};

Q
QI JUN 已提交
50 51 52 53
template class LstmUnitFunctor<platform::CUDADeviceContext, float>;
template class LstmUnitFunctor<platform::CUDADeviceContext, double>;
template class LstmUnitGradFunctor<platform::CUDADeviceContext, float>;
template class LstmUnitGradFunctor<platform::CUDADeviceContext, double>;
D
dangqingqing 已提交
54 55 56 57

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