/* Copyright (c) 2018 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 #include #include #include "paddle/fluid/framework/op_registry.h" #include "paddle/fluid/operators/math/selected_rows_functor.h" namespace paddle { namespace operators { template class SplitIdsOpKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext &ctx) const override { auto place = ctx.GetPlace(); if (!platform::is_cpu_place(place)) { PADDLE_THROW("SplitIds do not support GPU kernel"); } const auto ids_vars = ctx.MultiInputVar("Ids"); PADDLE_ENFORCE_GT(ids_vars.size(), 0, "The number of Ids should > 0"); auto *ids_var = ids_vars[0]; if (ids_var->IsType()) { int batch_size = 0; const auto ids_tensors = ctx.MultiInput("Ids"); for (size_t i = 0; i < ids_tensors.size(); ++i) { batch_size += ids_tensors[i]->dims()[0]; } VLOG(40) << "Get Total BatchSize is: " << batch_size; std::vector all_ids(batch_size); int offset = 0; for (size_t i = 0; i < ids_tensors.size(); ++i) { const auto *ids = ids_tensors[i]; std::memcpy(all_ids.data() + offset, ids->data(), ids->numel() * sizeof(T)); offset += ids->numel(); } std::set st(all_ids.begin(), all_ids.end()); all_ids.assign(st.begin(), st.end()); auto outs = ctx.MultiOutput("Out"); const size_t shard_num = outs.size(); std::vector> out_ids; out_ids.resize(outs.size()); // split id by their shard_num. for (size_t i = 0; i < all_ids.size(); ++i) { T id = all_ids[i]; size_t shard_id = static_cast(id) % shard_num; out_ids[shard_id].push_back(id); } // create tensor for each shard and send to parameter server for (size_t i = 0; i < out_ids.size(); ++i) { auto *shard_t = outs[i]; std::vector ids = out_ids[i]; auto *shard_data = shard_t->mutable_data( framework::make_ddim({static_cast(ids.size()), 1}), place); for (size_t i = 0; i < ids.size(); ++i) { shard_data[i] = ids[i]; } } } else if (ids_var->IsType()) { const auto *ids_selected_rows = ctx.Input("Ids"); auto &ids_dims = ids_selected_rows->value().dims(); PADDLE_ENFORCE_EQ(ids_dims[0], static_cast(ids_selected_rows->rows().size()), ""); const T *ids_data = ids_selected_rows->value().data(); const auto &ids_rows = ids_selected_rows->rows(); auto outs = ctx.MultiOutput("Out"); const size_t shard_num = outs.size(); for (auto &out : outs) { out->mutable_rows()->clear(); } // get rows for outputs std::unordered_map id_to_index; for (size_t i = 0; i < ids_rows.size(); ++i) { id_to_index[ids_rows[i]] = i; size_t shard_id = static_cast(ids_rows[i]) % shard_num; outs[shard_id]->mutable_rows()->push_back(ids_rows[i]); } int64_t row_width = ids_dims[1]; for (auto &out : outs) { out->set_height(ids_selected_rows->height()); framework::DDim ddim = framework::make_ddim( {static_cast(out->rows().size()), row_width}); T *output = out->mutable_value()->mutable_data(ddim, place); for (int64_t i = 0; i < ddim[0]; ++i) { memcpy(output + i * row_width, ids_data + id_to_index[out->rows()[i]] * row_width, row_width * sizeof(T)); } } } else { PADDLE_THROW( "% should be LoDTensor or SelectedRows, but the received type is %s", ctx.Inputs("Ids")[0], ids_var->Type().name()); } } }; } // namespace operators } // namespace paddle