Skip to content

Commit

Permalink
Merge pull request #820 from rfbgo/ior_aa
Browse files Browse the repository at this point in the history
Allow user to pass additional_args to ior
  • Loading branch information
douglasjacobsen authored Jan 11, 2025
2 parents 9b42856 + a83710e commit c257d68
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion var/ramble/repos/builtin/applications/ior/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,16 @@ class Ior(ExecutableApplication):
description="Segment Count",
workloads=["multi-file", "single-file"],
)
workload_variable(
"additional_args",
default="",
description="Additional args to pass",
workloads=["multi-file", "single-file"],
)

executable(
name="ior",
template="ior -t {transfer-size} -b {block-size} -s {segment-count} -i {iterations}",
template="ior -t {transfer-size} -b {block-size} -s {segment-count} -i {iterations} {additional_args}",
use_mpi=True,
)
executable(name="ior-shared", template="{ior_path} -F", use_mpi=True)
Expand Down

0 comments on commit c257d68

Please sign in to comment.