1234567891011121314151617181920212223242526272829303132 |
- #!/usr/bin/env python3
- import common
- class Main(common.LkmcCliFunction):
- def __init__(self):
- super().__init__(
- defaults={
- 'emulator': 'gem5',
- 'show_time': False,
- },
- description='''\
- Convert a BST vs heap stat file into a gnuplot input
- ''',
- )
- def timed_main(self):
- stats = self.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
- if __name__ == '__main__':
- Main().cli()
|