You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: detection/plot_dropped_nodes.py
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,8 @@ def main():
21
21
parser.add_argument('-s', '--slownode', help='Absolute or relative path to the output from slow_node executable', required=True)
22
22
parser.add_argument('-a', '--analysis', help='Absolute or relative path to the output from detect_slow_nodes', required=True)
23
23
parser.add_argument('-o', '--output', help='Absolute or relative path to the output directory where the plot will be saved. Defaults to $(pwd)/output', default=None)
24
+
parser.add_argument('-r', '--show_ranges', help='Show range for all nodes (not just the dropped ones)', action="store_true")
25
+
parser.add_argument('-n', '--no_ranges', help='Hide ranges for all nodes (including the dropped ones). Overrides -r', action="store_true")
0 commit comments