aboutsummaryrefslogtreecommitdiff
path: root/tests/linda_perf.lua
blob: 96f26f43e4eeab0b5dd20b16fc9c8324e8cb2276 (plain)
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
local config = {nb_user_keepers=1}
local lanes = require "lanes".configure(config)

-- set TEST1, PREFILL1, FILL1, TEST2, PREFILL2, FILL2 from the command line

-- Lua 5.1/5.2 compatibility
local table_unpack = unpack or table.unpack

local finalizer = function(err, stk)
	if err == lanes.cancel_error then
		-- note that we don't get the cancel_error when running wrapped inside a protected call if it doesn't rethrow it
		print("			laneBody after cancel" )
	elseif err then
		print("			laneBody error: "..tostring(err))
	else
		print("			laneBody finalized")
	end
end

-- #################################################################################################
if true then
	do
		print "############################################ tests get/set"
		-- linda:get throughput
		local l = lanes.linda("get/set", 1)
		local batch = {}
		for i = 1,1000 do
			table.insert(batch, i)
		end
		for _,size in ipairs{1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987 } do
			l:set("<->", table_unpack(batch))
			local count = math.floor(20000/math.sqrt(size))
			print("START", "get("..size..") " .. count, " times")
			local t1 = lanes.now_secs()
			for i = 1, count do
				assert (l:get("<->", size) == size)
			end
			print("DURATION = " .. lanes.now_secs() - t1 .. "\n")
		end
	end
	collectgarbage()
end

-- #################################################################################################

-- this lane eats items in the linda one by one
local eater = function( l, loop)
	set_finalizer(finalizer)
	-- wait for start signal
	l:receive( "go")
	-- eat data one by one
	for i = 1, loop do
		local key, val = l:receive( "key")
		-- print("eater:", val)
	end
	-- print "loop is over"
	key, val = l:receive( "done")
	print("eater: done ("..val..")")
	return true
end

-- #################################################################################################

-- this lane eats items in the linda in batches
local gobbler = function( l, loop, batch)
	set_finalizer(finalizer)
	-- wait for start signal
	l:receive( "go")
	-- eat data in batches
	for i = 1, loop/batch do
		l:receive( l.batched, "key", batch)
		-- print("gobbler:", batch)
	end
	print "loop is over"
	key, val = l:receive( "done")
	print("gobbler: done ("..val..")")
	return true
end

-- #################################################################################################

local lane_eater_gen = lanes.gen( "*", {priority = 3}, eater)
local lane_gobbler_gen = lanes.gen( "*", {priority = 3}, gobbler)

-- #################################################################################################

local group_uid = 1

-- main thread writes data while a lane reads it
local function ziva1( preloop, loop, batch)
	-- prefill the linda a bit to increase fifo stress
	local top = math.max( preloop, loop)
	local l = lanes.linda("ziva1("..preloop..":"..loop..":"..batch..")", group_uid)
	group_uid = (group_uid % config.nb_user_keepers) + 1
	local t1 = lanes.now_secs()
	for i = 1, preloop do
		l:send( "key", i)
	end
	print( "stored " .. l:count( "key") .. " items in the linda before starting consumer lane")
	local lane
	if batch > 0 then
		lane = lane_gobbler_gen( l, top, batch)
	else
		lane = lane_eater_gen( l, top)
	end
	-- tell the consumer lane it can start eating data
	l:send( "go", true)
	-- send the remainder of the elements while they are consumed
	-- create a function that can send several values in one shot
	batch = math.max( batch, 1)
	local batch_values = {}
	for i = 1, batch do
		table.insert( batch_values, i)
	end
	local batch_send_log = "main: sending "..batch.." values"
	local batch_send = function()
		-- print(batch_send_log)
		l:send( "key", table_unpack( batch_values))
	end
	if loop > preloop then
		for i = preloop + 1, loop, batch do
			batch_send()
		end
	end
	l:send( "done" ,"are you happy?")
	lane:join()
	return lanes.now_secs() - t1
end

-- #################################################################################################

if true then
	do
		TEST1 = TEST1 or 1000 -- how many tests do we run?
		PREFILL1 = PREFILL1 or 10000
		FILL1 = FILL1 or 2000000

		local tests1 =
		{
			{ PREFILL1, FILL1, 0},
			{ PREFILL1, FILL1, 1},
			{ PREFILL1, FILL1, 2},
			{ PREFILL1, FILL1, 3},
			{ PREFILL1, FILL1, 5},
			{ PREFILL1, FILL1, 8},
			{ PREFILL1, FILL1, 13},
			{ PREFILL1, FILL1, 21},
			{ PREFILL1, FILL1, 34},
			{ PREFILL1, FILL1, 55},
			{ PREFILL1, FILL1, 89},
		}
		print "############################################ tests #1"
		for i, v in ipairs( tests1) do
			if i > TEST1 then break end
			local pre, loop, batch = v[1], v[2], v[3]
			print("-------------------------------------------------\n")
			print("START", "prefill="..pre, "fill="..loop, "batch="..batch)
			print("DURATION = " .. ziva1( pre, loop, batch) .. "\n")
		end
	end
	collectgarbage()
end

-- #################################################################################################

-- sequential write/read (no parallelization involved)
local function ziva2( preloop, loop, batch)
	local l = lanes.linda("ziva2("..preloop..":"..loop..":"..tostring(batch)..")", group_uid)
	group_uid = (group_uid % config.nb_user_keepers) + 1
	-- prefill the linda a bit to increase fifo stress
	local top, step = math.max( preloop, loop), (l.batched and batch) and batch or 1
	local batch_send, batch_read
	if l.batched and batch then
		local batch_values = {}
		for i = 1, batch do
			table.insert( batch_values, i)
		end
		-- create a function that can send several values in one shot
		batch_send = function()
			l:send( "key", table_unpack( batch_values))
		end
		batch_read = function()
			l:receive( l.batched, "key", batch)
		end
	else -- not batched
		batch_send = function()
			l:send( "key", top)
		end
		batch_read = function()
			l:receive( "key")
		end
	end
	local t1 = lanes.now_secs()
	-- first, prime the linda with some data
	for i = 1, preloop, step do
		batch_send()
	end
	print( "stored " .. (l:count( "key") or 0) .. " items in the linda before starting the alternating reads and writes")
	-- loop that alternatively sends and reads data off the linda
	if loop > preloop then
		for i = preloop + 1, loop, step do
			batch_send()
			batch_read()
		end
	end
	-- here, we have preloop elements still waiting inside the linda
	for i = 1, preloop, step do
		batch_read()
	end
	return lanes.now_secs() - t1
end

-- #################################################################################################

if true then
	do
		TEST2 = TEST2 or 1000 -- how many tests do we run?
		PREFILL2 = PREFILL2 or 0
		FILL2 = FILL2 or 4000000

		local tests2 =
		{
			{ PREFILL2, FILL2},
			{ PREFILL2, FILL2, 1},
			{ PREFILL2, FILL2, 2},
			{ PREFILL2, FILL2, 3},
			{ PREFILL2, FILL2, 5},
			{ PREFILL2, FILL2, 8},
			{ PREFILL2, FILL2, 13},
			{ PREFILL2, FILL2, 21},
			{ PREFILL2, FILL2, 34},
			{ PREFILL2, FILL2, 55},
			{ PREFILL2, FILL2, 89},
		}

		print "############################################ tests #2"
		for i, v in ipairs( tests2) do
			if i > TEST2 then break end
			local pre, loop, batch = v[1], v[2], v[3]
			print("-------------------------------------------------\n")
			print("START", "prefill="..pre, "fill="..loop, "batch="..(batch or "no"))
			print("DURATION = " .. ziva2( pre, loop, batch) .. "\n")
		end
	end
	collectgarbage()
end

print "############################################"
print "THE END"