@@ -2659,6 +2659,7 @@ def WriteReport(data_info, systems, isparallel, ifVHQ, isorient):
2659
2659
ismempbs = False
2660
2660
ifVHQ = False
2661
2661
isAuto = False
2662
+ no_concurrency = 6 # number of jobs running concurrently on github server
2662
2663
if len (args ) == 1 and re .findall (r'autosys' ,args [0 ]) == ['autosys' ]:
2663
2664
indx_test_temp = re .findall (r'\d+' ,args [0 ])
2664
2665
indx_test = int (indx_test_temp [0 ])
@@ -2673,14 +2674,14 @@ def WriteReport(data_info, systems, isparallel, ifVHQ, isorient):
2673
2674
tols_sys = [ tols_sys [i ] for i in range (len (systems )) if systems [i ] not in ['Fe_spin' ,'He16_NVTNH' ,'He16_NVKG' ,'MgO' ,'Si8_kpt_valgrind' ,'MoS2' ,'Au_fcc211' ,'SiH4' ,'BaTiO3_valgrind' ]]
2674
2675
systems = [ systems [i ] for i in range (len (systems )) if systems [i ] not in ['Fe_spin' ,'He16_NVTNH' ,'He16_NVKG' ,'MgO' ,'Si8_kpt_valgrind' ,'MoS2' ,'Au_fcc211' ,'SiH4' ,'BaTiO3_valgrind' ]]
2675
2676
no_systems = len (systems )
2676
- if indx_test != 12 :
2677
- systems = systems [(indx_test - 1 )* int (no_systems / 12 ):(indx_test - 1 )* int (no_systems / 12 )+ int (no_systems / 12 )]
2678
- tols_sys = tols_sys [(indx_test - 1 )* int (no_systems / 12 ):(indx_test - 1 )* int (no_systems / 12 )+ int (no_systems / 12 )]
2679
- tags_sys = tags_sys [(indx_test - 1 )* int (no_systems / 12 ):(indx_test - 1 )* int (no_systems / 12 )+ int (no_systems / 12 )]
2677
+ if indx_test != no_concurrency :
2678
+ systems = systems [(indx_test - 1 )* int (no_systems / no_concurrency ):(indx_test - 1 )* int (no_systems / no_concurrency )+ int (no_systems / no_concurrency )]
2679
+ tols_sys = tols_sys [(indx_test - 1 )* int (no_systems / no_concurrency ):(indx_test - 1 )* int (no_systems / no_concurrency )+ int (no_systems / no_concurrency )]
2680
+ tags_sys = tags_sys [(indx_test - 1 )* int (no_systems / no_concurrency ):(indx_test - 1 )* int (no_systems / no_concurrency )+ int (no_systems / no_concurrency )]
2680
2681
else :
2681
- systems = systems [(indx_test - 1 )* int (no_systems / 12 ) : no_systems ]
2682
- tols_sys = tols_sys [(indx_test - 1 )* int (no_systems / 12 ) : no_systems ]
2683
- tags_sys = tags_sys [(indx_test - 1 )* int (no_systems / 12 ) : no_systems ]
2682
+ systems = systems [(indx_test - 1 )* int (no_systems / no_concurrency ) : no_systems ]
2683
+ tols_sys = tols_sys [(indx_test - 1 )* int (no_systems / no_concurrency ) : no_systems ]
2684
+ tags_sys = tags_sys [(indx_test - 1 )* int (no_systems / no_concurrency ) : no_systems ]
2684
2685
no_systems = len (systems )
2685
2686
2686
2687
0 commit comments