memory_sparse_table_test.cc 5.7 KB
Newer Older
Z
zhaocaibei123 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/* 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 <ThreadPool.h>

#include <unistd.h>
#include <string>
#include <thread>  // NOLINT

#include "google/protobuf/text_format.h"
#include "gtest/gtest.h"
#include "paddle/fluid/distributed/ps.pb.h"
24 25
#include "paddle/fluid/distributed/ps/table/memory_sparse_table.h"
#include "paddle/fluid/distributed/ps/table/table.h"
Z
zhaocaibei123 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38

namespace paddle {
namespace distributed {

TEST(MemorySparseTable, SGD) {
  int emb_dim = 8;
  int trainers = 2;

  TableParameter table_config;
  table_config.set_table_class("MemorySparseTable");
  table_config.set_shard_num(10);
  FsClientParameter fs_config;
  Table *table = new MemorySparseTable();
Z
zhaocaibei123 已提交
39
  table->SetShard(0, 1);
Z
zhaocaibei123 已提交
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68

  TableAccessorParameter *accessor_config = table_config.mutable_accessor();
  accessor_config->set_accessor_class("CtrCommonAccessor");
  accessor_config->set_fea_dim(11);
  accessor_config->set_embedx_dim(8);
  accessor_config->set_embedx_threshold(5);
  accessor_config->mutable_ctr_accessor_param()->set_nonclk_coeff(0.2);
  accessor_config->mutable_ctr_accessor_param()->set_click_coeff(1);
  accessor_config->mutable_ctr_accessor_param()->set_base_threshold(0.5);
  accessor_config->mutable_ctr_accessor_param()->set_delta_threshold(0.2);
  accessor_config->mutable_ctr_accessor_param()->set_delta_keep_days(16);
  accessor_config->mutable_ctr_accessor_param()->set_show_click_decay_rate(
      0.99);

  accessor_config->mutable_embed_sgd_param()->set_name("SparseNaiveSGDRule");
  auto *naive_param =
      accessor_config->mutable_embed_sgd_param()->mutable_naive();
  naive_param->set_learning_rate(0.1);
  naive_param->set_initial_range(0.3);
  naive_param->add_weight_bounds(-10.0);
  naive_param->add_weight_bounds(10.0);

  accessor_config->mutable_embedx_sgd_param()->set_name("SparseNaiveSGDRule");
  naive_param = accessor_config->mutable_embedx_sgd_param()->mutable_naive();
  naive_param->set_learning_rate(0.1);
  naive_param->set_initial_range(0.3);
  naive_param->add_weight_bounds(-10.0);
  naive_param->add_weight_bounds(10.0);

Z
zhaocaibei123 已提交
69
  auto ret = table->Initialize(table_config, fs_config);
Z
zhaocaibei123 已提交
70 71 72 73 74 75 76
  ASSERT_EQ(ret, 0);

  // pull parameters for create and check
  std::vector<uint64_t> init_keys = {0, 1, 2, 3, 4};
  std::vector<uint32_t> init_fres = {1, 1, 1, 1, 1};

  std::vector<float> init_values;
77
  init_values.resize(init_keys.size() * (emb_dim + 3));
Z
zhaocaibei123 已提交
78
  auto value = PullSparseValue(init_keys, init_fres, emb_dim);
79 80 81 82 83 84 85

  TableContext table_context;
  table_context.value_type = Sparse;
  table_context.pull_context.pull_value = value;
  table_context.pull_context.values = init_values.data();
  table->Pull(table_context);
  // table->PullSparse(init_values.data(), value);
Z
zhaocaibei123 已提交
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117

  // for check
  std::vector<float> total_gradients;
  total_gradients.resize(init_keys.size() * (4 + emb_dim));
  memset(total_gradients.data(), 0, sizeof(float) * total_gradients.size());

  // push gradient
  std::vector<std::vector<uint64_t>> trainer_keys;
  std::vector<std::vector<float>> trainer_gradient_values;
  trainer_keys.resize(trainers);
  trainer_gradient_values.resize(trainers);
  float start = 0.0;
  for (int i = 0; i < trainers; i++) {
    start = 0.0;
    trainer_keys[i] = init_keys;
    for (size_t j = 0; j < trainer_keys[i].size(); j++) {
      auto id = trainer_keys[i][j];
      for (int k = 0; k < emb_dim + 4; k++) {
        trainer_gradient_values[i].push_back(start);
        total_gradients[id * (emb_dim + 4) + k] += start;
        start += 0.1;
      }
    }
  }

  std::shared_ptr<::ThreadPool> pool_ =
      std::make_shared<::ThreadPool>(trainers);
  std::vector<std::future<void>> task_status;
  for (int i = 0; i < trainers; i++) {
    auto &push_keys = trainer_keys[i];
    auto &push_values = trainer_gradient_values[i];
    auto task = [table, &push_keys, &push_values] {
118 119 120 121 122 123 124 125
      TableContext table_context;
      table_context.value_type = Sparse;
      table_context.push_context.keys = push_keys.data();
      table_context.push_context.values = push_values.data();
      table_context.num = push_keys.size();
      table->Push(table_context);
      // table->PushSparse(push_keys.data(), push_values.data(),
      // push_keys.size());
Z
zhaocaibei123 已提交
126 127 128 129 130 131 132 133
    };
    task_status.push_back(pool_->enqueue(std::move(task)));
  }
  for (auto &status : task_status) {
    status.wait();
  }

  std::vector<float> pull_values;
134
  pull_values.resize(init_keys.size() * (emb_dim + 3));
135 136 137 138 139 140 141

  TableContext table_context1;
  table_context1.value_type = Sparse;
  table_context1.pull_context.pull_value = value;
  table_context1.pull_context.values = pull_values.data();
  table->Pull(table_context1);
  // table->PullSparse(pull_values.data(), value);
Z
zhaocaibei123 已提交
142 143

  for (size_t i = 0; i < init_keys.size(); ++i) {
144
    for (size_t j = 2; j < emb_dim + 3; ++j) {
Z
zhaocaibei123 已提交
145 146 147 148 149 150 151 152 153
      auto update_val = init_values[i * (emb_dim + 1) + j] -
                        0.1 * total_gradients[3 + i * (emb_dim + 4) + j];
      VLOG(3) << total_gradients[i * (emb_dim + 4) + j + 3] << ":"
              << init_values[i * (emb_dim + 1) + j];
      VLOG(3) << update_val << ": " << pull_values[i * (emb_dim + 1) + j];
    }
  }

  MemorySparseTable *ctr_table = dynamic_cast<MemorySparseTable *>(table);
Z
zhaocaibei123 已提交
154
  ctr_table->SaveLocalFS("./work/table.save", "0", "test");
Z
zhaocaibei123 已提交
155 156 157 158
}

}  // namespace distributed
}  // namespace paddle