barrier_table_test.cc 2.1 KB
Newer Older
T
tangwei12 已提交
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 <ThreadPool.h>
16 17
#include <unordered_map>
#include <vector>
T
tangwei12 已提交
18 19
#include "gtest/gtest.h"
#include "paddle/fluid/distributed/ps.pb.h"
20 21
#include "paddle/fluid/distributed/ps/table/common_table.h"
#include "paddle/fluid/distributed/ps/table/table.h"
T
tangwei12 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41

namespace paddle {
namespace distributed {

TEST(BarrierTable, Barrier) {
  int emb_dim = 10;
  int trainers = 2;
  bool sync = true;

  TableParameter table_config;
  table_config.set_table_class("BarrierTable");
  FsClientParameter fs_config;
  Table *table = new BarrierTable();
  TableAccessorParameter *accessor_config = table_config.mutable_accessor();
  accessor_config->set_accessor_class("CommMergeAccessor");
  CommonAccessorParameter *common_config = table_config.mutable_common();
  common_config->set_table_name("barrier_table");
  common_config->set_trainer_num(trainers);
  common_config->set_sync(sync);

Z
zhaocaibei123 已提交
42
  auto ret = table->Initialize(table_config, fs_config);
T
tangwei12 已提交
43 44 45 46

  std::unordered_map<uint32_t, std::shared_ptr<Table>> maps =
      std::unordered_map<uint32_t, std::shared_ptr<Table>>();

Z
zhaocaibei123 已提交
47
  table->SetTableMap(&maps);
T
tangwei12 已提交
48 49 50 51 52 53

  std::shared_ptr<::ThreadPool> pool_ =
      std::make_shared<::ThreadPool>(trainers);
  std::vector<std::future<void>> task_status;

  for (auto x = 0; x < trainers; x++) {
Z
zhaocaibei123 已提交
54
    auto task = [table, x] { table->Barrier(x, 0); };
T
tangwei12 已提交
55 56 57 58 59 60 61 62 63 64 65 66
    task_status.push_back(pool_->enqueue(std::move(task)));
  }

  for (auto &status : task_status) {
    status.wait();
  }

  ASSERT_EQ(ret, 0);
}

}  // namespace distributed
}  // namespace paddle