/* 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 #include "paddle/framework/op_registry.h" #include "paddle/operators/math/selected_rows_functor.h" namespace paddle { namespace operators { static int FindOutIdx(int row, const std::vector& height_sections) { int offset = 0; for (size_t i = 0; i < height_sections.size(); ++i) { if (row >= offset && row < (offset + height_sections[i])) { return i; } offset += height_sections[i]; } return -1; } template class SplitSelectedRowsOpKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& ctx) const override { auto* x = ctx.Input("X"); auto outs = ctx.MultiOutput("Out"); auto height_sections = ctx.Attr>("height_sections"); auto x_rows = x->rows(); std::vector> outs_rows_idx; outs_rows_idx.resize(outs.size()); auto row_numel = x->value().numel() / x->value().dims()[0]; auto src = x->value().data(); for (size_t i = 0; i < x_rows.size(); ++i) { int out_idx = FindOutIdx(x_rows[i], height_sections); outs_rows_idx[out_idx].push_back(i); } auto place = ctx.GetPlace(); for (size_t i = 0; i < outs_rows_idx.size(); ++i) { auto rows_idx = outs_rows_idx[i]; if (rows_idx.size() > 0) { auto dims = x->GetCompleteDims(); dims[0] = rows_idx.size(); outs[i]->mutable_value()->mutable_data(dims, x->place()); for (auto idx : rows_idx) { outs[i]->mutable_rows()->push_back(x_rows[idx]); } auto dst = outs[i]->mutable_value()->mutable_data(ctx.GetPlace()); for (size_t j = 0; j < rows_idx.size(); j++) { if (platform::is_cpu_place(place)) { memory::Copy(platform::CPUPlace(), dst + j * row_numel, platform::CPUPlace(), src + rows_idx[j] * row_numel, sizeof(T) * row_numel); } else { #ifdef PADDLE_WITH_CUDA auto stream = ctx.cuda_device_context().stream(); memory::Copy(platform::CUDAPlace(), dst + j * row_numel, platform::CUDAPlace(), src + rows_idx[j] * row_numel, sizeof(T) * row_numel, stream); #else PADDLE_THROW("Paddle is not compiled with GPU"); #endif } } } } } }; } // namespace operators } // namespace paddle