lstm_compute.cu 2.3 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,
Y
Yu Yang 已提交
27 28
                      const std::string& gate_act, const std::string& cell_act,
                      const 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
  static void compute(const platform::DeviceContext& context,
                      LstmMetaValue<T> value, LstmMetaGrad<T> grad,
Y
Yu Yang 已提交
39 40 41
                      int frame_size, int batch_size,
                      const std::string& gate_act, const std::string& cell_act,
                      const std::string& cand_act) {
42 43 44
    detail::gpu_lstm_backward(context, detail::backward::lstm<T>(), value, grad,
                              frame_size, batch_size, ActiveType(cand_act),
                              ActiveType(gate_act), ActiveType(cell_act));
45 46 47 48
  }
};

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

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