aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/basic.lua14
-rw-r--r--tests/linda_perf.lua103
2 files changed, 77 insertions, 40 deletions
diff --git a/tests/basic.lua b/tests/basic.lua
index 385e22f..4b4fae6 100644
--- a/tests/basic.lua
+++ b/tests/basic.lua
@@ -154,7 +154,7 @@ PRINT(" "..st)
154assert( st == "cancelled" ) 154assert( st == "cancelled" )
155 155
156-- cancellation of lanes waiting on a linda 156-- cancellation of lanes waiting on a linda
157local limited = lanes.linda() 157local limited = lanes.linda("limited")
158limited:limit( "key", 1) 158limited:limit( "key", 1)
159-- [[################################################ 159-- [[################################################
160limited:send( "key", "hello") -- saturate linda 160limited:send( "key", "hello") -- saturate linda
@@ -234,7 +234,7 @@ local chunk= function( linda )
234 WR( "Lane ends!\n" ) 234 WR( "Lane ends!\n" )
235end 235end
236 236
237local linda= lanes_linda() 237local linda= lanes_linda("communications")
238assert( type(linda) == "userdata" ) 238assert( type(linda) == "userdata" )
239 -- 239 --
240 -- ["->"] master -> slave 240 -- ["->"] master -> slave
@@ -278,10 +278,12 @@ local complex_table = RECEIVE(); WR( type(complex_table).." received\n" )
278assert( complex_table[1] == complex_table[3] and complex_table[2] == complex_table[4]) 278assert( complex_table[1] == complex_table[3] and complex_table[2] == complex_table[4])
279WR( table.concat( {complex_table[1][1],complex_table[2][1],complex_table[3][1],complex_table[4][1]},", ")) 279WR( table.concat( {complex_table[1][1],complex_table[2][1],complex_table[3][1],complex_table[4][1]},", "))
280 280
281WR("collectgarbage")
281t = nil 282t = nil
282collectgarbage() 283collectgarbage()
283-- wait 284-- wait
284linda: receive( 1, "wait") 285WR("waiting 1s")
286linda:receive( 1, "wait")
285 287
286--############################################################## 288--##############################################################
287--############################################################## 289--##############################################################
@@ -336,6 +338,7 @@ for _, t in ipairs( stdlib_naming_tests) do
336 assert( f(t[1])[1] ) 338 assert( f(t[1])[1] )
337end 339end
338 340
341WR("collectgarbage")
339collectgarbage() 342collectgarbage()
340 343
341--############################################################## 344--##############################################################
@@ -361,12 +364,13 @@ local tc= lanes_gen( "io", {gc_cb = gc_cb},
361 end 364 end
362) 365)
363 366
364local linda= lanes_linda() 367local linda= lanes_linda("criss cross")
365 368
366local a,b= tc(linda, "A","B"), tc(linda, "B","A") -- launching two lanes, twisted comms 369local a,b= tc(linda, "A","B"), tc(linda, "B","A") -- launching two lanes, twisted comms
367 370
368local _= a[1],b[1] -- waits until they are both ready 371local _= a[1],b[1] -- waits until they are both ready
369 372
373WR("collectgarbage")
370a, b = nil 374a, b = nil
371collectgarbage() 375collectgarbage()
372 376
@@ -408,7 +412,7 @@ local function chunk2( linda )
408 linda:send( "up", function() return ":)" end, "ok2" ) 412 linda:send( "up", function() return ":)" end, "ok2" )
409end 413end
410 414
411local linda= lanes.linda() 415local linda= lanes.linda("linda")
412local t2= lanes_gen( "debug,string,io", {gc_cb = gc_cb}, chunk2 )(linda) -- prepare & launch 416local t2= lanes_gen( "debug,string,io", {gc_cb = gc_cb}, chunk2 )(linda) -- prepare & launch
413linda:send( "down", function(linda) linda:send( "up", "ready!" ) end, 417linda:send( "down", function(linda) linda:send( "up", "ready!" ) end,
414 "ok" ) 418 "ok" )
diff --git a/tests/linda_perf.lua b/tests/linda_perf.lua
index a170b01..9177852 100644
--- a/tests/linda_perf.lua
+++ b/tests/linda_perf.lua
@@ -1,38 +1,54 @@
1local lanes = require "lanes" 1local lanes = require "lanes"
2lanes.configure{ with_timers = false} 2lanes.configure{ with_timers = false }
3
4-- set TEST1, PREFILL1, FILL1, TEST2, PREFILL2, FILL2 from the command line
3 5
4-- Lua 5.1/5.2 compatibility 6-- Lua 5.1/5.2 compatibility
5local table_unpack = unpack or table.unpack 7local table_unpack = unpack or table.unpack
6 8
9local finalizer = function(err, stk)
10 if err == lanes.cancel_error then
11 -- note that we don't get the cancel_error when running wrapped inside a protected call if it doesn't rethrow it
12 print(" laneBody after cancel" )
13 elseif err then
14 print(" laneBody error: "..tostring(err))
15 else
16 print(" laneBody finalized")
17 end
18end
19
7-- this lane eats items in the linda one by one 20-- this lane eats items in the linda one by one
8local eater = function( l, loop) 21local eater = function( l, loop)
22 set_finalizer(finalizer)
9 -- wait for start signal 23 -- wait for start signal
10 l:receive( "go") 24 l:receive( "go")
11 -- eat data one by one 25 -- eat data one by one
12 for i = 1, loop do 26 for i = 1, loop do
13 local val, key = l:receive( "key") 27 local key, val = l:receive( "key")
14 --print( val) 28 -- print("eater:", val)
15 end 29 end
16 -- print "loop is over" 30 -- print "loop is over"
17 key, val = l:receive( "done") 31 key, val = l:receive( "done")
18 -- print( val) 32 print("eater: done ("..val..")")
19end 33end
20 34
21-- this lane eats items in the linda in batches 35-- this lane eats items in the linda in batches
22local batched = function( l, loop, batch) 36local gobbler = function( l, loop, batch)
37 set_finalizer(finalizer)
23 -- wait for start signal 38 -- wait for start signal
24 l:receive( "go") 39 l:receive( "go")
25 -- eat data in batches 40 -- eat data in batches
26 for i = 1, loop/batch do 41 for i = 1, loop/batch do
27 l:receive( l.batched, "key", batch) 42 l:receive( l.batched, "key", batch)
43 -- print("gobbler:", batch)
28 end 44 end
29 print "loop is over" 45 print "loop is over"
30 key, val = l:receive( "done") 46 key, val = l:receive( "done")
31 print( val) 47 print("gobbler: done ("..val..")")
32end 48end
33 49
34local lane_eater_gen = lanes.gen( "*", {priority = 3}, eater) 50local lane_eater_gen = lanes.gen( "*", {priority = 3}, eater)
35local lane_batched_gen = lanes.gen( "*", {priority = 3}, batched) 51local lane_gobbler_gen = lanes.gen( "*", {priority = 3}, gobbler)
36 52
37-- main thread writes data while a lane reads it 53-- main thread writes data while a lane reads it
38local function ziva( preloop, loop, batch) 54local function ziva( preloop, loop, batch)
@@ -46,7 +62,7 @@ local function ziva( preloop, loop, batch)
46 print( "stored " .. l:count( "key") .. " items in the linda before starting consumer lane") 62 print( "stored " .. l:count( "key") .. " items in the linda before starting consumer lane")
47 if batch > 0 then 63 if batch > 0 then
48 if l.batched then 64 if l.batched then
49 lane = lane_batched_gen( l, top, batch) 65 lane = lane_gobbler_gen( l, top, batch)
50 else 66 else
51 print "no batch support in this version of Lanes" 67 print "no batch support in this version of Lanes"
52 lane = lane_eater_gen( l, top) 68 lane = lane_eater_gen( l, top)
@@ -63,7 +79,9 @@ local function ziva( preloop, loop, batch)
63 for i = 1, batch do 79 for i = 1, batch do
64 table.insert( batch_values, i) 80 table.insert( batch_values, i)
65 end 81 end
82 local batch_send_log = "main: sending "..batch.." values"
66 local batch_send = function() 83 local batch_send = function()
84 -- print(batch_send_log)
67 l:send( "key", table_unpack( batch_values)) 85 l:send( "key", table_unpack( batch_values))
68 end 86 end
69 if loop > preloop then 87 if loop > preloop then
@@ -76,23 +94,29 @@ local function ziva( preloop, loop, batch)
76 return lanes.now_secs() - t1 94 return lanes.now_secs() - t1
77end 95end
78 96
97TEST1 = TEST1 or 1000
98PREFILL1 = PREFILL1 or 10000
99FILL1 = FILL1 or 2000000
100
79local tests1 = 101local tests1 =
80{ 102{
81 { 10000, 2000000, 0}, 103 { PREFILL1, FILL1, 0},
82 { 10000, 2000000, 1}, 104 { PREFILL1, FILL1, 1},
83 { 10000, 2000000, 2}, 105 { PREFILL1, FILL1, 2},
84 { 10000, 2000000, 3}, 106 { PREFILL1, FILL1, 3},
85 { 10000, 2000000, 5}, 107 { PREFILL1, FILL1, 5},
86 { 10000, 2000000, 8}, 108 { PREFILL1, FILL1, 8},
87 { 10000, 2000000, 13}, 109 { PREFILL1, FILL1, 13},
88 { 10000, 2000000, 21}, 110 { PREFILL1, FILL1, 21},
89 { 10000, 2000000, 44}, 111 { PREFILL1, FILL1, 44},
90} 112}
91print "############################################\ntests #1" 113print "############################################ tests #1"
92for k, v in pairs( tests1) do 114for i, v in ipairs( tests1) do
115 if i > TEST1 then break end
93 local pre, loop, batch = v[1], v[2], v[3] 116 local pre, loop, batch = v[1], v[2], v[3]
94 print( "testing", pre, loop, batch) 117 print("-------------------------------------------------\n")
95 print( pre, loop, batch, "duration = " .. ziva( pre, loop, batch) .. "\n") 118 print("START", "prefill="..pre, "fill="..loop, "batch="..batch)
119 print("DURATION = " .. ziva( pre, loop, batch) .. "\n")
96end 120end
97 121
98--[[ 122--[[
@@ -169,11 +193,15 @@ local function ziva2( preloop, loop, batch)
169 end 193 end
170 -- here, we have preloop elements still waiting inside the linda 194 -- here, we have preloop elements still waiting inside the linda
171 for i = 1, preloop, step do 195 for i = 1, preloop, step do
172 batch_read() 196 batch_read()
173 end 197 end
174 return lanes.now_secs() - t1 198 return lanes.now_secs() - t1
175end 199end
176 200
201TEST2 = TEST2 or 1000
202PREFILL2 = PREFILL2 or 0
203FILL2 = FILL2 or 4000000
204
177local tests2 = 205local tests2 =
178{ 206{
179 -- prefill, then consume everything 207 -- prefill, then consume everything
@@ -189,20 +217,25 @@ local tests2 =
189 { 4000000, 0, 44}, 217 { 4000000, 0, 44},
190 --]] 218 --]]
191 -- alternatively fill and consume 219 -- alternatively fill and consume
192 { 0, 4000000}, 220 { PREFILL2, FILL2},
193 { 0, 4000000, 1}, 221 { PREFILL2, FILL2, 1},
194 { 0, 4000000, 2}, 222 { PREFILL2, FILL2, 2},
195 { 0, 4000000, 3}, 223 { PREFILL2, FILL2, 3},
196 { 0, 4000000, 5}, 224 { PREFILL2, FILL2, 5},
197 { 0, 4000000, 8}, 225 { PREFILL2, FILL2, 8},
198 { 0, 4000000, 13}, 226 { PREFILL2, FILL2, 13},
199 { 0, 4000000, 21}, 227 { PREFILL2, FILL2, 21},
200 { 0, 4000000, 44}, 228 { PREFILL2, FILL2, 44},
201} 229}
202 230
203print "\n############################################\ntests #2" 231print "############################################ tests #2"
204for k, v in pairs( tests2) do 232for i, v in ipairs( tests2) do
233 if i > TEST2 then break end
205 local pre, loop, batch = v[1], v[2], v[3] 234 local pre, loop, batch = v[1], v[2], v[3]
206 print( "testing", pre, loop, batch) 235 print("-------------------------------------------------\n")
207 print( pre, loop, batch, "duration = " .. ziva2( pre, loop, batch) .. "\n") 236 print("START", "prefill="..pre, "fill="..loop, "batch="..(batch or "no"))
237 print("DURATION = " .. ziva2( pre, loop, batch) .. "\n")
208end 238end
239
240print "############################################"
241print "THE END" \ No newline at end of file