threadpool_test.cc 1.7 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
Y
Yancey 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14

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. */

15
#include "paddle/fluid/framework/threadpool.h"
16

Y
Yancey 已提交
17
#include <gtest/gtest.h>
18

Y
Yancey 已提交
19
#include <atomic>
D
dzhwinter 已提交
20

Y
Yancey 已提交
21 22
namespace framework = paddle::framework;

23 24 25 26
void do_sum(std::vector<std::future<void>>* fs,
            std::mutex* mu,
            std::atomic<int>* sum,
            int cnt) {
Y
Yancey 已提交
27
  for (int i = 0; i < cnt; ++i) {
X
fix  
Xin Pan 已提交
28
    std::lock_guard<std::mutex> l(*mu);
29
    fs->push_back(phi::Async([sum]() { sum->fetch_add(1); }));
Y
Yancey 已提交
30 31 32 33 34
  }
}

TEST(ThreadPool, ConcurrentInit) {
  framework::ThreadPool* pool;
35
  int n = 50;
Y
Yancey 已提交
36
  std::vector<std::thread> threads;
37
  for (int i = 0; i < n; ++i) {
Y
Yancey 已提交
38 39 40 41 42 43 44 45
    std::thread t([&pool]() { pool = framework::ThreadPool::GetInstance(); });
    threads.push_back(std::move(t));
  }
  for (auto& t : threads) {
    t.join();
  }
}

46
TEST(ThreadPool, ConcurrentRun) {
Y
Yancey 已提交
47 48
  std::atomic<int> sum(0);
  std::vector<std::thread> threads;
X
fix  
Xin Pan 已提交
49 50
  std::vector<std::future<void>> fs;
  std::mutex fs_mu;
51
  int n = 50;
Y
Yancey 已提交
52
  // sum = (n * (n + 1)) / 2
53
  for (int i = 1; i <= n; ++i) {
X
fix  
Xin Pan 已提交
54
    std::thread t(do_sum, &fs, &fs_mu, &sum, i);
Y
Yancey 已提交
55 56 57 58 59
    threads.push_back(std::move(t));
  }
  for (auto& t : threads) {
    t.join();
  }
X
fix  
Xin Pan 已提交
60 61 62
  for (auto& t : fs) {
    t.wait();
  }
63
  EXPECT_EQ(sum, ((n + 1) * n) / 2);
Y
Yancey 已提交
64
}