Skip to content
Snippets Groups Projects
Commit 1c6f7a53 authored by Igor Fontana de Nardin's avatar Igor Fontana de Nardin
Browse files

Removed the walltime >= run_time filter

parent f5f28ae9
No related branches found
No related tags found
No related merge requests found
......@@ -51,8 +51,7 @@ def filter_workload(input_swf:str, output_swf:str=None,
partition_id = int(res.group(SwfField.PARTITION_ID.value))
# Select jobs to keep
is_valid_job = (nb_res > 0 and walltime >=
run_time and run_time >= 0 and submit_time >= 0)
is_valid_job = (nb_res > 0 and run_time >= 0 and submit_time >= 0)
select_partition = ((partitions_to_select is None) or
(partition_id in partitions_to_select))
use_job = select_partition and (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment