Skip to content
Snippets Groups Projects
Commit 70a24b12 authored by Maël Madon's avatar Maël Madon
Browse files

cosmetics

parent 1fd00500
Branches
Tags
No related merge requests found
...@@ -92,7 +92,7 @@ def main(): ...@@ -92,7 +92,7 @@ def main():
""" """
Program entry point. Program entry point.
Parses the input arguments then calls generate_flat_platform. Parses the input arguments then calls filter_workload.
""" """
parser = argparse.ArgumentParser( parser = argparse.ArgumentParser(
description="Filter jobs from the SWF input according to some criteria " description="Filter jobs from the SWF input according to some criteria "
...@@ -105,12 +105,15 @@ def main(): ...@@ -105,12 +105,15 @@ def main():
help='The optional output SWF file') help='The optional output SWF file')
parser.add_argument('-sp', '--partitions_to_select', parser.add_argument('-sp', '--partitions_to_select',
type=int, nargs='+', default=None, type=int, nargs='+', default=None,
help='List of partitions to only consider in the input trace. The jobs running in the other partitions will be discarded.') help="List of partitions to only consider in the input "
"trace. The jobs running in the other partitions will "
"be discarded.")
parser.add_argument('--keep_only', parser.add_argument('--keep_only',
type=str, type=str,
default=None, default=None,
help='If set, this parameter is evaluated to choose which jobs should be kept') help="If set, this parameter is evaluated to choose "
"which jobs should be kept")
parser.add_argument("-q", "--quiet", action="store_true") parser.add_argument("-q", "--quiet", action="store_true")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment