threadpool_test.cc 2.8 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 15 16

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 <gtest/gtest.h>
#include <atomic>
D
dzhwinter 已提交
17

18
#include "paddle/fluid/framework/threadpool.h"
Y
Yancey 已提交
19 20 21

namespace framework = paddle::framework;

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

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

43
TEST(ThreadPool, ConcurrentRun) {
Y
Yancey 已提交
44 45
  std::atomic<int> sum(0);
  std::vector<std::thread> threads;
X
fix  
Xin Pan 已提交
46 47
  std::vector<std::future<void>> fs;
  std::mutex fs_mu;
48
  int n = 50;
Y
Yancey 已提交
49
  // sum = (n * (n + 1)) / 2
50
  for (int i = 1; i <= n; ++i) {
X
fix  
Xin Pan 已提交
51
    std::thread t(do_sum, &fs, &fs_mu, &sum, i);
Y
Yancey 已提交
52 53 54 55 56
    threads.push_back(std::move(t));
  }
  for (auto& t : threads) {
    t.join();
  }
X
fix  
Xin Pan 已提交
57 58 59
  for (auto& t : fs) {
    t.wait();
  }
60
  EXPECT_EQ(sum, ((n + 1) * n) / 2);
Y
Yancey 已提交
61
}
Y
Yancey1989 已提交
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
static int64_t GetTS() {
  struct timeval tp;
  gettimeofday(&tp, NULL);
  return tp.tv_sec * 1000000 + tp.tv_usec;
}

void multi_call(std::function<void()> call) {
  for (int i = 0; i < 500; ++i) {
    call();
  }
}

TEST(ThreadPool, PERFORMANCE) {
  auto sum = [] {
    int a = 0;
    for (int i = 0; i < 1000; ++i) {
      a += i;
    }
  };
  // framework::ThreadPool *pool = new framework::ThreadPool(2);
  int64_t start = GetTS();
  for (int i = 0; i < 1000; ++i) {
    // int64_t s = GetTS();
    framework::Async(std::move(sum));
    // pool->Run(std::move(sum));
    // VLOG(5) << "push to pool spent : " << GetTS() - s << " (us).";
  }
  VLOG(5) << "pool spent: " << GetTS() - start << " (us).";
  start = GetTS();
  for (int i = 0; i < 1000; ++i) {
    sum();
  }
  VLOG(5) << "sequence call spent: " << GetTS() - start << " (us).";
  std::vector<std::thread> threads;
  start = GetTS();
  for (int i = 0; i < 2; ++i) {
    std::thread t(multi_call, std::ref(sum));
    threads.push_back(std::move(t));
  }
  for (auto& thread : threads) {
    thread.join();
  }
  VLOG(5) << "two threads spent: " << GetTS() - start << " (us).";
}