blob: 804b9f2804bd7c607d207889e86871b993a2708c (
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
|
#!/usr/bin/env python
"""
Create a chain of coroutines and pass a value from one end to the
other, where each coroutine will increment the value before passing it
along.
"""
import pyperf
import greenlet
def link(next_greenlet):
value = greenlet.getcurrent().parent.switch()
next_greenlet.switch(value + 1)
CHAIN_GREENLET_COUNT = 100000
def bm_chain(loops):
begin = pyperf.perf_counter()
for _ in range(loops):
start_node = greenlet.getcurrent()
for _ in range(CHAIN_GREENLET_COUNT):
g = greenlet.greenlet(link)
g.switch(start_node)
start_node = g
x = start_node.switch(0)
assert x == CHAIN_GREENLET_COUNT
end = pyperf.perf_counter()
return end - begin
GETCURRENT_INNER_LOOPS = 10
def bm_getcurrent(loops):
getcurrent = greenlet.getcurrent
getcurrent() # Factor out the overhead of creating the initial main greenlet
begin = pyperf.perf_counter()
for _ in range(loops):
# Manual unroll
getcurrent()
getcurrent()
getcurrent()
getcurrent()
getcurrent()
getcurrent()
getcurrent()
getcurrent()
getcurrent()
getcurrent()
end = pyperf.perf_counter()
return end - begin
SWITCH_INNER_LOOPS = 10000
def bm_switch(loops):
class G(greenlet.greenlet):
other = None
def run(self):
o = self.other
for _ in range(SWITCH_INNER_LOOPS):
o.switch()
begin = pyperf.perf_counter()
for _ in range(loops):
gl1 = G()
gl2 = G()
gl1.other = gl2
gl2.other = gl1
gl1.switch()
end = pyperf.perf_counter()
return end - begin
CREATE_INNER_LOOPS = 10
def bm_create(loops):
gl = greenlet.greenlet
begin = pyperf.perf_counter()
for _ in range(loops):
gl()
gl()
gl()
gl()
gl()
gl()
gl()
gl()
gl()
gl()
end = pyperf.perf_counter()
return end - begin
if __name__ == '__main__':
runner = pyperf.Runner()
runner.bench_time_func(
'create a greenlet',
bm_create,
inner_loops=CREATE_INNER_LOOPS
)
runner.bench_time_func(
'switch between two greenlets',
bm_switch,
inner_loops=SWITCH_INNER_LOOPS
)
runner.bench_time_func(
'getcurrent single thread',
bm_getcurrent,
inner_loops=GETCURRENT_INNER_LOOPS
)
runner.bench_time_func(
'chain(%s)' % CHAIN_GREENLET_COUNT,
bm_chain,
)
|