@@ -51,8 +51,8 @@ class FluxJobExecutor(BaseExecutor):
5151 do not allow other tasks to use the same compute node.
5252 * error_log_file (str): path to the error log file, primarily used to merge the log of
5353 multiple tasks in one file.
54- * run_time_limit (int): the maximum time the execution of the submitted Python function is
55- allowed to take in seconds.
54+ * run_time_max (int): the maximum time the execution of the submitted Python function is
55+ allowed to take in seconds.
5656 * priority (int): the queuing system priority assigned to a given Python function to
5757 influence the scheduling.
5858 * slurm_cmd_args (list): Additional command line arguments for the srun call (SLURM only)
@@ -154,7 +154,7 @@ def __init__(
154154 - do not allow other tasks to use the same compute node.
155155 * error_log_file (str): path to the error log file, primarily used to merge the log of
156156 multiple tasks in one file.
157- * run_time_limit (int): the maximum time the execution of the submitted Python
157+ * run_time_max (int): the maximum time the execution of the submitted Python
158158 function is allowed to take in seconds.
159159 * priority (int): the queuing system priority assigned to a given Python function to
160160 influence the scheduling.
@@ -283,8 +283,8 @@ class FluxClusterExecutor(BaseExecutor):
283283 do not allow other tasks to use the same compute node.
284284 * error_log_file (str): path to the error log file, primarily used to merge the log of
285285 multiple tasks in one file.
286- * run_time_limit (int): the maximum time the execution of the submitted Python function is
287- allowed to take in seconds.
286+ * run_time_max (int): the maximum time the execution of the submitted Python function is
287+ allowed to take in seconds.
288288 * priority (int): the queuing system priority assigned to a given Python function to
289289 influence the scheduling.
290290 * slurm_cmd_args (list): Additional command line arguments for the srun call (SLURM only)
@@ -380,7 +380,7 @@ def __init__(
380380 - do not allow other tasks to use the same compute node.
381381 * error_log_file (str): path to the error log file, primarily used to merge the log of
382382 multiple tasks in one file.
383- * run_time_limit (int): the maximum time the execution of the submitted Python
383+ * run_time_max (int): the maximum time the execution of the submitted Python
384384 function is allowed to take in seconds.
385385 * priority (int): the queuing system priority assigned to a given Python function to
386386 influence the scheduling.
@@ -417,7 +417,7 @@ def __init__(
417417 "cwd" : None ,
418418 "openmpi_oversubscribe" : openmpi_oversubscribe ,
419419 "slurm_cmd_args" : [],
420- "run_time_limit " : None ,
420+ "run_time_max " : None ,
421421 }
422422 if resource_dict is None :
423423 resource_dict = {}
@@ -540,8 +540,8 @@ def create_flux_executor(
540540 do not allow other tasks to use the same compute node.
541541 * error_log_file (str): path to the error log file, primarily used to merge the log of
542542 multiple tasks in one file.
543- * run_time_limit (int): the maximum time the execution of the submitted Python function is
544- allowed to take in seconds.
543+ * run_time_max (int): the maximum time the execution of the submitted Python function is
544+ allowed to take in seconds.
545545 * priority (int): the queuing system priority assigned to a given Python function to
546546 influence the scheduling.
547547 * slurm_cmd_args (list): Additional command line arguments for the srun call (SLURM only)
0 commit comments