heter_ps.cu 3.2 KB
Newer Older
T
Thunderbrook 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* Copyright (c) 2020 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. */

#include <vector>
16

T
Thunderbrook 已提交
17 18
#include "paddle/fluid/framework/fleet/heter_ps/heter_ps.h"

T
Thunderbrook 已提交
19
#ifdef PADDLE_WITH_HETERPS
T
Thunderbrook 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37

namespace paddle {
namespace framework {

HeterPsBase* HeterPsBase::get_instance(
    size_t capacity, std::shared_ptr<HeterPsResource> resource) {
  return new HeterPs(capacity, resource);
}

HeterPs::HeterPs(size_t capacity, std::shared_ptr<HeterPsResource> resource) {
  comm_ =
      std::make_shared<HeterComm<FeatureKey, FeatureValue, FeaturePushValue>>(
          capacity, resource);
  opt_ = Optimizer<FeatureValue, FeaturePushValue>();
}

HeterPs::~HeterPs() {}

38 39 40
void HeterPs::pull_sparse(int num,
                          FeatureKey* d_keys,
                          FeatureValue* d_vals,
T
Thunderbrook 已提交
41 42 43 44
                          size_t len) {
  comm_->pull_sparse(num, d_keys, d_vals, len);
}

45 46 47 48 49 50
void HeterPs::build_ps(int num,
                       FeatureKey* h_keys,
                       FeatureValue* h_vals,
                       size_t len,
                       size_t chunk_size,
                       int stream_num) {
T
Thunderbrook 已提交
51 52 53
  comm_->build_ps(num, h_keys, h_vals, len, chunk_size, stream_num);
}

54 55 56 57 58 59
void HeterPs::build_ps(int num,
                       FeatureKey* h_keys,
                       char* pool,
                       size_t len,
                       size_t feature_value_size,
                       size_t chunk_size,
Y
yaoxuefeng 已提交
60
                       int stream_num) {
61 62
  comm_->build_ps(
      num, h_keys, pool, len, feature_value_size, chunk_size, stream_num);
Y
yaoxuefeng 已提交
63 64
}

T
Thunderbrook 已提交
65 66 67 68
int HeterPs::get_index_by_devid(int devid) {
  return comm_->get_index_by_devid(devid);
}

Z
zmxdream 已提交
69 70 71 72 73 74 75 76
void HeterPs::set_sparse_sgd(const OptimizerConfig& optimizer_config) {
  comm_->set_sparse_sgd(optimizer_config);
}

void HeterPs::set_embedx_sgd(const OptimizerConfig& optimizer_config) {
  comm_->set_embedx_sgd(optimizer_config);
}

T
Thunderbrook 已提交
77
void HeterPs::end_pass() { comm_->end_pass(); }
T
Thunderbrook 已提交
78 79 80

void HeterPs::show_one_table(int gpu_num) { comm_->show_one_table(gpu_num); }

81 82 83 84
void HeterPs::push_sparse(int num,
                          FeatureKey* d_keys,
                          FeaturePushValue* d_grads,
                          size_t len) {
T
Thunderbrook 已提交
85 86
  comm_->push_sparse(num, d_keys, d_grads, len, opt_);
  // comm_->push_sparse_multi_node(num, d_keys, d_grads, len, opt_);
87 88 89 90 91 92
}

void HeterPs::set_nccl_comm_and_size(const std::vector<ncclComm_t>& inner_comms,
                                     const std::vector<ncclComm_t>& inter_comms,
                                     int comm_size) {
  comm_->set_nccl_comm_and_size(inner_comms, inter_comms, comm_size);
T
Thunderbrook 已提交
93 94
}

Y
yaoxuefeng 已提交
95 96 97 98
void HeterPs::set_multi_mf_dim(int multi_mf_dim, int max_mf_dim) {
  comm_->set_multi_mf_dim(multi_mf_dim, max_mf_dim);
}

T
Thunderbrook 已提交
99 100 101
}  // end namespace framework
}  // end namespace paddle
#endif