Skip to content

Commit

Permalink
change order of arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
ikrommyd committed Jul 17, 2024
1 parent 557fdf0 commit 623af7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/run_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@

def main():
parser = runner_utils.get_main_parser()
parser.add_argument("--port", type=int, default=8786, help="Port for the Dask scheduler")
parser.add_argument("--dashboard_address", type=str, default=":8787", help="Address for the Dask dashboard")
parser.add_argument("--cores", type=int, help="Number of cores for each worker")
parser.add_argument("--memory", type=str, help="Memory allocation for each worker")
parser.add_argument("--disk", type=str, help="Disk allocation for each worker")
parser.add_argument("--scaleout", type=int, help="Maximum number of workers")
parser.add_argument("--adaptive", type=bool, default=True, help="Adaptive scaling")
parser.add_argument("--port", type=int, default=8786, help="Port for the Dask scheduler")
parser.add_argument("--dashboard_address", type=str, default=":8787", help="Address for the Dask dashboard")
parser.add_argument("--queue", type=str, help="Queue for job submission")
parser.add_argument("--walltime", type=str, help="Walltime for job execution")
args = parser.parse_args()
Expand Down

0 comments on commit 623af7c

Please sign in to comment.