Skip to content

Commit

Permalink
Merge pull request #753 from kordejong/gh752
Browse files Browse the repository at this point in the history
  • Loading branch information
kordejong authored Dec 9, 2024
2 parents 3ba2882 + 4a455d5 commit 584b830
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def generate_script_slurm(
os.path.dirname(result_pathname)
),
# Run the benchmark, resulting in a json file
f'mpirun --n {nr_tasks} {mpirun_configuration} {experiment.command_pathname} "{experiment.command_arguments}" '
f"mpirun --n {nr_tasks} {mpirun_configuration} {experiment.command_pathname} {experiment.command_arguments} "
# '--hpx:ini="hpx.parcel.mpi.enable=1" '
# '--hpx:ini="hpx.os_threads={nr_threads}" '
'--hpx:threads="{nr_threads}" '
Expand Down Expand Up @@ -147,7 +147,7 @@ def generate_script_shell(
# Create directory for the resulting json file
"mkdir -p {}".format(os.path.dirname(result_pathname)),
# Run the benchmark, resulting in a json file
f'{experiment.command_pathname} "{experiment.command_arguments}" '
f"{experiment.command_pathname} {experiment.command_arguments} "
# '--hpx:ini="hpx.os_threads={nr_threads}" '
'--hpx:threads="{nr_threads}" '
# '--hpx:bind="{thread_binding}" '
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def generate_script_slurm_threads(

job_steps += [
# Run the benchmark, resulting in a json file
f'mpirun --n {nr_tasks} {mpirun_configuration} {experiment.command_pathname} "{experiment.command_arguments}" '
f"mpirun --n {nr_tasks} {mpirun_configuration} {experiment.command_pathname} {experiment.command_arguments} "
# '--hpx:ini="hpx.parcel.mpi.enable=1" '
# '--hpx:ini="hpx.os_threads={nr_threads}" '
'--hpx:threads="{nr_threads}" '
Expand Down Expand Up @@ -121,7 +121,7 @@ def generate_script_slurm_numa_nodes(

job_steps += [
# Run the benchmark, resulting in a json file
f'mpirun --n {nr_tasks} {mpirun_configuration} {experiment.command_pathname} "{experiment.command_arguments}" '
f"mpirun --n {nr_tasks} {mpirun_configuration} {experiment.command_pathname} {experiment.command_arguments} "
# '--hpx:ini="hpx.parcel.mpi.enable=1" '
# '--hpx:ini="hpx.os_threads={nr_threads}" '
'--hpx:threads="{nr_threads}" '
Expand Down Expand Up @@ -227,7 +227,7 @@ def generate_script_slurm_cluster_nodes(

job_steps = [
# Run the benchmark, resulting in a json file
f'mpirun --n {nr_tasks} {mpirun_configuration} {experiment.command_pathname} "{experiment.command_arguments}" '
f"mpirun --n {nr_tasks} {mpirun_configuration} {experiment.command_pathname} {experiment.command_arguments} "
# '--hpx:ini="hpx.parcel.mpi.enable=1" '
# '--hpx:ini="hpx.os_threads={nr_threads}" '
'--hpx:threads="{nr_threads}" '
Expand Down Expand Up @@ -344,7 +344,7 @@ def generate_script_shell(
# Create directory for the resulting json file
"mkdir -p {}".format(os.path.dirname(result_pathname)),
# Run the benchmark, resulting in a json file
f'{experiment.command_pathname} "{experiment.command_arguments}" '
f"{experiment.command_pathname} {experiment.command_arguments} "
# '--hpx:ini="hpx.os_threads={nr_threads}" '
'--hpx:threads="{nr_threads}" '
# '--hpx:bind="{thread_binding}" '
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def generate_script_slurm_threads(

job_steps += [
# Run the benchmark, resulting in a json file
f'mpirun --n {nr_tasks} {mpirun_configuration} {experiment.command_pathname} "{experiment.command_arguments}" '
f"mpirun --n {nr_tasks} {mpirun_configuration} {experiment.command_pathname} {experiment.command_arguments} "
# '--hpx:ini="hpx.parcel.mpi.enable=1" '
# '--hpx:ini="hpx.os_threads={nr_threads}" '
'--hpx:threads="{nr_threads}" '
Expand Down Expand Up @@ -154,7 +154,7 @@ def generate_script_slurm_numa_nodes(

job_steps += [
# Run the benchmark, resulting in a json file
f'mpirun --n {nr_tasks} {mpirun_configuration} {experiment.command_pathname} "{experiment.command_arguments}" '
f"mpirun --n {nr_tasks} {mpirun_configuration} {experiment.command_pathname} {experiment.command_arguments} "
# '--hpx:ini="hpx.parcel.mpi.enable=1" '
# '--hpx:ini="hpx.os_threads={nr_threads}" '
'--hpx:threads="{nr_threads}" '
Expand Down Expand Up @@ -265,7 +265,7 @@ def generate_script_slurm_cluster_nodes(

job_steps = [
# Run the benchmark, resulting in a json file
f'mpirun --n {nr_tasks} {mpirun_configuration} {experiment.command_pathname} "{experiment.command_arguments}" '
f"mpirun --n {nr_tasks} {mpirun_configuration} {experiment.command_pathname} {experiment.command_arguments} "
# '--hpx:ini="hpx.parcel.mpi.enable=1" '
# '--hpx:ini="hpx.os_threads={nr_threads}" '
'--hpx:threads="{nr_threads}" '
Expand Down Expand Up @@ -383,7 +383,7 @@ def generate_script_shell(
# Create directory for the resulting json file
"mkdir -p {}".format(os.path.dirname(result_pathname)),
# Run the benchmark, resulting in a json file
f'{experiment.command_pathname} "{experiment.command_arguments}" '
f"{experiment.command_pathname} {experiment.command_arguments} "
# '--hpx:ini="hpx.os_threads={nr_threads}" '
'--hpx:threads="{nr_threads}" '
# '--hpx:bind="{thread_binding}" '
Expand Down

0 comments on commit 584b830

Please sign in to comment.