/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved. 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 #include "paddle/fluid/framework/eigen.h" #include "paddle/fluid/framework/lod_tensor_array.h" #include "paddle/fluid/framework/op_registry.h" #include "paddle/fluid/operators/math/math_function.h" #include "paddle/fluid/operators/math/selected_rows_functor.h" namespace paddle { namespace operators { using Tensor = framework::Tensor; using SelectedRows = framework::SelectedRows; using LoDTensor = framework::LoDTensor; template using EigenVector = framework::EigenVector; template void SelectedRowsCompute(const framework::ExecutionContext &context) { auto in_vars = context.MultiInputVar("X"); auto out_var = context.OutputVar("Out"); bool in_place = out_var == in_vars[0]; if (in_place && in_vars.size() < 2) { return; } std::vector inputs; SelectedRows temp_in0; if (in_place) { auto &in0 = in_vars[0]->Get(); temp_in0.set_height(in0.height()); temp_in0.set_rows(in0.rows()); framework::TensorCopy(in0.value(), in0.place(), context.device_context(), temp_in0.mutable_value()); inputs.push_back(&temp_in0); for (size_t i = 1; i < in_vars.size(); ++i) { auto &in = in_vars[i]->Get(); if (in.rows().size() > 0) { inputs.push_back(&in); } } } else { for (auto &in_var : in_vars) { auto &in = in_var->Get(); if (in.rows().size() > 0) { inputs.push_back(&in_var->Get()); } } } auto *out = context.Output("Out"); out->mutable_rows()->clear(); bool has_data = false; for (auto &in : inputs) { if (in->rows().size() > 0) { has_data = true; break; } } if (has_data) { math::scatter::MergeAdd merge_add; merge_add(context.template device_context(), inputs, out); out->SyncIndex(); } else { // no data, just set a empty out tensor. out->mutable_value()->mutable_data(framework::make_ddim({0}), context.GetPlace()); } } template void LodTensorArrayCompute(const framework::ExecutionContext &context) { auto in_vars = context.MultiInputVar("X"); auto out_var = context.OutputVar("Out"); bool in_place = out_var == in_vars[0]; auto &out_array = *out_var->GetMutable(); for (size_t i = in_place ? 1 : 0; i < in_vars.size(); ++i) { PADDLE_ENFORCE_EQ(in_vars[i]->IsType(), true, platform::errors::InvalidArgument( "Only support all inputs are TensorArray, " "but inputs[%d] is not TensorArray.", i)); auto &in_array = in_vars[i]->Get(); for (size_t i = 0; i < in_array.size(); ++i) { if (in_array[i].IsInitialized() && (in_array[i].numel() != 0)) { if (i >= out_array.size()) { out_array.resize(i + 1); } if (!out_array[i].IsInitialized() || (out_array[i].numel() == 0)) { framework::TensorCopy(in_array[i], in_array[i].place(), context.device_context(), &out_array[i]); out_array[i].set_lod(in_array[i].lod()); } else { PADDLE_ENFORCE_EQ( out_array[i].lod(), in_array[i].lod(), platform::errors::InvalidArgument( "The lod message between inputs[%d] and" " outputs[%d] must be same, but now is not same.", i, i)); auto in = EigenVector::Flatten(in_array[i]); auto result = EigenVector::Flatten(out_array[i]); result.device(*context.template device_context() .eigen_device()) = result + in; } } } } } template class SumKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext &context) const override { auto in_vars = context.MultiInputVar("X"); size_t in_num = in_vars.size(); auto out_var = context.OutputVar("Out"); bool in_place = out_var == in_vars[0]; if (out_var->IsType()) { auto *out = out_var->GetMutable(); auto *out_ptr = out->mutable_data(context.GetPlace()); if (in_num >= 1 && in_vars[0]->IsType()) { auto &in_0_tensor = in_vars[0]->Get(); if (in_0_tensor.numel() > 0) { in_place = (in_0_tensor.data() == out_ptr); } } auto result = EigenVector::Flatten(*out); auto &place = *context.template device_context().eigen_device(); int start = in_place ? 1 : 0; if (!in_place) { if ((in_num >= 2) && in_vars[0]->IsType() && in_vars[1]->IsType()) { auto &in_0 = in_vars[0]->Get(); auto &in_1 = in_vars[1]->Get(); if (in_0.numel() && in_1.numel()) { auto in_0_e = EigenVector::Flatten(in_0); auto in_1_e = EigenVector::Flatten(in_1); result.device(place) = in_0_e + in_1_e; start = 2; } } if (start != 2) { math::SetConstant constant_functor; constant_functor(context.template device_context(), out, static_cast(0)); } } math::SelectedRowsAddToTensor functor; // If in_place, just skip the first tensor for (size_t i = start; i < in_num; i++) { if (in_vars[i]->IsType()) { auto &in_t = in_vars[i]->Get(); if (in_t.numel() == 0) { continue; } auto in = EigenVector::Flatten(in_t); result.device(place) = result + in; } else if (in_vars[i]->IsType()) { auto &in_t = in_vars[i]->Get(); functor(context.template device_context(), in_t, out); } else { PADDLE_THROW("Variable type must be LoDTensor/SelectedRows."); } } } else if (out_var->IsType()) { SelectedRowsCompute(context); } else if (out_var->IsType()) { LodTensorArrayCompute(context); } else { PADDLE_THROW("Unexpected branch, output variable type is %s", framework::ToTypeName(out_var->Type())); } } }; } // namespace operators } // namespace paddle