Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Morten committed Mar 27, 2023
1 parent d38cc74 commit cdbadbf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified doc/performance.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ def __init__(self):
self.settings = {}
self.parser = argparse.ArgumentParser(description='ReportGenerator')
self.parser.add_argument('-i', default='target/itu_performance.json', help='The JMH result (JSON) file')
self.parser.add_argument('-o', help='Output file path for bar chart image')
self.parser.add_argument('-o', default='output.png', help='Output file path for bar chart image')
self.parser.add_argument('--size', default='10,16', help='Plot size')
self.parser.add_argument('--theme', default='seaborn', help='Output theme for bar chart image')
self.parser.add_argument('--theme', default='default', help='Output theme for bar chart image')
self.parser.add_argument('--include', default='parse,parseRaw,format',
help='Prefix for test methods to include')

Expand Down

0 comments on commit cdbadbf

Please sign in to comment.