Searched refs:pylab (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/contrib/cortex-strings/scripts/
H A Dplot-top.py9 import pylab namespace
18 X = pylab.arange(len(functions))
23 pylab.figure(1).set_size_inches((16, 12))
24 pylab.clf()
40 pylab.bar(X+i*width, heights, width, color=colours.next(), label=variant)
42 axes = pylab.axes()
46 pylab.title('Performance of different variants for %d byte blocks' % bytes)
47 pylab.ylabel('Rate (MB/s)')
48 pylab.legend(loc='upper left', ncol=3)
49 pylab
[all...]
H A Dplot-align.py8 import pylab namespace
17 X = pylab.arange(len(alignments))
22 pylab.figure(1).set_size_inches((16, 12))
23 pylab.clf()
39 pylab.bar(X+i*width, heights, width, color=colours.next(), label=variant)
42 axes = pylab.axes()
50 pylab.title('Performance of different variants of %(function)s for %(bytes)d byte blocks' % locals())
51 pylab.xlabel('Alignment')
52 pylab.ylabel('Rate (MB/s)')
53 pylab
[all...]
H A Dplot.py11 import pylab namespace
47 bounces = pylab.array([(x.loops, x.rawtime) for x in r if x.test == 'bounce'])
48 fit = pylab.polyfit(bounces[:,0], bounces[:,1], 1)
58 delta = pylab.polyval(fit, [r1.loops])
81 V = pylab.array([(x.size, getattr(x, field)) for x in v])
90 pylab.scatter(V[:,0], V[:,1]/scale, label=variant)
91 pylab.plot(V[:,0], V[:,1]/scale)
93 pylab.plot(V[:,0], V[:,1]/scale, label=variant,
101 pylab.legend(loc='lower right', ncol=2, prop={'size': 'small'})
102 pylab
[all...]
H A Dplot-sizes.py9 import pylab namespace
43 pylab.figure(1).set_size_inches((6.4*scale, 4.8*scale))
44 pylab.clf()
80 pylab.plot(X, Y, c=colour)
82 pylab.errorbar(X, Y, yerr=Yerr, c=colour, label=variant, fmt='o')
84 pylab.scatter(X, Y, c=colour, label=variant, edgecolors='none')
86 pylab.legend(loc='upper left', ncol=3, prop={'size': 'small'})
87 pylab.grid()
88 pylab.title('%(function)s of %(aalignment)s byte aligned blocks' % locals())
89 pylab
[all...]

Completed in 58 milliseconds