/* 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. */ #pragma once #include "paddle/framework/op_registry.h" #include "paddle/operators/math/lstm_compute.h" #include "paddle/operators/math/math_function.h" #include "paddle/operators/math/sequence2batch.h" namespace paddle { namespace operators { using framework::LoDTensor; using framework::Tensor; template using EigenMatrix = framework::EigenMatrix; template class LSTMKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& ctx) const override { auto* input = ctx.Input("Input"); auto* weight = ctx.Input("Weight"); auto* bias = ctx.Input("Bias"); auto* batch_gate = ctx.Output("BatchGate"); batch_gate->mutable_data(ctx.GetPlace()); auto* hidden_out = ctx.Output("Hidden"); hidden_out->mutable_data(ctx.GetPlace()); auto* cell_out = ctx.Output("Cell"); cell_out->mutable_data(ctx.GetPlace()); // Now the function ShareLoD in InferShape is not implemented. // So copy LoD here. ctx.ShareLoD("Input", "Hidden"); ctx.ShareLoD("Input", "Cell"); bool is_reverse = ctx.Attr("isReverse"); math::LoDTensor2BatchFunctor to_batch; to_batch(ctx.device_context(), *input, *batch_gate, is_reverse); auto in_dims = input->dims(); int frame_size = in_dims[1] / 4; framework::DDim dims({in_dims[0], frame_size}); if (bias) { Eigen::array extents({{1, 4 * frame_size}}); Eigen::array offsets({{0, 0}}); auto b = EigenMatrix::From(*bias); auto gate = EigenMatrix::From(*batch_gate); gate.device(ctx.GetEigenDevice()) = gate + b.slice(offsets, extents) .reshape(Eigen::array({{1, frame_size * 4}})) .broadcast( Eigen::array({{static_cast(in_dims[0]), 1}})); } math::LstmMetaValue lstm_value; T* bias_data = const_cast(bias->data()); // the code styple in LstmMetaValue will be updated later. lstm_value.checkIg = bias_data + 4 * frame_size; lstm_value.checkFg = lstm_value.checkIg + frame_size; lstm_value.checkOg = lstm_value.checkFg + frame_size; lstm_value.prevStateValue = nullptr; framework::LoDTensor batch_out; batch_out.mutable_data(dims, ctx.GetPlace()); framework::LoDTensor batch_cell; batch_cell.mutable_data(dims, ctx.GetPlace()); framework::LoDTensor batch_cell_pre_act; batch_cell_pre_act.mutable_data(dims, ctx.GetPlace()); auto batch_lod = batch_gate->lod()[0]; int num_batch = batch_lod.size() - 1; auto gate_act = ctx.Attr("gateActivation"); auto cell_act = ctx.Attr("cellActivation"); auto cand_act = ctx.Attr("candidateActivation"); for (int n = 0; n < num_batch; n++) { int bstart = batch_lod[n]; int bend = batch_lod[n + 1]; Tensor gate_t = batch_gate->Slice(bstart, bend); Tensor out_t = batch_out.Slice(bstart, bend); Tensor cell_t = batch_cell.Slice(bstart, bend); Tensor cell_pre_act_t = batch_cell_pre_act.Slice(bstart, bend); int cur_batch_size = bend - bstart; if (n != 0) { int pre_h_start = batch_lod[n - 1]; int pre_h_end = pre_h_start + cur_batch_size; auto pre_hidden_t = batch_out.Slice(pre_h_start, pre_h_end); math::matmul(ctx.device_context(), pre_hidden_t, false, *weight, false, static_cast(1.0), &gate_t, static_cast(1.0)); } // else if : support the initial hidden and cell lstm_value.gateValue = gate_t.data(); lstm_value.outputValue = out_t.data(); lstm_value.stateValue = cell_t.data(); lstm_value.stateActiveValue = cell_pre_act_t.data(); math::LstmUnitFunctor::compute(ctx.device_context(), lstm_value, frame_size, cur_batch_size, gate_act, cell_act, cand_act); lstm_value.prevStateValue = lstm_value.stateValue; } math::Batch2LoDTensorFunctor to_seq; batch_out.set_lod(batch_gate->lod()); // restore the output hidden in LoDTensor from the batch hidden to_seq(ctx.device_context(), batch_out, *hidden_out); batch_cell.set_lod(batch_gate->lod()); // restore the output cell state in LoDTensor from the batch cell to_seq(ctx.device_context(), batch_cell, *cell_out); } }; template class LSTMGradKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& ctx) const override {} }; } // namespace operators } // namespace paddle