-
Notifications
You must be signed in to change notification settings - Fork 1
/
test_semaphores.cpp
91 lines (77 loc) · 2.65 KB
/
test_semaphores.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#include <iostream>
#include <thread>
#include <chrono>
#include <mutex>
#include <vector>
#include <stdint.h>
#include "semaphore.hpp"
#include "posix_semaphore.hpp"
#include "lightweight_semphore.hpp"
using LightSemaphore = LightweightSemaphore<Semaphore>;
using LightPosixSemaphore = LightweightSemaphore<PosixSemaphore>;
template <typename SemaphoreType>
void wait(SemaphoreType &semaphore, int iterations = 1000000)
{
for (int i = 0; i < iterations; ++i)
{
semaphore.wait();
}
}
template <typename SemaphoreType>
void signal(SemaphoreType &semaphore, int iterations = 1000000)
{
for (int i = 0; i < iterations; ++i)
{
semaphore.post();
}
}
template <typename SemaphoreType>
void test(int iterations = 1000000, int n = 4)
{
SemaphoreType semaphore;
std::vector<std::thread> threads;
threads.reserve(2 * n);
for (int i = 0; i < n; ++i)
{
threads.emplace_back(wait<SemaphoreType>, std::ref(semaphore), iterations);
threads.emplace_back(signal<SemaphoreType>, std::ref(semaphore), iterations);
}
for (auto &thread : threads)
{
thread.join();
}
}
int main(int argc, char **argv)
{
int iterations = 1000000;
int n = 8;
{
auto start = std::chrono::high_resolution_clock::now();
test<Semaphore>(iterations, n);
auto end = std::chrono::high_resolution_clock::now();
auto elapsed = std::chrono::duration_cast<std::chrono::milliseconds>(end - start);
std::cout << "Semaphore test: time " << elapsed.count() << "ms" << std::endl;
}
{
auto start = std::chrono::high_resolution_clock::now();
test<PosixSemaphore>(iterations, n);
auto end = std::chrono::high_resolution_clock::now();
auto elapsed = std::chrono::duration_cast<std::chrono::milliseconds>(end - start);
std::cout << "PosixSemaphore test: time " << elapsed.count() << "ms" << std::endl;
}
{
auto start = std::chrono::high_resolution_clock::now();
test<LightSemaphore>(iterations, n);
auto end = std::chrono::high_resolution_clock::now();
auto elapsed = std::chrono::duration_cast<std::chrono::milliseconds>(end - start);
std::cout << "LightSemaphore test: time " << elapsed.count() << "ms" << std::endl;
}
{
auto start = std::chrono::high_resolution_clock::now();
test<LightPosixSemaphore>(iterations, n);
auto end = std::chrono::high_resolution_clock::now();
auto elapsed = std::chrono::duration_cast<std::chrono::milliseconds>(end - start);
std::cout << "LightPosixSemaphore test: time " << elapsed.count() << "ms" << std::endl;
}
return 0;
}