Files
linux-kernel-module-cheat/bst-vs-heap
2018-08-31 09:44:56 +01:00

18 lines
460 B
Python
Executable File

#!/usr/bin/env python3
import common
parser = common.get_argparse(
argparse_args={'description':'Convert a BST vs heap stat file into a gnuplot input'}
)
args = common.setup(parser)
stats = common.get_stats()
it = iter(stats)
i = 1
for stat in it:
try:
next_stat = next(it)
except StopIteration:
# Automatic dumpstats at end may lead to odd number of stats.
break
print('{} {} {}'.format(i, stat, next_stat))
i += 1