distributed_push_sparse_op.h 5.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* 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 <algorithm>
#include <string>
#include <vector>
16

17
#include "paddle/fluid/distributed/ps/wrapper/fleet.h"
18 19 20
#include "paddle/fluid/framework/data_type.h"
#include "paddle/fluid/framework/op_registry.h"
#include "paddle/fluid/framework/tensor_util.h"
21
#include "paddle/phi/kernels/funcs/math_function.h"
22 23 24 25 26 27 28 29 30 31 32 33 34

namespace paddle {
namespace operators {

template <typename DeviceContext, typename T>
class DistributedPushSparseKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext &context) const override {
    auto &scope = context.scope();

    auto padding_idx = context.Attr<int64_t>("padding_idx");
    auto table_id = context.Attr<int>("table_id");
    auto emb_dim = context.Attr<int>("size");
35
    auto use_cvm_op = context.Attr<bool>("use_cvm_op");
36
    auto slots = context.Attr<std::vector<int>>("slots");
37 38 39 40 41 42

    auto inputs = context.MultiInput<framework::LoDTensor>("Ids");
    auto shows = context.Input<framework::LoDTensor>("Shows");
    auto clks = context.Input<framework::LoDTensor>("Clicks");
    auto outputs = context.MultiOutput<framework::LoDTensor>("Outputs");

43
    auto fleet = distributed::FleetWrapper::GetInstance();
44 45

    if (platform::is_cpu_place(context.GetPlace())) {
46 47
      fleet->PushSparseFromTensorAsync(static_cast<uint64_t>(table_id),
                                       emb_dim,
48
                                       static_cast<uint64_t>(padding_idx),
49 50
                                       context.GetPlace(),
                                       &inputs,
51
                                       slots,
52 53 54 55
                                       shows,
                                       clks,
                                       &outputs,
                                       use_cvm_op);
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
    } else {
      auto inputs_variable = context.MultiInputVar("Ids");
      auto outputs_variable = context.MultiOutputVar("Outputs");
      auto inputs_name = context.InputNames("Ids");
      auto outputs_name = context.OutputNames("Outputs");

      auto cpu_place = platform::CPUPlace();
      framework::Scope *tmp_scope = scope.NewTmpScope().release();

      std::vector<const framework::LoDTensor *> tmp_input_vec;
      auto input_var_size = inputs_variable.size();
      std::vector<framework::LoDTensor *> tmp_output_vec;
      auto output_var_size = outputs_variable.size();

      // create temp input
      for (size_t idx = 0; idx < input_var_size; ++idx) {
        framework::Variable *tmp_input_var = tmp_scope->Var(inputs_name[idx]);
        framework::LoDTensor *tmp_input_tensor =
            tmp_input_var->GetMutable<framework::LoDTensor>();
        framework::TensorCopy(inputs_variable[idx]->Get<framework::LoDTensor>(),
76 77
                              cpu_place,
                              context.device_context(),
78 79 80 81
                              tmp_input_tensor);
        tmp_input_vec.push_back(tmp_input_tensor);
      }

Y
yaoxuefeng 已提交
82 83 84 85 86 87
      framework::Variable *tmp_shows_var = tmp_scope->Var("Shows");
      framework::LoDTensor *tmp_shows_tensor =
          tmp_shows_var->GetMutable<framework::LoDTensor>();
      framework::Variable *tmp_clicks_var = tmp_scope->Var("Clicks");
      framework::LoDTensor *tmp_clicks_tensor =
          tmp_clicks_var->GetMutable<framework::LoDTensor>();
88 89 90 91
      framework::TensorCopy(
          *shows, cpu_place, context.device_context(), tmp_shows_tensor);
      framework::TensorCopy(
          *clks, cpu_place, context.device_context(), tmp_clicks_tensor);
Y
yaoxuefeng 已提交
92

93 94 95 96 97 98 99 100 101 102
      // create temp output
      for (size_t idx = 0; idx < output_var_size; ++idx) {
        framework::Variable *tmp_output_var = tmp_scope->Var(outputs_name[idx]);
        framework::LoDTensor *tmp_output_tensor =
            tmp_output_var->GetMutable<framework::LoDTensor>();
        tmp_output_tensor->Resize(outputs[idx]->dims());
        tmp_output_vec.push_back(tmp_output_tensor);
      }

      // use fleet->PullSparse
103 104 105 106 107
      fleet->PushSparseFromTensorAsync(static_cast<uint64_t>(table_id),
                                       emb_dim,
                                       static_cast<uint64_t>(padding_idx),
                                       context.GetPlace(),
                                       &tmp_input_vec,
108
                                       slots,
109 110 111
                                       tmp_shows_tensor,
                                       tmp_clicks_tensor,
                                       &tmp_output_vec);
112 113 114 115 116 117 118

      // cp temp to origin
      for (size_t idx = 0; idx < output_var_size; ++idx) {
        framework::Variable *tmp_output_var = tmp_scope->Var(outputs_name[idx]);
        framework::LoDTensor *tmp_output_tensor =
            tmp_output_var->GetMutable<framework::LoDTensor>();
        framework::TensorCopy(
119 120 121
            *tmp_output_tensor,
            context.GetPlace(),
            context.device_context(),
122 123 124 125 126 127 128 129 130
            outputs_variable[idx]->GetMutable<framework::LoDTensor>());
      }
      delete tmp_scope;
    }
  }
};

}  // namespace operators
}  // namespace paddle