File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
src/cloudai/workloads/ucc_test Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,8 @@ def generate_test_command(self) -> List[str]:
3939 srun_command_parts .append (f"-c { tdef_cmd_args .collective } " )
4040 srun_command_parts .append (f"-b { tdef_cmd_args .b } " )
4141 srun_command_parts .append (f"-e { tdef_cmd_args .e } " )
42+ if tdef_cmd_args .gen is not None :
43+ srun_command_parts .append (f"--gen { tdef_cmd_args .gen } " )
4244 srun_command_parts .append ("-m cuda" )
4345 srun_command_parts .append ("-F" )
4446
Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ class UCCCmdArgs(CmdArgs):
6868 ] = "alltoall"
6969 b : Union [int , list [int ]] = 1
7070 e : Union [str , list [str ]] = "8M"
71+ gen : Union [str , list [str ], None ] = None
7172
7273
7374class UCCTestDefinition (TestDefinition ):
You can’t perform that action at this time.
0 commit comments