-
Notifications
You must be signed in to change notification settings - Fork 416
/
Copy pathgraph_atomic_bench.rb
executable file
·71 lines (58 loc) · 1.73 KB
/
graph_atomic_bench.rb
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
#!/usr/bin/env ruby
#$: << File.expand_path('../../lib', __FILE__)
require 'optparse'
conf = {
:vary => "threads",
:lock => "atomic"
}
OptionParser.new do |opts|
opts.on("-l", "--lock atomic|mutex") do |l|
conf[:lock] = l
end
opts.on("-v", "--vary threads|speed") do |v|
conf[:vary] = v
end
opts.on("-h", "--help"){ puts opts; exit }
end.parse!(ARGV)
result = File.open("results_#{conf[:lock]}_#{conf[:vary]}.csv", "w")
if conf[:vary] == "threads"
# Varies the number of concurrent threads that update the value.
#
# There is a total count of 1mio updates that is distributed
# between the number of threads.
#
# A doubled number of threads is used so that even adds 1 and odd subtracts 1.
# This avoids creating instances for Bignum since the number should
# stay in the Fixnum range.
#
(1..100).each do |i|
i = i * 2
ret = []
10.times do
ret << `ruby #{File.dirname(__FILE__)}/benchmark_atomic_1.rb -l #{conf[:lock]} -t #{i}`.to_f
end
line = ([i] + ret).join(', ')
puts line
result.puts line
end
elsif conf[:vary] == "speed"
# Varies the execution time of the update block
# by using long calculation (MD5)
#
# NOTE: Thread.pass and sleep() are not usable by the atomic
# lock. It needs to run the whole block without hitting
# another atomic update otherwise it has to retry
#
# The expected result is that the atomic lock's performance
# will hit a certain threshold where it will be worse than mutexes.
#
(1..30).each do |i|
ret = []
10.times do
ret << `ruby #{File.dirname(__FILE__)}/benchmark_atomic_1.rb -l #{conf[:lock]} -s #{i}`.to_f
end
line = ([i] + ret).join(', ')
puts line
result.puts line
end
end