Skip to content
Success

Console Output

Skipping 1,158 KB.. Full Log
line 866 : 110 chars :                                       * min( threshold, field(i,k_start:k_end:grid_dir_indx) ) ) * invrs_denom
line 871 : 106 chars :                   + mass_fraction * ( min( threshold, field(i,k_start:k_end:grid_dir_indx) ) - threshold )
line 876 : 110 chars :                                       * max( threshold, field(i,k_start:k_end:grid_dir_indx) ) ) * invrs_denom
line 883 : 108 chars :                     + mass_fraction * ( max( threshold, field(i,k_start:k_end:grid_dir_indx) ) - threshold )
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
--------------------- Implicit None Check: /home/jenkins/workspace/clubb_nvhpc_gpu_vs_cpu_diffness/src/CLUBB_core/stats_netcdf.F90 ---------------------
WARNING: Missing 'implicit none' after these blocks:
line 281:   subroutine stats_init_api( registry_path, output_path, ncol, stats_tsamp, stats_tout, dt_main, &
line 489:   subroutine stats_finalize_api( stats, err_info )
line 565:   subroutine stats_type_initialize( ncol, defs, ndefs, zt, zm, stats, ierr, rad_zt, rad_zm )
line 716:   subroutine stats_open_netcdf( output_path, time_units, &
line 951:   subroutine stats_begin_timestep_api( itime, stats )
line 1001:   subroutine stats_end_timestep_api( time_value, stats, err_info )
line 1052:   subroutine stats_update_scalar( name, values, stats, icol, level )
line 1113:   subroutine stats_update_1d( name, values, stats, icol, level )
line 1174:   subroutine stats_update_2d( name, values, stats, icol, level )
line 1238:   subroutine stats_begin_budget_scalar( name, values, stats, icol )
line 1285:   subroutine stats_begin_budget_1d( name, values, stats, icol )
line 1339:   subroutine stats_begin_budget_2d( name, values, stats, icol )
line 1385:   subroutine stats_update_budget_scalar( name, values, stats, icol, level )
line 1436:   subroutine stats_update_budget_1d( name, values, stats, icol, level )
line 1487:   subroutine stats_update_budget_2d( name, values, stats, icol, level )
line 1533:   subroutine stats_finalize_budget_scalar( name, values, stats, icol, l_count_sample )
line 1600:   subroutine stats_finalize_budget_1d( name, values, stats, icol, l_count_sample )
line 1674:   subroutine stats_finalize_budget_2d( name, values, stats, icol, l_count_sample )
line 1741:   subroutine stats_avg_and_write( time_value, stats, ierr )
line 1867:   subroutine stats_grid_init( ncol, zt_src, zm_src, zt_tgt, zm_tgt, &
line 1929:   subroutine stats_update_grid( zt_src, zm_src, rho_vals, rho_levels, p_sfc, stats )
line 2007:   subroutine stats_lh_samples_init( num_samples, nzt, nl_var_names, u_var_names, zt_vals, &
line 2126:   subroutine stats_lh_samples_write_lognormal( samples, stats, err_info )
line 2179:   subroutine stats_lh_samples_write_uniform( uniform_vals, mixture_comp, sample_weights, &
line 2395:   subroutine stats_lookup_append( stats, id )
line 2437:   subroutine stats_lookup_reject_append( stats, name )
line 2551:   subroutine stats_read_registry_namelist( path, defs, ndefs, ierr )
line 2626:   subroutine stats_expand_registry( sclr_dim, edsclr_dim, defs, ndefs, hydromet_list )
line 2927:   subroutine add_expanded_def( base_def, name, out_defs, nout )
line 2977:   subroutine parse_registry_line( line, def, l_valid )
line 3051:   subroutine split_registry_fields( line, fields, nfields )
----------------------------------------------------------------------------------------------------
--------------------- Line Length Check: /home/jenkins/workspace/clubb_nvhpc_gpu_vs_cpu_diffness/src/CLUBB_core/stats_netcdf.F90 ---------------------
 WARNING: Lines exceed 100 characters (limit 100):
line 235 : 103 chars :     logical :: l_last_sample = .false.            ! True if we want to output at the end of this sample
line 237 : 104 chars :     logical :: l_different_output_grid = .false.  ! True if we need to remap the variables before output
line 238 : 102 chars :     logical :: l_output_rad_files = .false.       ! True if we want to output radiation grid variables
line 526 : 101 chars :       if ( allocated( stats%grid%rho_lin_spline_vals ) ) deallocate( stats%grid%rho_lin_spline_vals )
line 527 : 105 chars :       if ( allocated( stats%grid%rho_lin_spline_levels ) ) deallocate( stats%grid%rho_lin_spline_levels )
line 803 : 104 chars :     ret_code = nf90_def_var( stats%ncid, "time", NF90_DOUBLE, (/ stats%time_dimid /), stats%time_varid )
line 808 : 101 chars :     ret_code = nf90_def_var( stats%ncid, "col", NF90_DOUBLE, (/ stats%col_dimid /), stats%col_varid )
line 828 : 121 chars :       ret_code = nf90_def_var( stats%ncid, "lh_zt", NF90_DOUBLE, (/ stats%lh_2d%lh_zt_dimid /), stats%lh_2d%lh_zt_varid )
line 835 : 112 chars :       ret_code = nf90_def_var( stats%ncid, "rad_zt", NF90_DOUBLE, (/ stats%rad_zt_dimid /), stats%rad_zt_varid )
line 839 : 112 chars :       ret_code = nf90_def_var( stats%ncid, "rad_zm", NF90_DOUBLE, (/ stats%rad_zm_dimid /), stats%rad_zm_varid )
line 849 : 101 chars :                           (/ stats%param_strlen_dimid, stats%param_dimid /), stats%param_name_varid )
line 852 : 109 chars :       ret_code = nf90_def_var( stats%ncid, "param", NF90_DOUBLE, (/ stats%param_dimid /), stats%param_varid )
line 912 : 110 chars :       ret_code = nf90_put_att( stats%ncid, stats%vars(i)%varid, "long_name", trim( stats%vars(i)%long_name ) )
line 913 : 102 chars :       ret_code = nf90_put_att( stats%ncid, stats%vars(i)%varid, "units", trim( stats%vars(i)%units ) )
line 920 : 108 chars :     ret_code = nf90_put_var( stats%ncid, stats%col_varid, [( real( i, kind=core_rknd ), i=1, stats%ncol )] )
line 940 : 109 chars :       ret_code = nf90_put_var( stats%ncid, stats%param_varid, [( real( i, kind=core_rknd ), i=1, nparams )] )
line 1827 : 101 chars :                                       stats%grid%gr_source, stats%grid%gr_output, stats%vars(i)%nz, &
line 1828 : 107 chars :                                       real( stats%vars(i)%buffer, kind=core_rknd ), stats%vars(i)%out_nz, &
line 1829 : 114 chars :                                       size( stats%grid%rho_lin_spline_vals, 2 ), stats%grid%rho_lin_spline_vals, &
line 1985 : 101 chars :       if ( allocated( stats%grid%rho_lin_spline_vals ) ) deallocate( stats%grid%rho_lin_spline_vals )
line 1986 : 105 chars :       if ( allocated( stats%grid%rho_lin_spline_levels ) ) deallocate( stats%grid%rho_lin_spline_levels )
line 2428 : 116 chars :       if ( stats%lookup%cache_len > 0 ) tmp(1:stats%lookup%cache_len) = stats%lookup%cache(1:stats%lookup%cache_len)
line 2473 : 105 chars :         tmp(1:stats%lookup%reject_cache_len) = stats%lookup%reject_cache(1:stats%lookup%reject_cache_len)
line 2540 : 101 chars :     write(date(32:33),'(i2.2)') nint( ( ( real( mod( nint( st_time ),3600 ),kind=time_precision ) / &
line 2617 : 101 chars :         write( fstderr,* ) "Invalid stats registry entry (expected: name | grid | units | long_name)"
line 2718 : 101 chars :           call add_expanded_def(base_def,"corr_chi_"//trim(hydromet_list(j)( 1:2 ))//"_1",out_defs,k)
line 2719 : 101 chars :           call add_expanded_def(base_def,"corr_chi_"//trim(hydromet_list(j)( 1:2 ))//"_2",out_defs,k)
line 2726 : 101 chars :           call add_expanded_def(base_def,"corr_eta_"//trim(hydromet_list(j)( 1:2 ))//"_1",out_defs,k)
line 2727 : 101 chars :           call add_expanded_def(base_def,"corr_eta_"//trim(hydromet_list(j)( 1:2 ))//"_2",out_defs,k)
line 2734 : 101 chars :           call add_expanded_def(base_def,"corr_Ncn_"//trim(hydromet_list(j)( 1:2 ))//"_1",out_defs,k)
line 2735 : 101 chars :           call add_expanded_def(base_def,"corr_Ncn_"//trim(hydromet_list(j)( 1:2 ))//"_2",out_defs,k)
line 2742 : 113 chars :                                    trim( hydromet_list(j2)( 1:min( 2,len_trim( hydromet_list(j2) ) ) ) )//"_1", &
line 2746 : 113 chars :                                    trim( hydromet_list(j2)( 1:min( 2,len_trim( hydromet_list(j2) ) ) ) )//"_2", &
line 2752 : 101 chars :           call add_expanded_def(base_def,"corr_w_"//trim(hydromet_list(j)( 1:2 ))//"_1_n",out_defs,k)
line 2753 : 101 chars :           call add_expanded_def(base_def,"corr_w_"//trim(hydromet_list(j)( 1:2 ))//"_2_n",out_defs,k)
line 2760 : 103 chars :           call add_expanded_def(base_def,"corr_chi_"//trim(hydromet_list(j)( 1:2 ))//"_1_n",out_defs,k)
line 2761 : 103 chars :           call add_expanded_def(base_def,"corr_chi_"//trim(hydromet_list(j)( 1:2 ))//"_2_n",out_defs,k)
line 2768 : 103 chars :           call add_expanded_def(base_def,"corr_eta_"//trim(hydromet_list(j)( 1:2 ))//"_1_n",out_defs,k)
line 2769 : 103 chars :           call add_expanded_def(base_def,"corr_eta_"//trim(hydromet_list(j)( 1:2 ))//"_2_n",out_defs,k)
line 2776 : 103 chars :           call add_expanded_def(base_def,"corr_Ncn_"//trim(hydromet_list(j)( 1:2 ))//"_1_n",out_defs,k)
line 2777 : 103 chars :           call add_expanded_def(base_def,"corr_Ncn_"//trim(hydromet_list(j)( 1:2 ))//"_2_n",out_defs,k)
line 2784 : 115 chars :                                    trim( hydromet_list(j2)( 1:min( 2,len_trim( hydromet_list(j2) ) ) ) )//"_1_n", &
line 2788 : 115 chars :                                    trim( hydromet_list(j2)( 1:min( 2,len_trim( hydromet_list(j2) ) ) ) )//"_2_n", &
line 2825 : 112 chars :                                    trim( hydromet_list(j2)( 1:min( 2,len_trim( hydromet_list(j2) ) ) ) )//"p", &
----------------------------------------------------------------------------------------------------
--------------------- Line Length Check: /home/jenkins/workspace/clubb_nvhpc_gpu_vs_cpu_diffness/src/CLUBB_core/advance_xp2_xpyp_module.F90 ---------------------
 WARNING: Lines exceed 100 characters (limit 100):
line 1395 : 101 chars :                               sclrprtp(:,:,sclr) )                                    ! Intent(inout)
line 1430 : 102 chars :                               sclrpthlp(:,:,sclr) )                                    ! Intent(inout)
line 3220 : 101 chars :         stats_tmp(i,k) = (-gamma_over_implicit_ts * lhs_ta(2+gr%grid_dir_indx,i,k)) * xapxbp(i,km1) &
----------------------------------------------------------------------------------------------------
CLUBBStandardsCheck.py has finished.
FAIL: 20 check(s) failed.
CLUBBStandardsCheck.py has begun.
----------------------------------------------------------------------------------------------------
--------------------- Implicit None Check: /home/jenkins/workspace/clubb_nvhpc_gpu_vs_cpu_diffness/src/SILHS/mt95.F90 ---------------------
WARNING: Missing 'implicit none' after these blocks:
line 364:   subroutine init_by_type( put, get )
line 384:   subroutine init_by_scalar( put )
line 415:   subroutine init_by_array( put )
line 463:   subroutine next_state( )
line 595:   subroutine genrand_int32_0d( y )
line 616:   subroutine genrand_int32_1d( y )
line 631:   subroutine genrand_int32_2d( y )
line 646:   subroutine genrand_int32_3d( y )
line 661:   subroutine genrand_int32_4d( y )
line 676:   subroutine genrand_int32_5d( y )
line 691:   subroutine genrand_int32_6d( y )
line 706:   subroutine genrand_int32_7d( y )
line 722:   subroutine genrand_int31_0d( y )
line 734:   subroutine genrand_int31_1d( y )
line 749:   subroutine genrand_int31_2d( y )
line 764:   subroutine genrand_int31_3d( y )
line 779:   subroutine genrand_int31_4d( y )
line 794:   subroutine genrand_int31_5d( y )
line 809:   subroutine genrand_int31_6d( y )
line 824:   subroutine genrand_int31_7d( y )
line 840:   subroutine genrand_real1_0d( r )
line 855:   subroutine genrand_real1_1d( r )
line 870:   subroutine genrand_real1_2d( r )
line 885:   subroutine genrand_real1_3d( r )
line 900:   subroutine genrand_real1_4d( r )
line 915:   subroutine genrand_real1_5d( r )
line 930:   subroutine genrand_real1_6d( r )
line 945:   subroutine genrand_real1_7d( r )
line 961:   subroutine genrand_real2_0d( r )
line 976:   subroutine genrand_real2_1d( r )
line 991:   subroutine genrand_real2_2d( r )
line 1006:   subroutine genrand_real2_3d( r )
line 1021:   subroutine genrand_real2_4d( r )
line 1036:   subroutine genrand_real2_5d( r )
line 1051:   subroutine genrand_real2_6d( r )
line 1066:   subroutine genrand_real2_7d( r )
line 1082:   subroutine genrand_real3_0d( r )
line 1097:   subroutine genrand_real3_1d( r )
line 1112:   subroutine genrand_real3_2d( r )
line 1127:   subroutine genrand_real3_3d( r )
line 1142:   subroutine genrand_real3_4d( r )
line 1157:   subroutine genrand_real3_5d( r )
line 1172:   subroutine genrand_real3_6d( r )
line 1187:   subroutine genrand_real3_7d( r )
line 1203:   subroutine genrand_res53_0d( r )
line 1220:   subroutine genrand_res53_1d( r )
line 1235:   subroutine genrand_res53_2d( r )
line 1250:   subroutine genrand_res53_3d( r )
line 1265:   subroutine genrand_res53_4d( r )
line 1280:   subroutine genrand_res53_5d( r )
line 1295:   subroutine genrand_res53_6d( r )
line 1310:   subroutine genrand_res53_7d( r )
----------------------------------------------------------------------------------------------------
--------------------- Line Length Check: /home/jenkins/workspace/clubb_nvhpc_gpu_vs_cpu_diffness/src/SILHS/latin_hypercube_driver_module.F90 ---------------------
 WARNING: Lines exceed 100 characters (limit 100):
line 113 : 101 chars :                             ! The uniform distribution corresponds to all the same variables as X_nl,
line 419 : 105 chars :       !$acc update host(X_u_all_levs,l_in_precip,lh_sample_point_weights,X_mixt_comp_all_levs,k_lh_start)
----------------------------------------------------------------------------------------------------
CLUBBStandardsCheck.py has finished.
FAIL: 2 check(s) failed.
CLUBBStandardsCheck.py has begun.
--------------------- Line Length Check: /home/jenkins/workspace/clubb_nvhpc_gpu_vs_cpu_diffness/src/Benchmark_cases/wangara.F90 ---------------------
 WARNING: Lines exceed 100 characters (limit 100):
line 108 : 105 chars :           if ( sclr_idx%iiedsclr_thl > 0 ) edsclrm_forcing(i,k,sclr_idx%iiedsclr_thl) = thlm_forcing(i,k)
line 109 : 104 chars :           if ( sclr_idx%iiedsclr_rt  > 0 ) edsclrm_forcing(i,k,sclr_idx%iiedsclr_rt)  = rtm_forcing(i,k)
----------------------------------------------------------------------------------------------------
--------------------- Line Length Check: /home/jenkins/workspace/clubb_nvhpc_gpu_vs_cpu_diffness/src/Benchmark_cases/mpace_a.F90 ---------------------
 WARNING: Lines exceed 100 characters (limit 100):
line 272 : 103 chars :         if ( sclr_idx%iiedsclr_thl > 0 ) edsclrm_forcing(i,k,sclr_idx%iiedsclr_thl) = thlm_forcing(i,k)
line 273 : 102 chars :         if ( sclr_idx%iiedsclr_rt  > 0 ) edsclrm_forcing(i,k,sclr_idx%iiedsclr_rt)  = rtm_forcing(i,k)
----------------------------------------------------------------------------------------------------
--------------------- Default Private Check: /home/jenkins/workspace/clubb_nvhpc_gpu_vs_cpu_diffness/src/Benchmark_cases/prescribe_forcings.F90 ---------------------
WARNING: Missing default 'private' in the following modules:
line 1: module prescribe_forcings_module
----------------------------------------------------------------------------------------------------
--------------------- Line Length Check: /home/jenkins/workspace/clubb_nvhpc_gpu_vs_cpu_diffness/src/Benchmark_cases/prescribe_forcings.F90 ---------------------
 WARNING: Lines exceed 100 characters (limit 100):
line 297 : 104 chars :     !$acc enter data create( um_bot, vm_bot, rtm_bot, thlm_bot, rho_bot, exner_bot, z_bot, ustar, ubar )
line 478 : 118 chars :         !$acc update device( wm_zt, wm_zm, thlm_forcing, rtm_forcing, um_ref, vm_ref, sclrm_forcing, edsclrm_forcing )
line 935 : 103 chars :     !$acc exit data delete( um_bot, vm_bot, rtm_bot, thlm_bot, rho_bot, exner_bot, z_bot, ustar, ubar )
line 1146 : 101 chars :                                             gr%zm(i,km1), gr%zm(i,k00), gr%zm(i,kp1), gr%zm(i,kp2), &
line 1150 : 101 chars :                                             gr%zm(i,km1), gr%zm(i,k00), gr%zm(i,kp1), gr%zm(i,kp2), &
line 1154 : 101 chars :                                             gr%zm(i,km1), gr%zm(i,k00), gr%zm(i,kp1), gr%zm(i,kp2), &
line 1155 : 112 chars :                                             exner_zm(i,km1), exner_zm(i,k00), exner_zm(i,kp1), exner_zm(i,kp2) )
line 1158 : 101 chars :                                             gr%zm(i,km1), gr%zm(i,k00), gr%zm(i,kp1), gr%zm(i,kp2), &
line 1159 : 108 chars :                                             thlm_zm(i,km1), thlm_zm(i,k00), thlm_zm(i,kp1), thlm_zm(i,kp2) )
line 1162 : 101 chars :                                             gr%zm(i,km1), gr%zm(i,k00), gr%zm(i,kp1), gr%zm(i,kp2), &
line 1163 : 104 chars :                                             rtm_zm(i,km1), rtm_zm(i,k00), rtm_zm(i,kp1), rtm_zm(i,kp2) )
----------------------------------------------------------------------------------------------------
--------------------- Line Length Check: /home/jenkins/workspace/clubb_nvhpc_gpu_vs_cpu_diffness/src/Benchmark_cases/rico.F90 ---------------------
 WARNING: Lines exceed 100 characters (limit 100):
line 164 : 103 chars :         if ( sclr_idx%iiedsclr_thl > 0 ) edsclrm_forcing(i,k,sclr_idx%iiedsclr_thl) = thlm_forcing(i,k)
line 165 : 102 chars :         if ( sclr_idx%iiedsclr_rt  > 0 ) edsclrm_forcing(i,k,sclr_idx%iiedsclr_rt)  = rtm_forcing(i,k)
----------------------------------------------------------------------------------------------------
--------------------- Line Length Check: /home/jenkins/workspace/clubb_nvhpc_gpu_vs_cpu_diffness/src/Benchmark_cases/dycoms2_rf02.F90 ---------------------
 WARNING: Lines exceed 100 characters (limit 100):
line 125 : 105 chars :           if ( sclr_idx%iiedsclr_thl > 0 ) edsclrm_forcing(i,k,sclr_idx%iiedsclr_thl) = thlm_forcing(i,k)
line 126 : 104 chars :           if ( sclr_idx%iiedsclr_rt  > 0 ) edsclrm_forcing(i,k,sclr_idx%iiedsclr_rt)  = rtm_forcing(i,k)
----------------------------------------------------------------------------------------------------
--------------------- Line Length Check: /home/jenkins/workspace/clubb_nvhpc_gpu_vs_cpu_diffness/src/Benchmark_cases/bomex.F90 ---------------------
 WARNING: Lines exceed 100 characters (limit 100):
line 131 : 105 chars :           if ( sclr_idx%iiedsclr_thl > 0 ) edsclrm_forcing(i,k,sclr_idx%iiedsclr_thl) = thlm_forcing(i,k)
line 132 : 104 chars :           if ( sclr_idx%iiedsclr_rt  > 0 ) edsclrm_forcing(i,k,sclr_idx%iiedsclr_rt)  = rtm_forcing(i,k)
----------------------------------------------------------------------------------------------------
--------------------- Line Length Check: /home/jenkins/workspace/clubb_nvhpc_gpu_vs_cpu_diffness/src/Benchmark_cases/dycoms2_rf01.F90 ---------------------
 WARNING: Lines exceed 100 characters (limit 100):
line 94 : 105 chars :           if ( sclr_idx%iiedsclr_thl > 0 ) edsclrm_forcing(i,k,sclr_idx%iiedsclr_thl) = thlm_forcing(i,k)
line 95 : 104 chars :           if ( sclr_idx%iiedsclr_rt  > 0 ) edsclrm_forcing(i,k,sclr_idx%iiedsclr_rt)  = rtm_forcing(i,k)
----------------------------------------------------------------------------------------------------
--------------------- Line Length Check: /home/jenkins/workspace/clubb_nvhpc_gpu_vs_cpu_diffness/src/Benchmark_cases/gabls2.F90 ---------------------
 WARNING: Lines exceed 100 characters (limit 100):
line 158 : 105 chars :           if ( sclr_idx%iiedsclr_thl > 0 ) edsclrm_forcing(i,k,sclr_idx%iiedsclr_thl) = thlm_forcing(i,k)
line 159 : 104 chars :           if ( sclr_idx%iiedsclr_rt  > 0 ) edsclrm_forcing(i,k,sclr_idx%iiedsclr_rt)  = rtm_forcing(i,k)
----------------------------------------------------------------------------------------------------
--------------------- Line Length Check: /home/jenkins/workspace/clubb_nvhpc_gpu_vs_cpu_diffness/src/Benchmark_cases/mpace_b.F90 ---------------------
 WARNING: Lines exceed 100 characters (limit 100):
line 163 : 105 chars :           if ( sclr_idx%iiedsclr_thl > 0 ) edsclrm_forcing(i,k,sclr_idx%iiedsclr_thl) = thlm_forcing(i,k)
line 164 : 104 chars :           if ( sclr_idx%iiedsclr_rt  > 0 ) edsclrm_forcing(i,k,sclr_idx%iiedsclr_rt)  = rtm_forcing(i,k)
----------------------------------------------------------------------------------------------------
--------------------- Line Length Check: /home/jenkins/workspace/clubb_nvhpc_gpu_vs_cpu_diffness/src/Benchmark_cases/lba.F90 ---------------------
 WARNING: Lines exceed 100 characters (limit 100):
line 99 : 105 chars :           if ( sclr_idx%iiedsclr_thl > 0 ) edsclrm_forcing(i,k,sclr_idx%iiedsclr_thl) = thlm_forcing(i,k)
line 100 : 104 chars :           if ( sclr_idx%iiedsclr_rt  > 0 ) edsclrm_forcing(i,k,sclr_idx%iiedsclr_rt)  = rtm_forcing(i,k)
line 180 : 101 chars :       wpthlp_sfc(i) =  convert_sens_ht_to_km_s( ( 270._core_rknd * ft**1.5_core_rknd ), rho_sfc(i) )
line 181 : 101 chars :       wprtp_sfc(i)  =  convert_latent_ht_to_m_s( ( 554._core_rknd * ft**1.3_core_rknd ), rho_sfc(i) )
----------------------------------------------------------------------------------------------------
CLUBBStandardsCheck.py has finished.
FAIL: 11 check(s) failed.
No matches for /home/jenkins/workspace/clubb_nvhpc_gpu_vs_cpu_diffness/src/KK_microphys/
CLUBBStandardsCheck.py has begun.
--------------------- Line Length Check: /home/jenkins/workspace/clubb_nvhpc_gpu_vs_cpu_diffness/src/G_unit_test_types/pdf_parameter_tests.F90 ---------------------
 WARNING: Lines exceed 100 characters (limit 100):
line 542 : 104 chars :       l_prescribed_avg_deltaz,      & ! used in calc_derrived_params_api. If .true., avg_deltaz = deltaz
----------------------------------------------------------------------------------------------------
--------------------- Default Private Check: /home/jenkins/workspace/clubb_nvhpc_gpu_vs_cpu_diffness/src/G_unit_test_types/rev_direction_grid_test.F90 ---------------------
WARNING: Missing default 'private' in the following modules:
line 1: module rev_direction_grid_test
----------------------------------------------------------------------------------------------------
--------------------- Line Length Check: /home/jenkins/workspace/clubb_nvhpc_gpu_vs_cpu_diffness/src/G_unit_test_types/rev_direction_grid_test.F90 ---------------------
 WARNING: Lines exceed 100 characters (limit 100):
line 233 : 113 chars :     !seed used =  -1102123834  1480475276  -248259584   525496705  1614213535 -1267052688     6290033   -78466652
line 234 : 127 chars :     !seed_output = (/ -1102123834,  1480475276,  -248259584,   525496705,  1614213535, -1267052688,     6290033,   -78466652 /)
line 750 : 101 chars :        call xpyp_term_ta_pdf_lhs_godunov( gr_ascending%nzm, gr_ascending%nzt, 1, gr_ascending, & ! In
line 754 : 104 chars :        call xpyp_term_ta_pdf_lhs_godunov( gr_descending%nzm, gr_descending%nzt, 1, gr_descending, & ! In
line 795 : 101 chars :        call xpyp_term_ta_pdf_rhs_godunov( gr_ascending%nzm, gr_ascending%nzt, 1, gr_ascending, & ! In
line 801 : 104 chars :        call xpyp_term_ta_pdf_rhs_godunov( gr_descending%nzm, gr_descending%nzt, 1, gr_descending, & ! In
----------------------------------------------------------------------------------------------------
--------------------- Default Private Check: /home/jenkins/workspace/clubb_nvhpc_gpu_vs_cpu_diffness/src/G_unit_test_types/fill_holes_tests.F90 ---------------------
WARNING: Missing default 'private' in the following modules:
line 19: module fill_holes_tests
----------------------------------------------------------------------------------------------------
--------------------- Line Length Check: /home/jenkins/workspace/clubb_nvhpc_gpu_vs_cpu_diffness/src/G_unit_test_types/fill_holes_tests.F90 ---------------------
 WARNING: Lines exceed 100 characters (limit 100):
line 162 : 102 chars :                     field_initial(i,k)  =  10_core_rknd * ( sin( 8.0 * pi * ( k + i ) / nz ) + one ) &
line 180 : 110 chars :             if ( l_print_name ) print *, "filling holes of: easy_fill_test_"//trim(fill_type_names(fill_type))
line 195 : 121 chars :                         write(*,'(A6,I5,1X,I5,A4,E30.20,A3,E30.20)') "field(", i, k, ") = ", field(i,k), " < ", threshold
line 241 : 118 chars :             if ( l_print_name ) print *, "filling holes of: reverse_easy_fill_test_"//trim(fill_type_names(fill_type))
line 344 : 102 chars :                     field_initial(i,k)  =  10_core_rknd * ( sin( 8.0 * pi * ( k + i ) / nz ) + one ) &
line 363 : 113 chars :             if ( l_print_name ) print *, "filling holes of: below_thresh_test_"//trim(fill_type_names(fill_type))
line 385 : 103 chars :                 print *, "-- error", two * abs( initial_mass - new_mass ) / ( initial_mass + new_mass )
line 419 : 121 chars :             if ( l_print_name ) print *, "filling holes of: reverse_below_thresh_test_"//trim(fill_type_names(fill_type))
line 430 : 116 chars :                 print *, "ERROR in below_thresh_test REVERSE MODE: method was not conservative in grid reverse mode"
----------------------------------------------------------------------------------------------------
--------------------- Line Length Check: /home/jenkins/workspace/clubb_nvhpc_gpu_vs_cpu_diffness/src/G_unit_test_types/spurious_source_test.F90 ---------------------
 WARNING: Lines exceed 100 characters (limit 100):
line 500 : 104 chars :       l_prescribed_avg_deltaz,      & ! used in calc_derrived_params_api. If .true., avg_deltaz = deltaz
----------------------------------------------------------------------------------------------------
CLUBBStandardsCheck.py has finished.
FAIL: 6 check(s) failed.
===============================================================
CLUBBStandardsCheck FAILED
  THIS IS PRINTED IN ALL RED, CAPITAL LETTERS, AND USES
  AN EXCLAMATION MARK TO ENSURE THE DEVELOPERS FEEL SHAME!
  IF YOU ARE ONE OF THESE "DEVELOPERS" CHECK THE
  LOG FILE FOR DETAILS: /home/jenkins/workspace/clubb_nvhpc_gpu_vs_cpu_diffness/build/nvfortran_GPUopenmp_PRECdouble/cmake_build_output.txt
===============================================================

Build completed successfully, but some source code checks have failed.
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Run GPU_OMP)
[Pipeline] lock
Trying to acquire lock on [Resource: GPU_built-in]
Resource [GPU_built-in] did not exist. Created.
Lock acquired on [Resource: GPU_built-in]
[Pipeline] {
[Pipeline] sh
+ ulimit -s 8388608
+ run_scripts/run_scm.py -params clubb_params_multi_col.in -stats input/stats/multi_col_stats.in -debug 0 arm
 - using executable: /home/jenkins/workspace/clubb_nvhpc_gpu_vs_cpu_diffness/run_scripts/../install/latest/clubb_standalone
=================== Running arm ===================
 When the l_diag_Lscale_from_tau flag is enabled, C2rt must have a value of 1.
 C2rt =     2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000     
 Warning in check_clubb_settings_api
 When the l_diag_Lscale_from_tau flag is enabled, C2thl must have a value of 1.
 C2thl =     2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000     
 Warning in check_clubb_settings_api
 When the l_diag_Lscale_from_tau flag is enabled, C2rtthl must have a value of 1.
 C2rtthl =     2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000     
 Warning in check_clubb_settings_api
 When the l_diag_Lscale_from_tau flag is enabled, C6rt must have a value of 1.
 C6rt =     2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000     
 Warning in check_clubb_settings_api
 When the l_diag_Lscale_from_tau flag is enabled, C6rtb must have a value of 1.
 C6rtb =     2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000     
 Warning in check_clubb_settings_api
 When the l_diag_Lscale_from_tau flag is enabled, C6thl must have a value of 1.
 C6thl =     2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000     
 Warning in check_clubb_settings_api
 When the l_diag_Lscale_from_tau flag is enabled, C6thlb must have a value of 1.
 C6thlb =     2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000     
 Warning in check_clubb_settings_api
 stats_nsamp =             1
 stats_nout =             1
iteration:        1 /      870 -- time =    41460.0 /    93600.0
iteration:        2 /      870 -- time =    41520.0 /    93600.0
iteration:        3 /      870 -- time =    41580.0 /    93600.0
iteration:        4 /      870 -- time =    41640.0 /    93600.0
iteration:        5 /      870 -- time =    41700.0 /    93600.0
iteration:        6 /      870 -- time =    41760.0 /    93600.0
iteration:        7 /      870 -- time =    41820.0 /    93600.0
iteration:        8 /      870 -- time =    41880.0 /    93600.0
iteration:        9 /      870 -- time =    41940.0 /    93600.0
iteration:       10 /      870 -- time =    42000.0 /    93600.0
iteration:       11 /      870 -- time =    42060.0 /    93600.0
iteration:       12 /      870 -- time =    42120.0 /    93600.0
iteration:       13 /      870 -- time =    42180.0 /    93600.0
iteration:       14 /      870 -- time =    42240.0 /    93600.0
iteration:       15 /      870 -- time =    42300.0 /    93600.0
iteration:       16 /      870 -- time =    42360.0 /    93600.0
iteration:       17 /      870 -- time =    42420.0 /    93600.0
iteration:       18 /      870 -- time =    42480.0 /    93600.0
iteration:       19 /      870 -- time =    42540.0 /    93600.0
iteration:       20 /      870 -- time =    42600.0 /    93600.0
iteration:       21 /      870 -- time =    42660.0 /    93600.0
iteration:       22 /      870 -- time =    42720.0 /    93600.0
iteration:       23 /      870 -- time =    42780.0 /    93600.0
iteration:       24 /      870 -- time =    42840.0 /    93600.0
iteration:       25 /      870 -- time =    42900.0 /    93600.0
iteration:       26 /      870 -- time =    42960.0 /    93600.0
iteration:       27 /      870 -- time =    43020.0 /    93600.0
iteration:       28 /      870 -- time =    43080.0 /    93600.0
iteration:       29 /      870 -- time =    43140.0 /    93600.0
iteration:       30 /      870 -- time =    43200.0 /    93600.0
iteration:       31 /      870 -- time =    43260.0 /    93600.0
iteration:       32 /      870 -- time =    43320.0 /    93600.0
iteration:       33 /      870 -- time =    43380.0 /    93600.0
iteration:       34 /      870 -- time =    43440.0 /    93600.0
iteration:       35 /      870 -- time =    43500.0 /    93600.0
iteration:       36 /      870 -- time =    43560.0 /    93600.0
iteration:       37 /      870 -- time =    43620.0 /    93600.0
iteration:       38 /      870 -- time =    43680.0 /    93600.0
iteration:       39 /      870 -- time =    43740.0 /    93600.0
iteration:       40 /      870 -- time =    43800.0 /    93600.0
iteration:       41 /      870 -- time =    43860.0 /    93600.0
iteration:       42 /      870 -- time =    43920.0 /    93600.0
iteration:       43 /      870 -- time =    43980.0 /    93600.0
iteration:       44 /      870 -- time =    44040.0 /    93600.0
iteration:       45 /      870 -- time =    44100.0 /    93600.0
iteration:       46 /      870 -- time =    44160.0 /    93600.0
iteration:       47 /      870 -- time =    44220.0 /    93600.0
iteration:       48 /      870 -- time =    44280.0 /    93600.0
iteration:       49 /      870 -- time =    44340.0 /    93600.0
iteration:       50 /      870 -- time =    44400.0 /    93600.0
iteration:       51 /      870 -- time =    44460.0 /    93600.0
iteration:       52 /      870 -- time =    44520.0 /    93600.0
iteration:       53 /      870 -- time =    44580.0 /    93600.0
iteration:       54 /      870 -- time =    44640.0 /    93600.0
iteration:       55 /      870 -- time =    44700.0 /    93600.0
iteration:       56 /      870 -- time =    44760.0 /    93600.0
iteration:       57 /      870 -- time =    44820.0 /    93600.0
iteration:       58 /      870 -- time =    44880.0 /    93600.0
iteration:       59 /      870 -- time =    44940.0 /    93600.0
iteration:       60 /      870 -- time =    45000.0 /    93600.0
iteration:       61 /      870 -- time =    45060.0 /    93600.0
iteration:       62 /      870 -- time =    45120.0 /    93600.0
iteration:       63 /      870 -- time =    45180.0 /    93600.0
iteration:       64 /      870 -- time =    45240.0 /    93600.0
iteration:       65 /      870 -- time =    45300.0 /    93600.0
iteration:       66 /      870 -- time =    45360.0 /    93600.0
iteration:       67 /      870 -- time =    45420.0 /    93600.0
iteration:       68 /      870 -- time =    45480.0 /    93600.0
iteration:       69 /      870 -- time =    45540.0 /    93600.0
iteration:       70 /      870 -- time =    45600.0 /    93600.0
iteration:       71 /      870 -- time =    45660.0 /    93600.0
iteration:       72 /      870 -- time =    45720.0 /    93600.0
iteration:       73 /      870 -- time =    45780.0 /    93600.0
iteration:       74 /      870 -- time =    45840.0 /    93600.0
iteration:       75 /      870 -- time =    45900.0 /    93600.0
iteration:       76 /      870 -- time =    45960.0 /    93600.0
iteration:       77 /      870 -- time =    46020.0 /    93600.0
iteration:       78 /      870 -- time =    46080.0 /    93600.0
iteration:       79 /      870 -- time =    46140.0 /    93600.0
iteration:       80 /      870 -- time =    46200.0 /    93600.0
iteration:       81 /      870 -- time =    46260.0 /    93600.0
iteration:       82 /      870 -- time =    46320.0 /    93600.0
iteration:       83 /      870 -- time =    46380.0 /    93600.0
iteration:       84 /      870 -- time =    46440.0 /    93600.0
iteration:       85 /      870 -- time =    46500.0 /    93600.0
iteration:       86 /      870 -- time =    46560.0 /    93600.0
iteration:       87 /      870 -- time =    46620.0 /    93600.0
iteration:       88 /      870 -- time =    46680.0 /    93600.0
iteration:       89 /      870 -- time =    46740.0 /    93600.0
iteration:       90 /      870 -- time =    46800.0 /    93600.0
iteration:       91 /      870 -- time =    46860.0 /    93600.0
iteration:       92 /      870 -- time =    46920.0 /    93600.0
iteration:       93 /      870 -- time =    46980.0 /    93600.0
iteration:       94 /      870 -- time =    47040.0 /    93600.0
iteration:       95 /      870 -- time =    47100.0 /    93600.0
iteration:       96 /      870 -- time =    47160.0 /    93600.0
iteration:       97 /      870 -- time =    47220.0 /    93600.0
iteration:       98 /      870 -- time =    47280.0 /    93600.0
iteration:       99 /      870 -- time =    47340.0 /    93600.0
iteration:      100 /      870 -- time =    47400.0 /    93600.0
iteration:      101 /      870 -- time =    47460.0 /    93600.0
iteration:      102 /      870 -- time =    47520.0 /    93600.0
iteration:      103 /      870 -- time =    47580.0 /    93600.0
iteration:      104 /      870 -- time =    47640.0 /    93600.0
iteration:      105 /      870 -- time =    47700.0 /    93600.0
iteration:      106 /      870 -- time =    47760.0 /    93600.0
iteration:      107 /      870 -- time =    47820.0 /    93600.0
iteration:      108 /      870 -- time =    47880.0 /    93600.0
iteration:      109 /      870 -- time =    47940.0 /    93600.0
iteration:      110 /      870 -- time =    48000.0 /    93600.0
iteration:      111 /      870 -- time =    48060.0 /    93600.0
iteration:      112 /      870 -- time =    48120.0 /    93600.0
iteration:      113 /      870 -- time =    48180.0 /    93600.0
iteration:      114 /      870 -- time =    48240.0 /    93600.0
iteration:      115 /      870 -- time =    48300.0 /    93600.0
iteration:      116 /      870 -- time =    48360.0 /    93600.0
iteration:      117 /      870 -- time =    48420.0 /    93600.0
iteration:      118 /      870 -- time =    48480.0 /    93600.0
iteration:      119 /      870 -- time =    48540.0 /    93600.0
iteration:      120 /      870 -- time =    48600.0 /    93600.0
iteration:      121 /      870 -- time =    48660.0 /    93600.0
iteration:      122 /      870 -- time =    48720.0 /    93600.0
iteration:      123 /      870 -- time =    48780.0 /    93600.0
iteration:      124 /      870 -- time =    48840.0 /    93600.0
iteration:      125 /      870 -- time =    48900.0 /    93600.0
iteration:      126 /      870 -- time =    48960.0 /    93600.0
iteration:      127 /      870 -- time =    49020.0 /    93600.0
iteration:      128 /      870 -- time =    49080.0 /    93600.0
iteration:      129 /      870 -- time =    49140.0 /    93600.0
iteration:      130 /      870 -- time =    49200.0 /    93600.0
iteration:      131 /      870 -- time =    49260.0 /    93600.0
iteration:      132 /      870 -- time =    49320.0 /    93600.0
iteration:      133 /      870 -- time =    49380.0 /    93600.0
iteration:      134 /      870 -- time =    49440.0 /    93600.0
iteration:      135 /      870 -- time =    49500.0 /    93600.0
iteration:      136 /      870 -- time =    49560.0 /    93600.0
iteration:      137 /      870 -- time =    49620.0 /    93600.0
iteration:      138 /      870 -- time =    49680.0 /    93600.0
iteration:      139 /      870 -- time =    49740.0 /    93600.0
iteration:      140 /      870 -- time =    49800.0 /    93600.0
iteration:      141 /      870 -- time =    49860.0 /    93600.0
iteration:      142 /      870 -- time =    49920.0 /    93600.0
iteration:      143 /      870 -- time =    49980.0 /    93600.0
iteration:      144 /      870 -- time =    50040.0 /    93600.0
iteration:      145 /      870 -- time =    50100.0 /    93600.0
iteration:      146 /      870 -- time =    50160.0 /    93600.0
iteration:      147 /      870 -- time =    50220.0 /    93600.0
iteration:      148 /      870 -- time =    50280.0 /    93600.0
iteration:      149 /      870 -- time =    50340.0 /    93600.0
iteration:      150 /      870 -- time =    50400.0 /    93600.0
iteration:      151 /      870 -- time =    50460.0 /    93600.0
iteration:      152 /      870 -- time =    50520.0 /    93600.0
iteration:      153 /      870 -- time =    50580.0 /    93600.0
iteration:      154 /      870 -- time =    50640.0 /    93600.0
iteration:      155 /      870 -- time =    50700.0 /    93600.0
iteration:      156 /      870 -- time =    50760.0 /    93600.0
iteration:      157 /      870 -- time =    50820.0 /    93600.0
iteration:      158 /      870 -- time =    50880.0 /    93600.0
iteration:      159 /      870 -- time =    50940.0 /    93600.0
iteration:      160 /      870 -- time =    51000.0 /    93600.0
iteration:      161 /      870 -- time =    51060.0 /    93600.0
iteration:      162 /      870 -- time =    51120.0 /    93600.0
iteration:      163 /      870 -- time =    51180.0 /    93600.0
iteration:      164 /      870 -- time =    51240.0 /    93600.0
iteration:      165 /      870 -- time =    51300.0 /    93600.0
iteration:      166 /      870 -- time =    51360.0 /    93600.0
iteration:      167 /      870 -- time =    51420.0 /    93600.0
iteration:      168 /      870 -- time =    51480.0 /    93600.0
iteration:      169 /      870 -- time =    51540.0 /    93600.0
iteration:      170 /      870 -- time =    51600.0 /    93600.0
iteration:      171 /      870 -- time =    51660.0 /    93600.0
iteration:      172 /      870 -- time =    51720.0 /    93600.0
iteration:      173 /      870 -- time =    51780.0 /    93600.0
iteration:      174 /      870 -- time =    51840.0 /    93600.0
iteration:      175 /      870 -- time =    51900.0 /    93600.0
iteration:      176 /      870 -- time =    51960.0 /    93600.0
iteration:      177 /      870 -- time =    52020.0 /    93600.0
iteration:      178 /      870 -- time =    52080.0 /    93600.0
iteration:      179 /      870 -- time =    52140.0 /    93600.0
iteration:      180 /      870 -- time =    52200.0 /    93600.0
iteration:      181 /      870 -- time =    52260.0 /    93600.0
iteration:      182 /      870 -- time =    52320.0 /    93600.0
iteration:      183 /      870 -- time =    52380.0 /    93600.0
iteration:      184 /      870 -- time =    52440.0 /    93600.0
iteration:      185 /      870 -- time =    52500.0 /    93600.0
iteration:      186 /      870 -- time =    52560.0 /    93600.0
iteration:      187 /      870 -- time =    52620.0 /    93600.0
iteration:      188 /      870 -- time =    52680.0 /    93600.0
iteration:      189 /      870 -- time =    52740.0 /    93600.0
iteration:      190 /      870 -- time =    52800.0 /    93600.0
iteration:      191 /      870 -- time =    52860.0 /    93600.0
iteration:      192 /      870 -- time =    52920.0 /    93600.0
iteration:      193 /      870 -- time =    52980.0 /    93600.0
iteration:      194 /      870 -- time =    53040.0 /    93600.0
iteration:      195 /      870 -- time =    53100.0 /    93600.0
iteration:      196 /      870 -- time =    53160.0 /    93600.0
iteration:      197 /      870 -- time =    53220.0 /    93600.0
iteration:      198 /      870 -- time =    53280.0 /    93600.0
iteration:      199 /      870 -- time =    53340.0 /    93600.0
iteration:      200 /      870 -- time =    53400.0 /    93600.0
iteration:      201 /      870 -- time =    53460.0 /    93600.0
iteration:      202 /      870 -- time =    53520.0 /    93600.0
iteration:      203 /      870 -- time =    53580.0 /    93600.0
iteration:      204 /      870 -- time =    53640.0 /    93600.0
iteration:      205 /      870 -- time =    53700.0 /    93600.0
iteration:      206 /      870 -- time =    53760.0 /    93600.0
iteration:      207 /      870 -- time =    53820.0 /    93600.0
iteration:      208 /      870 -- time =    53880.0 /    93600.0
iteration:      209 /      870 -- time =    53940.0 /    93600.0
iteration:      210 /      870 -- time =    54000.0 /    93600.0
iteration:      211 /      870 -- time =    54060.0 /    93600.0
iteration:      212 /      870 -- time =    54120.0 /    93600.0
iteration:      213 /      870 -- time =    54180.0 /    93600.0
iteration:      214 /      870 -- time =    54240.0 /    93600.0
iteration:      215 /      870 -- time =    54300.0 /    93600.0
iteration:      216 /      870 -- time =    54360.0 /    93600.0
iteration:      217 /      870 -- time =    54420.0 /    93600.0
iteration:      218 /      870 -- time =    54480.0 /    93600.0
iteration:      219 /      870 -- time =    54540.0 /    93600.0
iteration:      220 /      870 -- time =    54600.0 /    93600.0
iteration:      221 /      870 -- time =    54660.0 /    93600.0
iteration:      222 /      870 -- time =    54720.0 /    93600.0
iteration:      223 /      870 -- time =    54780.0 /    93600.0
iteration:      224 /      870 -- time =    54840.0 /    93600.0
iteration:      225 /      870 -- time =    54900.0 /    93600.0
iteration:      226 /      870 -- time =    54960.0 /    93600.0
iteration:      227 /      870 -- time =    55020.0 /    93600.0
iteration:      228 /      870 -- time =    55080.0 /    93600.0
iteration:      229 /      870 -- time =    55140.0 /    93600.0
iteration:      230 /      870 -- time =    55200.0 /    93600.0
iteration:      231 /      870 -- time =    55260.0 /    93600.0
iteration:      232 /      870 -- time =    55320.0 /    93600.0
iteration:      233 /      870 -- time =    55380.0 /    93600.0
iteration:      234 /      870 -- time =    55440.0 /    93600.0
iteration:      235 /      870 -- time =    55500.0 /    93600.0
iteration:      236 /      870 -- time =    55560.0 /    93600.0
iteration:      237 /      870 -- time =    55620.0 /    93600.0
iteration:      238 /      870 -- time =    55680.0 /    93600.0
iteration:      239 /      870 -- time =    55740.0 /    93600.0
iteration:      240 /      870 -- time =    55800.0 /    93600.0
iteration:      241 /      870 -- time =    55860.0 /    93600.0
iteration:      242 /      870 -- time =    55920.0 /    93600.0
iteration:      243 /      870 -- time =    55980.0 /    93600.0
iteration:      244 /      870 -- time =    56040.0 /    93600.0
iteration:      245 /      870 -- time =    56100.0 /    93600.0
iteration:      246 /      870 -- time =    56160.0 /    93600.0
iteration:      247 /      870 -- time =    56220.0 /    93600.0
iteration:      248 /      870 -- time =    56280.0 /    93600.0
iteration:      249 /      870 -- time =    56340.0 /    93600.0
iteration:      250 /      870 -- time =    56400.0 /    93600.0
iteration:      251 /      870 -- time =    56460.0 /    93600.0
iteration:      252 /      870 -- time =    56520.0 /    93600.0
iteration:      253 /      870 -- time =    56580.0 /    93600.0
iteration:      254 /      870 -- time =    56640.0 /    93600.0
iteration:      255 /      870 -- time =    56700.0 /    93600.0
iteration:      256 /      870 -- time =    56760.0 /    93600.0
iteration:      257 /      870 -- time =    56820.0 /    93600.0
iteration:      258 /      870 -- time =    56880.0 /    93600.0
iteration:      259 /      870 -- time =    56940.0 /    93600.0
iteration:      260 /      870 -- time =    57000.0 /    93600.0
iteration:      261 /      870 -- time =    57060.0 /    93600.0
iteration:      262 /      870 -- time =    57120.0 /    93600.0
iteration:      263 /      870 -- time =    57180.0 /    93600.0
iteration:      264 /      870 -- time =    57240.0 /    93600.0
iteration:      265 /      870 -- time =    57300.0 /    93600.0
iteration:      266 /      870 -- time =    57360.0 /    93600.0
iteration:      267 /      870 -- time =    57420.0 /    93600.0
iteration:      268 /      870 -- time =    57480.0 /    93600.0
iteration:      269 /      870 -- time =    57540.0 /    93600.0
iteration:      270 /      870 -- time =    57600.0 /    93600.0
iteration:      271 /      870 -- time =    57660.0 /    93600.0
iteration:      272 /      870 -- time =    57720.0 /    93600.0
iteration:      273 /      870 -- time =    57780.0 /    93600.0
iteration:      274 /      870 -- time =    57840.0 /    93600.0
iteration:      275 /      870 -- time =    57900.0 /    93600.0
iteration:      276 /      870 -- time =    57960.0 /    93600.0
iteration:      277 /      870 -- time =    58020.0 /    93600.0
iteration:      278 /      870 -- time =    58080.0 /    93600.0
iteration:      279 /      870 -- time =    58140.0 /    93600.0
iteration:      280 /      870 -- time =    58200.0 /    93600.0
iteration:      281 /      870 -- time =    58260.0 /    93600.0
iteration:      282 /      870 -- time =    58320.0 /    93600.0
iteration:      283 /      870 -- time =    58380.0 /    93600.0
iteration:      284 /      870 -- time =    58440.0 /    93600.0
iteration:      285 /      870 -- time =    58500.0 /    93600.0
iteration:      286 /      870 -- time =    58560.0 /    93600.0
iteration:      287 /      870 -- time =    58620.0 /    93600.0
iteration:      288 /      870 -- time =    58680.0 /    93600.0
iteration:      289 /      870 -- time =    58740.0 /    93600.0
iteration:      290 /      870 -- time =    58800.0 /    93600.0
iteration:      291 /      870 -- time =    58860.0 /    93600.0
iteration:      292 /      870 -- time =    58920.0 /    93600.0
iteration:      293 /      870 -- time =    58980.0 /    93600.0
iteration:      294 /      870 -- time =    59040.0 /    93600.0
iteration:      295 /      870 -- time =    59100.0 /    93600.0
iteration:      296 /      870 -- time =    59160.0 /    93600.0
iteration:      297 /      870 -- time =    59220.0 /    93600.0
iteration:      298 /      870 -- time =    59280.0 /    93600.0
iteration:      299 /      870 -- time =    59340.0 /    93600.0
iteration:      300 /      870 -- time =    59400.0 /    93600.0
iteration:      301 /      870 -- time =    59460.0 /    93600.0
iteration:      302 /      870 -- time =    59520.0 /    93600.0
iteration:      303 /      870 -- time =    59580.0 /    93600.0
iteration:      304 /      870 -- time =    59640.0 /    93600.0
iteration:      305 /      870 -- time =    59700.0 /    93600.0
iteration:      306 /      870 -- time =    59760.0 /    93600.0
iteration:      307 /      870 -- time =    59820.0 /    93600.0
iteration:      308 /      870 -- time =    59880.0 /    93600.0
iteration:      309 /      870 -- time =    59940.0 /    93600.0
iteration:      310 /      870 -- time =    60000.0 /    93600.0
iteration:      311 /      870 -- time =    60060.0 /    93600.0
iteration:      312 /      870 -- time =    60120.0 /    93600.0
iteration:      313 /      870 -- time =    60180.0 /    93600.0
iteration:      314 /      870 -- time =    60240.0 /    93600.0
iteration:      315 /      870 -- time =    60300.0 /    93600.0
iteration:      316 /      870 -- time =    60360.0 /    93600.0
iteration:      317 /      870 -- time =    60420.0 /    93600.0
iteration:      318 /      870 -- time =    60480.0 /    93600.0
iteration:      319 /      870 -- time =    60540.0 /    93600.0
iteration:      320 /      870 -- time =    60600.0 /    93600.0
iteration:      321 /      870 -- time =    60660.0 /    93600.0
iteration:      322 /      870 -- time =    60720.0 /    93600.0
iteration:      323 /      870 -- time =    60780.0 /    93600.0
iteration:      324 /      870 -- time =    60840.0 /    93600.0
iteration:      325 /      870 -- time =    60900.0 /    93600.0
iteration:      326 /      870 -- time =    60960.0 /    93600.0
iteration:      327 /      870 -- time =    61020.0 /    93600.0
iteration:      328 /      870 -- time =    61080.0 /    93600.0
iteration:      329 /      870 -- time =    61140.0 /    93600.0
iteration:      330 /      870 -- time =    61200.0 /    93600.0
iteration:      331 /      870 -- time =    61260.0 /    93600.0
iteration:      332 /      870 -- time =    61320.0 /    93600.0
iteration:      333 /      870 -- time =    61380.0 /    93600.0
iteration:      334 /      870 -- time =    61440.0 /    93600.0
iteration:      335 /      870 -- time =    61500.0 /    93600.0
iteration:      336 /      870 -- time =    61560.0 /    93600.0
iteration:      337 /      870 -- time =    61620.0 /    93600.0
iteration:      338 /      870 -- time =    61680.0 /    93600.0
iteration:      339 /      870 -- time =    61740.0 /    93600.0
iteration:      340 /      870 -- time =    61800.0 /    93600.0
iteration:      341 /      870 -- time =    61860.0 /    93600.0
iteration:      342 /      870 -- time =    61920.0 /    93600.0
iteration:      343 /      870 -- time =    61980.0 /    93600.0
iteration:      344 /      870 -- time =    62040.0 /    93600.0
iteration:      345 /      870 -- time =    62100.0 /    93600.0
iteration:      346 /      870 -- time =    62160.0 /    93600.0
iteration:      347 /      870 -- time =    62220.0 /    93600.0
iteration:      348 /      870 -- time =    62280.0 /    93600.0
iteration:      349 /      870 -- time =    62340.0 /    93600.0
iteration:      350 /      870 -- time =    62400.0 /    93600.0
iteration:      351 /      870 -- time =    62460.0 /    93600.0
iteration:      352 /      870 -- time =    62520.0 /    93600.0
iteration:      353 /      870 -- time =    62580.0 /    93600.0
iteration:      354 /      870 -- time =    62640.0 /    93600.0
iteration:      355 /      870 -- time =    62700.0 /    93600.0
iteration:      356 /      870 -- time =    62760.0 /    93600.0
iteration:      357 /      870 -- time =    62820.0 /    93600.0
iteration:      358 /      870 -- time =    62880.0 /    93600.0
iteration:      359 /      870 -- time =    62940.0 /    93600.0
iteration:      360 /      870 -- time =    63000.0 /    93600.0
iteration:      361 /      870 -- time =    63060.0 /    93600.0
iteration:      362 /      870 -- time =    63120.0 /    93600.0
iteration:      363 /      870 -- time =    63180.0 /    93600.0
iteration:      364 /      870 -- time =    63240.0 /    93600.0
iteration:      365 /      870 -- time =    63300.0 /    93600.0
iteration:      366 /      870 -- time =    63360.0 /    93600.0
iteration:      367 /      870 -- time =    63420.0 /    93600.0
iteration:      368 /      870 -- time =    63480.0 /    93600.0
iteration:      369 /      870 -- time =    63540.0 /    93600.0
iteration:      370 /      870 -- time =    63600.0 /    93600.0
iteration:      371 /      870 -- time =    63660.0 /    93600.0
iteration:      372 /      870 -- time =    63720.0 /    93600.0
iteration:      373 /      870 -- time =    63780.0 /    93600.0
iteration:      374 /      870 -- time =    63840.0 /    93600.0
iteration:      375 /      870 -- time =    63900.0 /    93600.0
iteration:      376 /      870 -- time =    63960.0 /    93600.0
iteration:      377 /      870 -- time =    64020.0 /    93600.0
iteration:      378 /      870 -- time =    64080.0 /    93600.0
iteration:      379 /      870 -- time =    64140.0 /    93600.0
iteration:      380 /      870 -- time =    64200.0 /    93600.0
iteration:      381 /      870 -- time =    64260.0 /    93600.0
iteration:      382 /      870 -- time =    64320.0 /    93600.0
iteration:      383 /      870 -- time =    64380.0 /    93600.0
iteration:      384 /      870 -- time =    64440.0 /    93600.0
iteration:      385 /      870 -- time =    64500.0 /    93600.0
iteration:      386 /      870 -- time =    64560.0 /    93600.0
iteration:      387 /      870 -- time =    64620.0 /    93600.0
iteration:      388 /      870 -- time =    64680.0 /    93600.0
iteration:      389 /      870 -- time =    64740.0 /    93600.0
iteration:      390 /      870 -- time =    64800.0 /    93600.0
iteration:      391 /      870 -- time =    64860.0 /    93600.0
iteration:      392 /      870 -- time =    64920.0 /    93600.0
iteration:      393 /      870 -- time =    64980.0 /    93600.0
iteration:      394 /      870 -- time =    65040.0 /    93600.0
iteration:      395 /      870 -- time =    65100.0 /    93600.0
iteration:      396 /      870 -- time =    65160.0 /    93600.0
iteration:      397 /      870 -- time =    65220.0 /    93600.0
iteration:      398 /      870 -- time =    65280.0 /    93600.0
iteration:      399 /      870 -- time =    65340.0 /    93600.0
iteration:      400 /      870 -- time =    65400.0 /    93600.0
iteration:      401 /      870 -- time =    65460.0 /    93600.0
iteration:      402 /      870 -- time =    65520.0 /    93600.0
iteration:      403 /      870 -- time =    65580.0 /    93600.0
iteration:      404 /      870 -- time =    65640.0 /    93600.0
iteration:      405 /      870 -- time =    65700.0 /    93600.0
iteration:      406 /      870 -- time =    65760.0 /    93600.0
iteration:      407 /      870 -- time =    65820.0 /    93600.0
iteration:      408 /      870 -- time =    65880.0 /    93600.0
iteration:      409 /      870 -- time =    65940.0 /    93600.0
iteration:      410 /      870 -- time =    66000.0 /    93600.0
iteration:      411 /      870 -- time =    66060.0 /    93600.0
iteration:      412 /      870 -- time =    66120.0 /    93600.0
iteration:      413 /      870 -- time =    66180.0 /    93600.0
iteration:      414 /      870 -- time =    66240.0 /    93600.0
iteration:      415 /      870 -- time =    66300.0 /    93600.0
iteration:      416 /      870 -- time =    66360.0 /    93600.0
iteration:      417 /      870 -- time =    66420.0 /    93600.0
iteration:      418 /      870 -- time =    66480.0 /    93600.0
iteration:      419 /      870 -- time =    66540.0 /    93600.0
iteration:      420 /      870 -- time =    66600.0 /    93600.0
iteration:      421 /      870 -- time =    66660.0 /    93600.0
iteration:      422 /      870 -- time =    66720.0 /    93600.0
iteration:      423 /      870 -- time =    66780.0 /    93600.0
iteration:      424 /      870 -- time =    66840.0 /    93600.0
iteration:      425 /      870 -- time =    66900.0 /    93600.0
iteration:      426 /      870 -- time =    66960.0 /    93600.0
iteration:      427 /      870 -- time =    67020.0 /    93600.0
iteration:      428 /      870 -- time =    67080.0 /    93600.0
iteration:      429 /      870 -- time =    67140.0 /    93600.0
iteration:      430 /      870 -- time =    67200.0 /    93600.0
iteration:      431 /      870 -- time =    67260.0 /    93600.0
iteration:      432 /      870 -- time =    67320.0 /    93600.0
iteration:      433 /      870 -- time =    67380.0 /    93600.0
iteration:      434 /      870 -- time =    67440.0 /    93600.0
iteration:      435 /      870 -- time =    67500.0 /    93600.0
iteration:      436 /      870 -- time =    67560.0 /    93600.0
iteration:      437 /      870 -- time =    67620.0 /    93600.0
iteration:      438 /      870 -- time =    67680.0 /    93600.0
iteration:      439 /      870 -- time =    67740.0 /    93600.0
iteration:      440 /      870 -- time =    67800.0 /    93600.0
iteration:      441 /      870 -- time =    67860.0 /    93600.0
iteration:      442 /      870 -- time =    67920.0 /    93600.0
iteration:      443 /      870 -- time =    67980.0 /    93600.0
iteration:      444 /      870 -- time =    68040.0 /    93600.0
iteration:      445 /      870 -- time =    68100.0 /    93600.0
iteration:      446 /      870 -- time =    68160.0 /    93600.0
iteration:      447 /      870 -- time =    68220.0 /    93600.0
iteration:      448 /      870 -- time =    68280.0 /    93600.0
iteration:      449 /      870 -- time =    68340.0 /    93600.0
iteration:      450 /      870 -- time =    68400.0 /    93600.0
iteration:      451 /      870 -- time =    68460.0 /    93600.0
iteration:      452 /      870 -- time =    68520.0 /    93600.0
iteration:      453 /      870 -- time =    68580.0 /    93600.0
iteration:      454 /      870 -- time =    68640.0 /    93600.0
iteration:      455 /      870 -- time =    68700.0 /    93600.0
iteration:      456 /      870 -- time =    68760.0 /    93600.0
iteration:      457 /      870 -- time =    68820.0 /    93600.0
iteration:      458 /      870 -- time =    68880.0 /    93600.0
iteration:      459 /      870 -- time =    68940.0 /    93600.0
iteration:      460 /      870 -- time =    69000.0 /    93600.0
iteration:      461 /      870 -- time =    69060.0 /    93600.0
iteration:      462 /      870 -- time =    69120.0 /    93600.0
iteration:      463 /      870 -- time =    69180.0 /    93600.0
iteration:      464 /      870 -- time =    69240.0 /    93600.0
iteration:      465 /      870 -- time =    69300.0 /    93600.0
iteration:      466 /      870 -- time =    69360.0 /    93600.0
iteration:      467 /      870 -- time =    69420.0 /    93600.0
iteration:      468 /      870 -- time =    69480.0 /    93600.0
iteration:      469 /      870 -- time =    69540.0 /    93600.0
iteration:      470 /      870 -- time =    69600.0 /    93600.0
iteration:      471 /      870 -- time =    69660.0 /    93600.0
iteration:      472 /      870 -- time =    69720.0 /    93600.0
iteration:      473 /      870 -- time =    69780.0 /    93600.0
iteration:      474 /      870 -- time =    69840.0 /    93600.0
iteration:      475 /      870 -- time =    69900.0 /    93600.0
iteration:      476 /      870 -- time =    69960.0 /    93600.0
iteration:      477 /      870 -- time =    70020.0 /    93600.0
iteration:      478 /      870 -- time =    70080.0 /    93600.0
iteration:      479 /      870 -- time =    70140.0 /    93600.0
iteration:      480 /      870 -- time =    70200.0 /    93600.0
iteration:      481 /      870 -- time =    70260.0 /    93600.0
iteration:      482 /      870 -- time =    70320.0 /    93600.0
iteration:      483 /      870 -- time =    70380.0 /    93600.0
iteration:      484 /      870 -- time =    70440.0 /    93600.0
iteration:      485 /      870 -- time =    70500.0 /    93600.0
iteration:      486 /      870 -- time =    70560.0 /    93600.0
iteration:      487 /      870 -- time =    70620.0 /    93600.0
iteration:      488 /      870 -- time =    70680.0 /    93600.0
iteration:      489 /      870 -- time =    70740.0 /    93600.0
iteration:      490 /      870 -- time =    70800.0 /    93600.0
iteration:      491 /      870 -- time =    70860.0 /    93600.0
iteration:      492 /      870 -- time =    70920.0 /    93600.0
iteration:      493 /      870 -- time =    70980.0 /    93600.0
iteration:      494 /      870 -- time =    71040.0 /    93600.0
iteration:      495 /      870 -- time =    71100.0 /    93600.0
iteration:      496 /      870 -- time =    71160.0 /    93600.0
iteration:      497 /      870 -- time =    71220.0 /    93600.0
iteration:      498 /      870 -- time =    71280.0 /    93600.0
iteration:      499 /      870 -- time =    71340.0 /    93600.0
iteration:      500 /      870 -- time =    71400.0 /    93600.0
iteration:      501 /      870 -- time =    71460.0 /    93600.0
iteration:      502 /      870 -- time =    71520.0 /    93600.0
iteration:      503 /      870 -- time =    71580.0 /    93600.0
iteration:      504 /      870 -- time =    71640.0 /    93600.0
iteration:      505 /      870 -- time =    71700.0 /    93600.0
iteration:      506 /      870 -- time =    71760.0 /    93600.0
iteration:      507 /      870 -- time =    71820.0 /    93600.0
iteration:      508 /      870 -- time =    71880.0 /    93600.0
iteration:      509 /      870 -- time =    71940.0 /    93600.0
iteration:      510 /      870 -- time =    72000.0 /    93600.0
iteration:      511 /      870 -- time =    72060.0 /    93600.0
iteration:      512 /      870 -- time =    72120.0 /    93600.0
iteration:      513 /      870 -- time =    72180.0 /    93600.0
iteration:      514 /      870 -- time =    72240.0 /    93600.0
iteration:      515 /      870 -- time =    72300.0 /    93600.0
iteration:      516 /      870 -- time =    72360.0 /    93600.0
iteration:      517 /      870 -- time =    72420.0 /    93600.0
iteration:      518 /      870 -- time =    72480.0 /    93600.0
iteration:      519 /      870 -- time =    72540.0 /    93600.0
iteration:      520 /      870 -- time =    72600.0 /    93600.0
iteration:      521 /      870 -- time =    72660.0 /    93600.0
iteration:      522 /      870 -- time =    72720.0 /    93600.0
iteration:      523 /      870 -- time =    72780.0 /    93600.0
iteration:      524 /      870 -- time =    72840.0 /    93600.0
iteration:      525 /      870 -- time =    72900.0 /    93600.0
iteration:      526 /      870 -- time =    72960.0 /    93600.0
iteration:      527 /      870 -- time =    73020.0 /    93600.0
iteration:      528 /      870 -- time =    73080.0 /    93600.0
iteration:      529 /      870 -- time =    73140.0 /    93600.0
iteration:      530 /      870 -- time =    73200.0 /    93600.0
iteration:      531 /      870 -- time =    73260.0 /    93600.0
iteration:      532 /      870 -- time =    73320.0 /    93600.0
iteration:      533 /      870 -- time =    73380.0 /    93600.0
iteration:      534 /      870 -- time =    73440.0 /    93600.0
iteration:      535 /      870 -- time =    73500.0 /    93600.0
iteration:      536 /      870 -- time =    73560.0 /    93600.0
iteration:      537 /      870 -- time =    73620.0 /    93600.0
iteration:      538 /      870 -- time =    73680.0 /    93600.0
iteration:      539 /      870 -- time =    73740.0 /    93600.0
iteration:      540 /      870 -- time =    73800.0 /    93600.0
iteration:      541 /      870 -- time =    73860.0 /    93600.0
iteration:      542 /      870 -- time =    73920.0 /    93600.0
iteration:      543 /      870 -- time =    73980.0 /    93600.0
iteration:      544 /      870 -- time =    74040.0 /    93600.0
iteration:      545 /      870 -- time =    74100.0 /    93600.0
iteration:      546 /      870 -- time =    74160.0 /    93600.0
iteration:      547 /      870 -- time =    74220.0 /    93600.0
iteration:      548 /      870 -- time =    74280.0 /    93600.0
iteration:      549 /      870 -- time =    74340.0 /    93600.0
iteration:      550 /      870 -- time =    74400.0 /    93600.0
iteration:      551 /      870 -- time =    74460.0 /    93600.0
iteration:      552 /      870 -- time =    74520.0 /    93600.0
iteration:      553 /      870 -- time =    74580.0 /    93600.0
iteration:      554 /      870 -- time =    74640.0 /    93600.0
iteration:      555 /      870 -- time =    74700.0 /    93600.0
iteration:      556 /      870 -- time =    74760.0 /    93600.0
iteration:      557 /      870 -- time =    74820.0 /    93600.0
iteration:      558 /      870 -- time =    74880.0 /    93600.0
iteration:      559 /      870 -- time =    74940.0 /    93600.0
iteration:      560 /      870 -- time =    75000.0 /    93600.0
iteration:      561 /      870 -- time =    75060.0 /    93600.0
iteration:      562 /      870 -- time =    75120.0 /    93600.0
iteration:      563 /      870 -- time =    75180.0 /    93600.0
iteration:      564 /      870 -- time =    75240.0 /    93600.0
iteration:      565 /      870 -- time =    75300.0 /    93600.0
iteration:      566 /      870 -- time =    75360.0 /    93600.0
iteration:      567 /      870 -- time =    75420.0 /    93600.0
iteration:      568 /      870 -- time =    75480.0 /    93600.0
iteration:      569 /      870 -- time =    75540.0 /    93600.0
iteration:      570 /      870 -- time =    75600.0 /    93600.0
iteration:      571 /      870 -- time =    75660.0 /    93600.0
iteration:      572 /      870 -- time =    75720.0 /    93600.0
iteration:      573 /      870 -- time =    75780.0 /    93600.0
iteration:      574 /      870 -- time =    75840.0 /    93600.0
iteration:      575 /      870 -- time =    75900.0 /    93600.0
iteration:      576 /      870 -- time =    75960.0 /    93600.0
iteration:      577 /      870 -- time =    76020.0 /    93600.0
iteration:      578 /      870 -- time =    76080.0 /    93600.0
iteration:      579 /      870 -- time =    76140.0 /    93600.0
iteration:      580 /      870 -- time =    76200.0 /    93600.0
iteration:      581 /      870 -- time =    76260.0 /    93600.0
iteration:      582 /      870 -- time =    76320.0 /    93600.0
iteration:      583 /      870 -- time =    76380.0 /    93600.0
iteration:      584 /      870 -- time =    76440.0 /    93600.0
iteration:      585 /      870 -- time =    76500.0 /    93600.0
iteration:      586 /      870 -- time =    76560.0 /    93600.0
iteration:      587 /      870 -- time =    76620.0 /    93600.0
iteration:      588 /      870 -- time =    76680.0 /    93600.0
iteration:      589 /      870 -- time =    76740.0 /    93600.0
iteration:      590 /      870 -- time =    76800.0 /    93600.0
iteration:      591 /      870 -- time =    76860.0 /    93600.0
iteration:      592 /      870 -- time =    76920.0 /    93600.0
iteration:      593 /      870 -- time =    76980.0 /    93600.0
iteration:      594 /      870 -- time =    77040.0 /    93600.0
iteration:      595 /      870 -- time =    77100.0 /    93600.0
iteration:      596 /      870 -- time =    77160.0 /    93600.0
iteration:      597 /      870 -- time =    77220.0 /    93600.0
iteration:      598 /      870 -- time =    77280.0 /    93600.0
iteration:      599 /      870 -- time =    77340.0 /    93600.0
iteration:      600 /      870 -- time =    77400.0 /    93600.0
iteration:      601 /      870 -- time =    77460.0 /    93600.0
iteration:      602 /      870 -- time =    77520.0 /    93600.0
iteration:      603 /      870 -- time =    77580.0 /    93600.0
iteration:      604 /      870 -- time =    77640.0 /    93600.0
iteration:      605 /      870 -- time =    77700.0 /    93600.0
iteration:      606 /      870 -- time =    77760.0 /    93600.0
iteration:      607 /      870 -- time =    77820.0 /    93600.0
iteration:      608 /      870 -- time =    77880.0 /    93600.0
iteration:      609 /      870 -- time =    77940.0 /    93600.0
iteration:      610 /      870 -- time =    78000.0 /    93600.0
iteration:      611 /      870 -- time =    78060.0 /    93600.0
iteration:      612 /      870 -- time =    78120.0 /    93600.0
iteration:      613 /      870 -- time =    78180.0 /    93600.0
iteration:      614 /      870 -- time =    78240.0 /    93600.0
iteration:      615 /      870 -- time =    78300.0 /    93600.0
iteration:      616 /      870 -- time =    78360.0 /    93600.0
iteration:      617 /      870 -- time =    78420.0 /    93600.0
iteration:      618 /      870 -- time =    78480.0 /    93600.0
iteration:      619 /      870 -- time =    78540.0 /    93600.0
iteration:      620 /      870 -- time =    78600.0 /    93600.0
iteration:      621 /      870 -- time =    78660.0 /    93600.0
iteration:      622 /      870 -- time =    78720.0 /    93600.0
iteration:      623 /      870 -- time =    78780.0 /    93600.0
iteration:      624 /      870 -- time =    78840.0 /    93600.0
iteration:      625 /      870 -- time =    78900.0 /    93600.0
iteration:      626 /      870 -- time =    78960.0 /    93600.0
iteration:      627 /      870 -- time =    79020.0 /    93600.0
iteration:      628 /      870 -- time =    79080.0 /    93600.0
iteration:      629 /      870 -- time =    79140.0 /    93600.0
iteration:      630 /      870 -- time =    79200.0 /    93600.0
iteration:      631 /      870 -- time =    79260.0 /    93600.0
iteration:      632 /      870 -- time =    79320.0 /    93600.0
iteration:      633 /      870 -- time =    79380.0 /    93600.0
iteration:      634 /      870 -- time =    79440.0 /    93600.0
iteration:      635 /      870 -- time =    79500.0 /    93600.0
iteration:      636 /      870 -- time =    79560.0 /    93600.0
iteration:      637 /      870 -- time =    79620.0 /    93600.0
iteration:      638 /      870 -- time =    79680.0 /    93600.0
iteration:      639 /      870 -- time =    79740.0 /    93600.0
iteration:      640 /      870 -- time =    79800.0 /    93600.0
iteration:      641 /      870 -- time =    79860.0 /    93600.0
iteration:      642 /      870 -- time =    79920.0 /    93600.0
iteration:      643 /      870 -- time =    79980.0 /    93600.0
iteration:      644 /      870 -- time =    80040.0 /    93600.0
iteration:      645 /      870 -- time =    80100.0 /    93600.0
iteration:      646 /      870 -- time =    80160.0 /    93600.0
iteration:      647 /      870 -- time =    80220.0 /    93600.0
iteration:      648 /      870 -- time =    80280.0 /    93600.0
iteration:      649 /      870 -- time =    80340.0 /    93600.0
iteration:      650 /      870 -- time =    80400.0 /    93600.0
iteration:      651 /      870 -- time =    80460.0 /    93600.0
iteration:      652 /      870 -- time =    80520.0 /    93600.0
iteration:      653 /      870 -- time =    80580.0 /    93600.0
iteration:      654 /      870 -- time =    80640.0 /    93600.0
iteration:      655 /      870 -- time =    80700.0 /    93600.0
iteration:      656 /      870 -- time =    80760.0 /    93600.0
iteration:      657 /      870 -- time =    80820.0 /    93600.0
iteration:      658 /      870 -- time =    80880.0 /    93600.0
iteration:      659 /      870 -- time =    80940.0 /    93600.0
iteration:      660 /      870 -- time =    81000.0 /    93600.0
iteration:      661 /      870 -- time =    81060.0 /    93600.0
iteration:      662 /      870 -- time =    81120.0 /    93600.0
iteration:      663 /      870 -- time =    81180.0 /    93600.0
iteration:      664 /      870 -- time =    81240.0 /    93600.0
iteration:      665 /      870 -- time =    81300.0 /    93600.0
iteration:      666 /      870 -- time =    81360.0 /    93600.0
iteration:      667 /      870 -- time =    81420.0 /    93600.0
iteration:      668 /      870 -- time =    81480.0 /    93600.0
iteration:      669 /      870 -- time =    81540.0 /    93600.0
iteration:      670 /      870 -- time =    81600.0 /    93600.0
iteration:      671 /      870 -- time =    81660.0 /    93600.0
iteration:      672 /      870 -- time =    81720.0 /    93600.0
iteration:      673 /      870 -- time =    81780.0 /    93600.0
iteration:      674 /      870 -- time =    81840.0 /    93600.0
iteration:      675 /      870 -- time =    81900.0 /    93600.0
iteration:      676 /      870 -- time =    81960.0 /    93600.0
iteration:      677 /      870 -- time =    82020.0 /    93600.0
iteration:      678 /      870 -- time =    82080.0 /    93600.0
iteration:      679 /      870 -- time =    82140.0 /    93600.0
iteration:      680 /      870 -- time =    82200.0 /    93600.0
iteration:      681 /      870 -- time =    82260.0 /    93600.0
iteration:      682 /      870 -- time =    82320.0 /    93600.0
iteration:      683 /      870 -- time =    82380.0 /    93600.0
iteration:      684 /      870 -- time =    82440.0 /    93600.0
iteration:      685 /      870 -- time =    82500.0 /    93600.0
iteration:      686 /      870 -- time =    82560.0 /    93600.0
iteration:      687 /      870 -- time =    82620.0 /    93600.0
iteration:      688 /      870 -- time =    82680.0 /    93600.0
iteration:      689 /      870 -- time =    82740.0 /    93600.0
iteration:      690 /      870 -- time =    82800.0 /    93600.0
iteration:      691 /      870 -- time =    82860.0 /    93600.0
iteration:      692 /      870 -- time =    82920.0 /    93600.0
iteration:      693 /      870 -- time =    82980.0 /    93600.0
iteration:      694 /      870 -- time =    83040.0 /    93600.0
iteration:      695 /      870 -- time =    83100.0 /    93600.0
iteration:      696 /      870 -- time =    83160.0 /    93600.0
iteration:      697 /      870 -- time =    83220.0 /    93600.0
iteration:      698 /      870 -- time =    83280.0 /    93600.0
iteration:      699 /      870 -- time =    83340.0 /    93600.0
iteration:      700 /      870 -- time =    83400.0 /    93600.0
iteration:      701 /      870 -- time =    83460.0 /    93600.0
iteration:      702 /      870 -- time =    83520.0 /    93600.0
iteration:      703 /      870 -- time =    83580.0 /    93600.0
iteration:      704 /      870 -- time =    83640.0 /    93600.0
iteration:      705 /      870 -- time =    83700.0 /    93600.0
iteration:      706 /      870 -- time =    83760.0 /    93600.0
iteration:      707 /      870 -- time =    83820.0 /    93600.0
iteration:      708 /      870 -- time =    83880.0 /    93600.0
iteration:      709 /      870 -- time =    83940.0 /    93600.0
iteration:      710 /      870 -- time =    84000.0 /    93600.0
iteration:      711 /      870 -- time =    84060.0 /    93600.0
iteration:      712 /      870 -- time =    84120.0 /    93600.0
iteration:      713 /      870 -- time =    84180.0 /    93600.0
iteration:      714 /      870 -- time =    84240.0 /    93600.0
iteration:      715 /      870 -- time =    84300.0 /    93600.0
iteration:      716 /      870 -- time =    84360.0 /    93600.0
iteration:      717 /      870 -- time =    84420.0 /    93600.0
iteration:      718 /      870 -- time =    84480.0 /    93600.0
iteration:      719 /      870 -- time =    84540.0 /    93600.0
iteration:      720 /      870 -- time =    84600.0 /    93600.0
iteration:      721 /      870 -- time =    84660.0 /    93600.0
iteration:      722 /      870 -- time =    84720.0 /    93600.0
iteration:      723 /      870 -- time =    84780.0 /    93600.0
iteration:      724 /      870 -- time =    84840.0 /    93600.0
iteration:      725 /      870 -- time =    84900.0 /    93600.0
iteration:      726 /      870 -- time =    84960.0 /    93600.0
iteration:      727 /      870 -- time =    85020.0 /    93600.0
iteration:      728 /      870 -- time =    85080.0 /    93600.0
iteration:      729 /      870 -- time =    85140.0 /    93600.0
iteration:      730 /      870 -- time =    85200.0 /    93600.0
iteration:      731 /      870 -- time =    85260.0 /    93600.0
iteration:      732 /      870 -- time =    85320.0 /    93600.0
iteration:      733 /      870 -- time =    85380.0 /    93600.0
iteration:      734 /      870 -- time =    85440.0 /    93600.0
iteration:      735 /      870 -- time =    85500.0 /    93600.0
iteration:      736 /      870 -- time =    85560.0 /    93600.0
iteration:      737 /      870 -- time =    85620.0 /    93600.0
iteration:      738 /      870 -- time =    85680.0 /    93600.0
iteration:      739 /      870 -- time =    85740.0 /    93600.0
iteration:      740 /      870 -- time =    85800.0 /    93600.0
iteration:      741 /      870 -- time =    85860.0 /    93600.0
iteration:      742 /      870 -- time =    85920.0 /    93600.0
iteration:      743 /      870 -- time =    85980.0 /    93600.0
iteration:      744 /      870 -- time =    86040.0 /    93600.0
iteration:      745 /      870 -- time =    86100.0 /    93600.0
iteration:      746 /      870 -- time =    86160.0 /    93600.0
iteration:      747 /      870 -- time =    86220.0 /    93600.0
iteration:      748 /      870 -- time =    86280.0 /    93600.0
iteration:      749 /      870 -- time =    86340.0 /    93600.0
iteration:      750 /      870 -- time =    86400.0 /    93600.0
iteration:      751 /      870 -- time =    86460.0 /    93600.0
iteration:      752 /      870 -- time =    86520.0 /    93600.0
iteration:      753 /      870 -- time =    86580.0 /    93600.0
iteration:      754 /      870 -- time =    86640.0 /    93600.0
iteration:      755 /      870 -- time =    86700.0 /    93600.0
iteration:      756 /      870 -- time =    86760.0 /    93600.0
iteration:      757 /      870 -- time =    86820.0 /    93600.0
iteration:      758 /      870 -- time =    86880.0 /    93600.0
iteration:      759 /      870 -- time =    86940.0 /    93600.0
iteration:      760 /      870 -- time =    87000.0 /    93600.0
iteration:      761 /      870 -- time =    87060.0 /    93600.0
iteration:      762 /      870 -- time =    87120.0 /    93600.0
iteration:      763 /      870 -- time =    87180.0 /    93600.0
iteration:      764 /      870 -- time =    87240.0 /    93600.0
iteration:      765 /      870 -- time =    87300.0 /    93600.0
iteration:      766 /      870 -- time =    87360.0 /    93600.0
iteration:      767 /      870 -- time =    87420.0 /    93600.0
iteration:      768 /      870 -- time =    87480.0 /    93600.0
iteration:      769 /      870 -- time =    87540.0 /    93600.0
iteration:      770 /      870 -- time =    87600.0 /    93600.0
iteration:      771 /      870 -- time =    87660.0 /    93600.0
iteration:      772 /      870 -- time =    87720.0 /    93600.0
iteration:      773 /      870 -- time =    87780.0 /    93600.0
iteration:      774 /      870 -- time =    87840.0 /    93600.0
iteration:      775 /      870 -- time =    87900.0 /    93600.0
iteration:      776 /      870 -- time =    87960.0 /    93600.0
iteration:      777 /      870 -- time =    88020.0 /    93600.0
iteration:      778 /      870 -- time =    88080.0 /    93600.0
iteration:      779 /      870 -- time =    88140.0 /    93600.0
iteration:      780 /      870 -- time =    88200.0 /    93600.0
iteration:      781 /      870 -- time =    88260.0 /    93600.0
iteration:      782 /      870 -- time =    88320.0 /    93600.0
iteration:      783 /      870 -- time =    88380.0 /    93600.0
iteration:      784 /      870 -- time =    88440.0 /    93600.0
iteration:      785 /      870 -- time =    88500.0 /    93600.0
iteration:      786 /      870 -- time =    88560.0 /    93600.0
iteration:      787 /      870 -- time =    88620.0 /    93600.0
iteration:      788 /      870 -- time =    88680.0 /    93600.0
iteration:      789 /      870 -- time =    88740.0 /    93600.0
iteration:      790 /      870 -- time =    88800.0 /    93600.0
iteration:      791 /      870 -- time =    88860.0 /    93600.0
iteration:      792 /      870 -- time =    88920.0 /    93600.0
iteration:      793 /      870 -- time =    88980.0 /    93600.0
iteration:      794 /      870 -- time =    89040.0 /    93600.0
iteration:      795 /      870 -- time =    89100.0 /    93600.0
iteration:      796 /      870 -- time =    89160.0 /    93600.0
iteration:      797 /      870 -- time =    89220.0 /    93600.0
iteration:      798 /      870 -- time =    89280.0 /    93600.0
iteration:      799 /      870 -- time =    89340.0 /    93600.0
iteration:      800 /      870 -- time =    89400.0 /    93600.0
iteration:      801 /      870 -- time =    89460.0 /    93600.0
iteration:      802 /      870 -- time =    89520.0 /    93600.0
iteration:      803 /      870 -- time =    89580.0 /    93600.0
iteration:      804 /      870 -- time =    89640.0 /    93600.0
iteration:      805 /      870 -- time =    89700.0 /    93600.0
iteration:      806 /      870 -- time =    89760.0 /    93600.0
iteration:      807 /      870 -- time =    89820.0 /    93600.0
iteration:      808 /      870 -- time =    89880.0 /    93600.0
iteration:      809 /      870 -- time =    89940.0 /    93600.0
iteration:      810 /      870 -- time =    90000.0 /    93600.0
iteration:      811 /      870 -- time =    90060.0 /    93600.0
iteration:      812 /      870 -- time =    90120.0 /    93600.0
iteration:      813 /      870 -- time =    90180.0 /    93600.0
iteration:      814 /      870 -- time =    90240.0 /    93600.0
iteration:      815 /      870 -- time =    90300.0 /    93600.0
iteration:      816 /      870 -- time =    90360.0 /    93600.0
iteration:      817 /      870 -- time =    90420.0 /    93600.0
iteration:      818 /      870 -- time =    90480.0 /    93600.0
iteration:      819 /      870 -- time =    90540.0 /    93600.0
iteration:      820 /      870 -- time =    90600.0 /    93600.0
iteration:      821 /      870 -- time =    90660.0 /    93600.0
iteration:      822 /      870 -- time =    90720.0 /    93600.0
iteration:      823 /      870 -- time =    90780.0 /    93600.0
iteration:      824 /      870 -- time =    90840.0 /    93600.0
iteration:      825 /      870 -- time =    90900.0 /    93600.0
iteration:      826 /      870 -- time =    90960.0 /    93600.0
iteration:      827 /      870 -- time =    91020.0 /    93600.0
iteration:      828 /      870 -- time =    91080.0 /    93600.0
iteration:      829 /      870 -- time =    91140.0 /    93600.0
iteration:      830 /      870 -- time =    91200.0 /    93600.0
iteration:      831 /      870 -- time =    91260.0 /    93600.0
iteration:      832 /      870 -- time =    91320.0 /    93600.0
iteration:      833 /      870 -- time =    91380.0 /    93600.0
iteration:      834 /      870 -- time =    91440.0 /    93600.0
iteration:      835 /      870 -- time =    91500.0 /    93600.0
iteration:      836 /      870 -- time =    91560.0 /    93600.0
iteration:      837 /      870 -- time =    91620.0 /    93600.0
iteration:      838 /      870 -- time =    91680.0 /    93600.0
iteration:      839 /      870 -- time =    91740.0 /    93600.0
iteration:      840 /      870 -- time =    91800.0 /    93600.0
iteration:      841 /      870 -- time =    91860.0 /    93600.0
iteration:      842 /      870 -- time =    91920.0 /    93600.0
iteration:      843 /      870 -- time =    91980.0 /    93600.0
iteration:      844 /      870 -- time =    92040.0 /    93600.0
iteration:      845 /      870 -- time =    92100.0 /    93600.0
iteration:      846 /      870 -- time =    92160.0 /    93600.0
iteration:      847 /      870 -- time =    92220.0 /    93600.0
iteration:      848 /      870 -- time =    92280.0 /    93600.0
iteration:      849 /      870 -- time =    92340.0 /    93600.0
iteration:      850 /      870 -- time =    92400.0 /    93600.0
iteration:      851 /      870 -- time =    92460.0 /    93600.0
iteration:      852 /      870 -- time =    92520.0 /    93600.0
iteration:      853 /      870 -- time =    92580.0 /    93600.0
iteration:      854 /      870 -- time =    92640.0 /    93600.0
iteration:      855 /      870 -- time =    92700.0 /    93600.0
iteration:      856 /      870 -- time =    92760.0 /    93600.0
iteration:      857 /      870 -- time =    92820.0 /    93600.0
iteration:      858 /      870 -- time =    92880.0 /    93600.0
iteration:      859 /      870 -- time =    92940.0 /    93600.0
iteration:      860 /      870 -- time =    93000.0 /    93600.0
iteration:      861 /      870 -- time =    93060.0 /    93600.0
iteration:      862 /      870 -- time =    93120.0 /    93600.0
iteration:      863 /      870 -- time =    93180.0 /    93600.0
iteration:      864 /      870 -- time =    93240.0 /    93600.0
iteration:      865 /      870 -- time =    93300.0 /    93600.0
iteration:      866 /      870 -- time =    93360.0 /    93600.0
iteration:      867 /      870 -- time =    93420.0 /    93600.0
iteration:      868 /      870 -- time =    93480.0 /    93600.0
iteration:      869 /      870 -- time =    93540.0 /    93600.0
 Program exited normally
iteration:      870 /      870 -- time =    93600.0 /    93600.0
CLUBB-TIMER time_loop_init =             0.4423
CLUBB-TIMER time_clubb_advance =        32.8531
CLUBB-TIMER time_clubb_pdf =             0.0009
CLUBB-TIMER time_SILHS =                 0.0002
CLUBB-TIMER time_microphys_scheme =      0.0000
CLUBB-TIMER time_microphys_advance =     0.0000
CLUBB-TIMER time_loop_end =              0.0000
CLUBB-TIMER time_adapt_grid =            0.0000
CLUBB-TIMER time_total =                35.5759
+ run_scripts/run_scm.py -params clubb_params_multi_col.in -stats input/stats/multi_col_stats.in -debug 0 -max_iters 500 cobra
 - using executable: /home/jenkins/workspace/clubb_nvhpc_gpu_vs_cpu_diffness/run_scripts/../install/latest/clubb_standalone
=================== Running cobra ===================
 When the l_diag_Lscale_from_tau flag is enabled, C2rt must have a value of 1.
 C2rt =     2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000     
 Warning in check_clubb_settings_api
 When the l_diag_Lscale_from_tau flag is enabled, C2thl must have a value of 1.
 C2thl =     2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000     
 Warning in check_clubb_settings_api
 When the l_diag_Lscale_from_tau flag is enabled, C2rtthl must have a value of 1.
 C2rtthl =     2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000     
 Warning in check_clubb_settings_api
 When the l_diag_Lscale_from_tau flag is enabled, C6rt must have a value of 1.
 C6rt =     2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000     
 Warning in check_clubb_settings_api
 When the l_diag_Lscale_from_tau flag is enabled, C6rtb must have a value of 1.
 C6rtb =     2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000     
 Warning in check_clubb_settings_api
 When the l_diag_Lscale_from_tau flag is enabled, C6thl must have a value of 1.
 C6thl =     2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000     
 Warning in check_clubb_settings_api
 When the l_diag_Lscale_from_tau flag is enabled, C6thlb must have a value of 1.
 C6thlb =     2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000     
 Warning in check_clubb_settings_api
 stats_nsamp =             1
 stats_nout =             1
iteration:        1 /      500 -- time =    57660.0 /    87600.0
iteration:        2 /      500 -- time =    57720.0 /    87600.0
iteration:        3 /      500 -- time =    57780.0 /    87600.0
iteration:        4 /      500 -- time =    57840.0 /    87600.0
iteration:        5 /      500 -- time =    57900.0 /    87600.0
iteration:        6 /      500 -- time =    57960.0 /    87600.0
iteration:        7 /      500 -- time =    58020.0 /    87600.0
iteration:        8 /      500 -- time =    58080.0 /    87600.0
iteration:        9 /      500 -- time =    58140.0 /    87600.0
iteration:       10 /      500 -- time =    58200.0 /    87600.0
iteration:       11 /      500 -- time =    58260.0 /    87600.0
iteration:       12 /      500 -- time =    58320.0 /    87600.0
iteration:       13 /      500 -- time =    58380.0 /    87600.0
iteration:       14 /      500 -- time =    58440.0 /    87600.0
iteration:       15 /      500 -- time =    58500.0 /    87600.0
iteration:       16 /      500 -- time =    58560.0 /    87600.0
iteration:       17 /      500 -- time =    58620.0 /    87600.0
iteration:       18 /      500 -- time =    58680.0 /    87600.0
iteration:       19 /      500 -- time =    58740.0 /    87600.0
iteration:       20 /      500 -- time =    58800.0 /    87600.0
iteration:       21 /      500 -- time =    58860.0 /    87600.0
iteration:       22 /      500 -- time =    58920.0 /    87600.0
iteration:       23 /      500 -- time =    58980.0 /    87600.0
iteration:       24 /      500 -- time =    59040.0 /    87600.0
iteration:       25 /      500 -- time =    59100.0 /    87600.0
iteration:       26 /      500 -- time =    59160.0 /    87600.0
iteration:       27 /      500 -- time =    59220.0 /    87600.0
iteration:       28 /      500 -- time =    59280.0 /    87600.0
iteration:       29 /      500 -- time =    59340.0 /    87600.0
iteration:       30 /      500 -- time =    59400.0 /    87600.0
iteration:       31 /      500 -- time =    59460.0 /    87600.0
iteration:       32 /      500 -- time =    59520.0 /    87600.0
iteration:       33 /      500 -- time =    59580.0 /    87600.0
iteration:       34 /      500 -- time =    59640.0 /    87600.0
iteration:       35 /      500 -- time =    59700.0 /    87600.0
iteration:       36 /      500 -- time =    59760.0 /    87600.0
iteration:       37 /      500 -- time =    59820.0 /    87600.0
iteration:       38 /      500 -- time =    59880.0 /    87600.0
iteration:       39 /      500 -- time =    59940.0 /    87600.0
iteration:       40 /      500 -- time =    60000.0 /    87600.0
iteration:       41 /      500 -- time =    60060.0 /    87600.0
iteration:       42 /      500 -- time =    60120.0 /    87600.0
iteration:       43 /      500 -- time =    60180.0 /    87600.0
iteration:       44 /      500 -- time =    60240.0 /    87600.0
iteration:       45 /      500 -- time =    60300.0 /    87600.0
iteration:       46 /      500 -- time =    60360.0 /    87600.0
iteration:       47 /      500 -- time =    60420.0 /    87600.0
iteration:       48 /      500 -- time =    60480.0 /    87600.0
iteration:       49 /      500 -- time =    60540.0 /    87600.0
iteration:       50 /      500 -- time =    60600.0 /    87600.0
iteration:       51 /      500 -- time =    60660.0 /    87600.0
iteration:       52 /      500 -- time =    60720.0 /    87600.0
iteration:       53 /      500 -- time =    60780.0 /    87600.0
iteration:       54 /      500 -- time =    60840.0 /    87600.0
iteration:       55 /      500 -- time =    60900.0 /    87600.0
iteration:       56 /      500 -- time =    60960.0 /    87600.0
iteration:       57 /      500 -- time =    61020.0 /    87600.0
iteration:       58 /      500 -- time =    61080.0 /    87600.0
iteration:       59 /      500 -- time =    61140.0 /    87600.0
iteration:       60 /      500 -- time =    61200.0 /    87600.0
iteration:       61 /      500 -- time =    61260.0 /    87600.0
iteration:       62 /      500 -- time =    61320.0 /    87600.0
iteration:       63 /      500 -- time =    61380.0 /    87600.0
iteration:       64 /      500 -- time =    61440.0 /    87600.0
iteration:       65 /      500 -- time =    61500.0 /    87600.0
iteration:       66 /      500 -- time =    61560.0 /    87600.0
iteration:       67 /      500 -- time =    61620.0 /    87600.0
iteration:       68 /      500 -- time =    61680.0 /    87600.0
iteration:       69 /      500 -- time =    61740.0 /    87600.0
iteration:       70 /      500 -- time =    61800.0 /    87600.0
iteration:       71 /      500 -- time =    61860.0 /    87600.0
iteration:       72 /      500 -- time =    61920.0 /    87600.0
iteration:       73 /      500 -- time =    61980.0 /    87600.0
iteration:       74 /      500 -- time =    62040.0 /    87600.0
iteration:       75 /      500 -- time =    62100.0 /    87600.0
iteration:       76 /      500 -- time =    62160.0 /    87600.0
iteration:       77 /      500 -- time =    62220.0 /    87600.0
iteration:       78 /      500 -- time =    62280.0 /    87600.0
iteration:       79 /      500 -- time =    62340.0 /    87600.0
iteration:       80 /      500 -- time =    62400.0 /    87600.0
iteration:       81 /      500 -- time =    62460.0 /    87600.0
iteration:       82 /      500 -- time =    62520.0 /    87600.0
iteration:       83 /      500 -- time =    62580.0 /    87600.0
iteration:       84 /      500 -- time =    62640.0 /    87600.0
iteration:       85 /      500 -- time =    62700.0 /    87600.0
iteration:       86 /      500 -- time =    62760.0 /    87600.0
iteration:       87 /      500 -- time =    62820.0 /    87600.0
iteration:       88 /      500 -- time =    62880.0 /    87600.0
iteration:       89 /      500 -- time =    62940.0 /    87600.0
iteration:       90 /      500 -- time =    63000.0 /    87600.0
iteration:       91 /      500 -- time =    63060.0 /    87600.0
iteration:       92 /      500 -- time =    63120.0 /    87600.0
iteration:       93 /      500 -- time =    63180.0 /    87600.0
iteration:       94 /      500 -- time =    63240.0 /    87600.0
iteration:       95 /      500 -- time =    63300.0 /    87600.0
iteration:       96 /      500 -- time =    63360.0 /    87600.0
iteration:       97 /      500 -- time =    63420.0 /    87600.0
iteration:       98 /      500 -- time =    63480.0 /    87600.0
iteration:       99 /      500 -- time =    63540.0 /    87600.0
iteration:      100 /      500 -- time =    63600.0 /    87600.0
iteration:      101 /      500 -- time =    63660.0 /    87600.0
iteration:      102 /      500 -- time =    63720.0 /    87600.0
iteration:      103 /      500 -- time =    63780.0 /    87600.0
iteration:      104 /      500 -- time =    63840.0 /    87600.0
iteration:      105 /      500 -- time =    63900.0 /    87600.0
iteration:      106 /      500 -- time =    63960.0 /    87600.0
iteration:      107 /      500 -- time =    64020.0 /    87600.0
iteration:      108 /      500 -- time =    64080.0 /    87600.0
iteration:      109 /      500 -- time =    64140.0 /    87600.0
iteration:      110 /      500 -- time =    64200.0 /    87600.0
iteration:      111 /      500 -- time =    64260.0 /    87600.0
iteration:      112 /      500 -- time =    64320.0 /    87600.0
iteration:      113 /      500 -- time =    64380.0 /    87600.0
iteration:      114 /      500 -- time =    64440.0 /    87600.0
iteration:      115 /      500 -- time =    64500.0 /    87600.0
iteration:      116 /      500 -- time =    64560.0 /    87600.0
iteration:      117 /      500 -- time =    64620.0 /    87600.0
iteration:      118 /      500 -- time =    64680.0 /    87600.0
iteration:      119 /      500 -- time =    64740.0 /    87600.0
iteration:      120 /      500 -- time =    64800.0 /    87600.0
iteration:      121 /      500 -- time =    64860.0 /    87600.0
iteration:      122 /      500 -- time =    64920.0 /    87600.0
iteration:      123 /      500 -- time =    64980.0 /    87600.0
iteration:      124 /      500 -- time =    65040.0 /    87600.0
iteration:      125 /      500 -- time =    65100.0 /    87600.0
iteration:      126 /      500 -- time =    65160.0 /    87600.0
iteration:      127 /      500 -- time =    65220.0 /    87600.0
iteration:      128 /      500 -- time =    65280.0 /    87600.0
iteration:      129 /      500 -- time =    65340.0 /    87600.0
iteration:      130 /      500 -- time =    65400.0 /    87600.0
iteration:      131 /      500 -- time =    65460.0 /    87600.0
iteration:      132 /      500 -- time =    65520.0 /    87600.0
iteration:      133 /      500 -- time =    65580.0 /    87600.0
iteration:      134 /      500 -- time =    65640.0 /    87600.0
iteration:      135 /      500 -- time =    65700.0 /    87600.0
iteration:      136 /      500 -- time =    65760.0 /    87600.0
iteration:      137 /      500 -- time =    65820.0 /    87600.0
iteration:      138 /      500 -- time =    65880.0 /    87600.0
iteration:      139 /      500 -- time =    65940.0 /    87600.0
iteration:      140 /      500 -- time =    66000.0 /    87600.0
iteration:      141 /      500 -- time =    66060.0 /    87600.0
iteration:      142 /      500 -- time =    66120.0 /    87600.0
iteration:      143 /      500 -- time =    66180.0 /    87600.0
iteration:      144 /      500 -- time =    66240.0 /    87600.0
iteration:      145 /      500 -- time =    66300.0 /    87600.0
iteration:      146 /      500 -- time =    66360.0 /    87600.0
iteration:      147 /      500 -- time =    66420.0 /    87600.0
iteration:      148 /      500 -- time =    66480.0 /    87600.0
iteration:      149 /      500 -- time =    66540.0 /    87600.0
iteration:      150 /      500 -- time =    66600.0 /    87600.0
iteration:      151 /      500 -- time =    66660.0 /    87600.0
iteration:      152 /      500 -- time =    66720.0 /    87600.0
iteration:      153 /      500 -- time =    66780.0 /    87600.0
iteration:      154 /      500 -- time =    66840.0 /    87600.0
iteration:      155 /      500 -- time =    66900.0 /    87600.0
iteration:      156 /      500 -- time =    66960.0 /    87600.0
iteration:      157 /      500 -- time =    67020.0 /    87600.0
iteration:      158 /      500 -- time =    67080.0 /    87600.0
iteration:      159 /      500 -- time =    67140.0 /    87600.0
iteration:      160 /      500 -- time =    67200.0 /    87600.0
iteration:      161 /      500 -- time =    67260.0 /    87600.0
iteration:      162 /      500 -- time =    67320.0 /    87600.0
iteration:      163 /      500 -- time =    67380.0 /    87600.0
iteration:      164 /      500 -- time =    67440.0 /    87600.0
iteration:      165 /      500 -- time =    67500.0 /    87600.0
iteration:      166 /      500 -- time =    67560.0 /    87600.0
iteration:      167 /      500 -- time =    67620.0 /    87600.0
iteration:      168 /      500 -- time =    67680.0 /    87600.0
iteration:      169 /      500 -- time =    67740.0 /    87600.0
iteration:      170 /      500 -- time =    67800.0 /    87600.0
iteration:      171 /      500 -- time =    67860.0 /    87600.0
iteration:      172 /      500 -- time =    67920.0 /    87600.0
iteration:      173 /      500 -- time =    67980.0 /    87600.0
iteration:      174 /      500 -- time =    68040.0 /    87600.0
iteration:      175 /      500 -- time =    68100.0 /    87600.0
iteration:      176 /      500 -- time =    68160.0 /    87600.0
iteration:      177 /      500 -- time =    68220.0 /    87600.0
iteration:      178 /      500 -- time =    68280.0 /    87600.0
iteration:      179 /      500 -- time =    68340.0 /    87600.0
iteration:      180 /      500 -- time =    68400.0 /    87600.0
iteration:      181 /      500 -- time =    68460.0 /    87600.0
iteration:      182 /      500 -- time =    68520.0 /    87600.0
iteration:      183 /      500 -- time =    68580.0 /    87600.0
iteration:      184 /      500 -- time =    68640.0 /    87600.0
iteration:      185 /      500 -- time =    68700.0 /    87600.0
iteration:      186 /      500 -- time =    68760.0 /    87600.0
iteration:      187 /      500 -- time =    68820.0 /    87600.0
iteration:      188 /      500 -- time =    68880.0 /    87600.0
iteration:      189 /      500 -- time =    68940.0 /    87600.0
iteration:      190 /      500 -- time =    69000.0 /    87600.0
iteration:      191 /      500 -- time =    69060.0 /    87600.0
iteration:      192 /      500 -- time =    69120.0 /    87600.0
iteration:      193 /      500 -- time =    69180.0 /    87600.0
iteration:      194 /      500 -- time =    69240.0 /    87600.0
iteration:      195 /      500 -- time =    69300.0 /    87600.0
iteration:      196 /      500 -- time =    69360.0 /    87600.0
iteration:      197 /      500 -- time =    69420.0 /    87600.0
iteration:      198 /      500 -- time =    69480.0 /    87600.0
iteration:      199 /      500 -- time =    69540.0 /    87600.0
iteration:      200 /      500 -- time =    69600.0 /    87600.0
iteration:      201 /      500 -- time =    69660.0 /    87600.0
iteration:      202 /      500 -- time =    69720.0 /    87600.0
iteration:      203 /      500 -- time =    69780.0 /    87600.0
iteration:      204 /      500 -- time =    69840.0 /    87600.0
iteration:      205 /      500 -- time =    69900.0 /    87600.0
iteration:      206 /      500 -- time =    69960.0 /    87600.0
iteration:      207 /      500 -- time =    70020.0 /    87600.0
iteration:      208 /      500 -- time =    70080.0 /    87600.0
iteration:      209 /      500 -- time =    70140.0 /    87600.0
iteration:      210 /      500 -- time =    70200.0 /    87600.0
iteration:      211 /      500 -- time =    70260.0 /    87600.0
iteration:      212 /      500 -- time =    70320.0 /    87600.0
iteration:      213 /      500 -- time =    70380.0 /    87600.0
iteration:      214 /      500 -- time =    70440.0 /    87600.0
iteration:      215 /      500 -- time =    70500.0 /    87600.0
iteration:      216 /      500 -- time =    70560.0 /    87600.0
iteration:      217 /      500 -- time =    70620.0 /    87600.0
iteration:      218 /      500 -- time =    70680.0 /    87600.0
iteration:      219 /      500 -- time =    70740.0 /    87600.0
iteration:      220 /      500 -- time =    70800.0 /    87600.0
iteration:      221 /      500 -- time =    70860.0 /    87600.0
iteration:      222 /      500 -- time =    70920.0 /    87600.0
iteration:      223 /      500 -- time =    70980.0 /    87600.0
iteration:      224 /      500 -- time =    71040.0 /    87600.0
iteration:      225 /      500 -- time =    71100.0 /    87600.0
iteration:      226 /      500 -- time =    71160.0 /    87600.0
iteration:      227 /      500 -- time =    71220.0 /    87600.0
iteration:      228 /      500 -- time =    71280.0 /    87600.0
iteration:      229 /      500 -- time =    71340.0 /    87600.0
iteration:      230 /      500 -- time =    71400.0 /    87600.0
iteration:      231 /      500 -- time =    71460.0 /    87600.0
iteration:      232 /      500 -- time =    71520.0 /    87600.0
iteration:      233 /      500 -- time =    71580.0 /    87600.0
iteration:      234 /      500 -- time =    71640.0 /    87600.0
iteration:      235 /      500 -- time =    71700.0 /    87600.0
iteration:      236 /      500 -- time =    71760.0 /    87600.0
iteration:      237 /      500 -- time =    71820.0 /    87600.0
iteration:      238 /      500 -- time =    71880.0 /    87600.0
iteration:      239 /      500 -- time =    71940.0 /    87600.0
iteration:      240 /      500 -- time =    72000.0 /    87600.0
iteration:      241 /      500 -- time =    72060.0 /    87600.0
iteration:      242 /      500 -- time =    72120.0 /    87600.0
iteration:      243 /      500 -- time =    72180.0 /    87600.0
iteration:      244 /      500 -- time =    72240.0 /    87600.0
iteration:      245 /      500 -- time =    72300.0 /    87600.0
iteration:      246 /      500 -- time =    72360.0 /    87600.0
iteration:      247 /      500 -- time =    72420.0 /    87600.0
iteration:      248 /      500 -- time =    72480.0 /    87600.0
iteration:      249 /      500 -- time =    72540.0 /    87600.0
iteration:      250 /      500 -- time =    72600.0 /    87600.0
iteration:      251 /      500 -- time =    72660.0 /    87600.0
iteration:      252 /      500 -- time =    72720.0 /    87600.0
iteration:      253 /      500 -- time =    72780.0 /    87600.0
iteration:      254 /      500 -- time =    72840.0 /    87600.0
iteration:      255 /      500 -- time =    72900.0 /    87600.0
iteration:      256 /      500 -- time =    72960.0 /    87600.0
iteration:      257 /      500 -- time =    73020.0 /    87600.0
iteration:      258 /      500 -- time =    73080.0 /    87600.0
iteration:      259 /      500 -- time =    73140.0 /    87600.0
iteration:      260 /      500 -- time =    73200.0 /    87600.0
iteration:      261 /      500 -- time =    73260.0 /    87600.0
iteration:      262 /      500 -- time =    73320.0 /    87600.0
iteration:      263 /      500 -- time =    73380.0 /    87600.0
iteration:      264 /      500 -- time =    73440.0 /    87600.0
iteration:      265 /      500 -- time =    73500.0 /    87600.0
iteration:      266 /      500 -- time =    73560.0 /    87600.0
iteration:      267 /      500 -- time =    73620.0 /    87600.0
iteration:      268 /      500 -- time =    73680.0 /    87600.0
iteration:      269 /      500 -- time =    73740.0 /    87600.0
iteration:      270 /      500 -- time =    73800.0 /    87600.0
iteration:      271 /      500 -- time =    73860.0 /    87600.0
iteration:      272 /      500 -- time =    73920.0 /    87600.0
iteration:      273 /      500 -- time =    73980.0 /    87600.0
iteration:      274 /      500 -- time =    74040.0 /    87600.0
iteration:      275 /      500 -- time =    74100.0 /    87600.0
iteration:      276 /      500 -- time =    74160.0 /    87600.0
iteration:      277 /      500 -- time =    74220.0 /    87600.0
iteration:      278 /      500 -- time =    74280.0 /    87600.0
iteration:      279 /      500 -- time =    74340.0 /    87600.0
iteration:      280 /      500 -- time =    74400.0 /    87600.0
iteration:      281 /      500 -- time =    74460.0 /    87600.0
iteration:      282 /      500 -- time =    74520.0 /    87600.0
iteration:      283 /      500 -- time =    74580.0 /    87600.0
iteration:      284 /      500 -- time =    74640.0 /    87600.0
iteration:      285 /      500 -- time =    74700.0 /    87600.0
iteration:      286 /      500 -- time =    74760.0 /    87600.0
iteration:      287 /      500 -- time =    74820.0 /    87600.0
iteration:      288 /      500 -- time =    74880.0 /    87600.0
iteration:      289 /      500 -- time =    74940.0 /    87600.0
iteration:      290 /      500 -- time =    75000.0 /    87600.0
iteration:      291 /      500 -- time =    75060.0 /    87600.0
iteration:      292 /      500 -- time =    75120.0 /    87600.0
iteration:      293 /      500 -- time =    75180.0 /    87600.0
iteration:      294 /      500 -- time =    75240.0 /    87600.0
iteration:      295 /      500 -- time =    75300.0 /    87600.0
iteration:      296 /      500 -- time =    75360.0 /    87600.0
iteration:      297 /      500 -- time =    75420.0 /    87600.0
iteration:      298 /      500 -- time =    75480.0 /    87600.0
iteration:      299 /      500 -- time =    75540.0 /    87600.0
iteration:      300 /      500 -- time =    75600.0 /    87600.0
iteration:      301 /      500 -- time =    75660.0 /    87600.0
iteration:      302 /      500 -- time =    75720.0 /    87600.0
iteration:      303 /      500 -- time =    75780.0 /    87600.0
iteration:      304 /      500 -- time =    75840.0 /    87600.0
iteration:      305 /      500 -- time =    75900.0 /    87600.0
iteration:      306 /      500 -- time =    75960.0 /    87600.0
iteration:      307 /      500 -- time =    76020.0 /    87600.0
iteration:      308 /      500 -- time =    76080.0 /    87600.0
iteration:      309 /      500 -- time =    76140.0 /    87600.0
iteration:      310 /      500 -- time =    76200.0 /    87600.0
iteration:      311 /      500 -- time =    76260.0 /    87600.0
iteration:      312 /      500 -- time =    76320.0 /    87600.0
iteration:      313 /      500 -- time =    76380.0 /    87600.0
iteration:      314 /      500 -- time =    76440.0 /    87600.0
iteration:      315 /      500 -- time =    76500.0 /    87600.0
iteration:      316 /      500 -- time =    76560.0 /    87600.0
iteration:      317 /      500 -- time =    76620.0 /    87600.0
iteration:      318 /      500 -- time =    76680.0 /    87600.0
iteration:      319 /      500 -- time =    76740.0 /    87600.0
iteration:      320 /      500 -- time =    76800.0 /    87600.0
iteration:      321 /      500 -- time =    76860.0 /    87600.0
iteration:      322 /      500 -- time =    76920.0 /    87600.0
iteration:      323 /      500 -- time =    76980.0 /    87600.0
iteration:      324 /      500 -- time =    77040.0 /    87600.0
iteration:      325 /      500 -- time =    77100.0 /    87600.0
iteration:      326 /      500 -- time =    77160.0 /    87600.0
iteration:      327 /      500 -- time =    77220.0 /    87600.0
iteration:      328 /      500 -- time =    77280.0 /    87600.0
iteration:      329 /      500 -- time =    77340.0 /    87600.0
iteration:      330 /      500 -- time =    77400.0 /    87600.0
iteration:      331 /      500 -- time =    77460.0 /    87600.0
iteration:      332 /      500 -- time =    77520.0 /    87600.0
iteration:      333 /      500 -- time =    77580.0 /    87600.0
iteration:      334 /      500 -- time =    77640.0 /    87600.0
iteration:      335 /      500 -- time =    77700.0 /    87600.0
iteration:      336 /      500 -- time =    77760.0 /    87600.0
iteration:      337 /      500 -- time =    77820.0 /    87600.0
iteration:      338 /      500 -- time =    77880.0 /    87600.0
iteration:      339 /      500 -- time =    77940.0 /    87600.0
iteration:      340 /      500 -- time =    78000.0 /    87600.0
iteration:      341 /      500 -- time =    78060.0 /    87600.0
iteration:      342 /      500 -- time =    78120.0 /    87600.0
iteration:      343 /      500 -- time =    78180.0 /    87600.0
iteration:      344 /      500 -- time =    78240.0 /    87600.0
iteration:      345 /      500 -- time =    78300.0 /    87600.0
iteration:      346 /      500 -- time =    78360.0 /    87600.0
iteration:      347 /      500 -- time =    78420.0 /    87600.0
iteration:      348 /      500 -- time =    78480.0 /    87600.0
iteration:      349 /      500 -- time =    78540.0 /    87600.0
iteration:      350 /      500 -- time =    78600.0 /    87600.0
iteration:      351 /      500 -- time =    78660.0 /    87600.0
iteration:      352 /      500 -- time =    78720.0 /    87600.0
iteration:      353 /      500 -- time =    78780.0 /    87600.0
iteration:      354 /      500 -- time =    78840.0 /    87600.0
iteration:      355 /      500 -- time =    78900.0 /    87600.0
iteration:      356 /      500 -- time =    78960.0 /    87600.0
iteration:      357 /      500 -- time =    79020.0 /    87600.0
iteration:      358 /      500 -- time =    79080.0 /    87600.0
iteration:      359 /      500 -- time =    79140.0 /    87600.0
iteration:      360 /      500 -- time =    79200.0 /    87600.0
iteration:      361 /      500 -- time =    79260.0 /    87600.0
iteration:      362 /      500 -- time =    79320.0 /    87600.0
iteration:      363 /      500 -- time =    79380.0 /    87600.0
iteration:      364 /      500 -- time =    79440.0 /    87600.0
iteration:      365 /      500 -- time =    79500.0 /    87600.0
iteration:      366 /      500 -- time =    79560.0 /    87600.0
iteration:      367 /      500 -- time =    79620.0 /    87600.0
iteration:      368 /      500 -- time =    79680.0 /    87600.0
iteration:      369 /      500 -- time =    79740.0 /    87600.0
iteration:      370 /      500 -- time =    79800.0 /    87600.0
iteration:      371 /      500 -- time =    79860.0 /    87600.0
iteration:      372 /      500 -- time =    79920.0 /    87600.0
iteration:      373 /      500 -- time =    79980.0 /    87600.0
iteration:      374 /      500 -- time =    80040.0 /    87600.0
iteration:      375 /      500 -- time =    80100.0 /    87600.0
iteration:      376 /      500 -- time =    80160.0 /    87600.0
iteration:      377 /      500 -- time =    80220.0 /    87600.0
iteration:      378 /      500 -- time =    80280.0 /    87600.0
iteration:      379 /      500 -- time =    80340.0 /    87600.0
iteration:      380 /      500 -- time =    80400.0 /    87600.0
iteration:      381 /      500 -- time =    80460.0 /    87600.0
iteration:      382 /      500 -- time =    80520.0 /    87600.0
iteration:      383 /      500 -- time =    80580.0 /    87600.0
iteration:      384 /      500 -- time =    80640.0 /    87600.0
iteration:      385 /      500 -- time =    80700.0 /    87600.0
iteration:      386 /      500 -- time =    80760.0 /    87600.0
iteration:      387 /      500 -- time =    80820.0 /    87600.0
iteration:      388 /      500 -- time =    80880.0 /    87600.0
iteration:      389 /      500 -- time =    80940.0 /    87600.0
iteration:      390 /      500 -- time =    81000.0 /    87600.0
iteration:      391 /      500 -- time =    81060.0 /    87600.0
iteration:      392 /      500 -- time =    81120.0 /    87600.0
iteration:      393 /      500 -- time =    81180.0 /    87600.0
iteration:      394 /      500 -- time =    81240.0 /    87600.0
iteration:      395 /      500 -- time =    81300.0 /    87600.0
iteration:      396 /      500 -- time =    81360.0 /    87600.0
iteration:      397 /      500 -- time =    81420.0 /    87600.0
iteration:      398 /      500 -- time =    81480.0 /    87600.0
iteration:      399 /      500 -- time =    81540.0 /    87600.0
iteration:      400 /      500 -- time =    81600.0 /    87600.0
iteration:      401 /      500 -- time =    81660.0 /    87600.0
iteration:      402 /      500 -- time =    81720.0 /    87600.0
iteration:      403 /      500 -- time =    81780.0 /    87600.0
iteration:      404 /      500 -- time =    81840.0 /    87600.0
iteration:      405 /      500 -- time =    81900.0 /    87600.0
iteration:      406 /      500 -- time =    81960.0 /    87600.0
iteration:      407 /      500 -- time =    82020.0 /    87600.0
iteration:      408 /      500 -- time =    82080.0 /    87600.0
iteration:      409 /      500 -- time =    82140.0 /    87600.0
iteration:      410 /      500 -- time =    82200.0 /    87600.0
iteration:      411 /      500 -- time =    82260.0 /    87600.0
iteration:      412 /      500 -- time =    82320.0 /    87600.0
iteration:      413 /      500 -- time =    82380.0 /    87600.0
iteration:      414 /      500 -- time =    82440.0 /    87600.0
iteration:      415 /      500 -- time =    82500.0 /    87600.0
iteration:      416 /      500 -- time =    82560.0 /    87600.0
iteration:      417 /      500 -- time =    82620.0 /    87600.0
iteration:      418 /      500 -- time =    82680.0 /    87600.0
iteration:      419 /      500 -- time =    82740.0 /    87600.0
iteration:      420 /      500 -- time =    82800.0 /    87600.0
iteration:      421 /      500 -- time =    82860.0 /    87600.0
iteration:      422 /      500 -- time =    82920.0 /    87600.0
iteration:      423 /      500 -- time =    82980.0 /    87600.0
iteration:      424 /      500 -- time =    83040.0 /    87600.0
iteration:      425 /      500 -- time =    83100.0 /    87600.0
iteration:      426 /      500 -- time =    83160.0 /    87600.0
iteration:      427 /      500 -- time =    83220.0 /    87600.0
iteration:      428 /      500 -- time =    83280.0 /    87600.0
iteration:      429 /      500 -- time =    83340.0 /    87600.0
iteration:      430 /      500 -- time =    83400.0 /    87600.0
iteration:      431 /      500 -- time =    83460.0 /    87600.0
iteration:      432 /      500 -- time =    83520.0 /    87600.0
iteration:      433 /      500 -- time =    83580.0 /    87600.0
iteration:      434 /      500 -- time =    83640.0 /    87600.0
iteration:      435 /      500 -- time =    83700.0 /    87600.0
iteration:      436 /      500 -- time =    83760.0 /    87600.0
iteration:      437 /      500 -- time =    83820.0 /    87600.0
iteration:      438 /      500 -- time =    83880.0 /    87600.0
iteration:      439 /      500 -- time =    83940.0 /    87600.0
iteration:      440 /      500 -- time =    84000.0 /    87600.0
iteration:      441 /      500 -- time =    84060.0 /    87600.0
iteration:      442 /      500 -- time =    84120.0 /    87600.0
iteration:      443 /      500 -- time =    84180.0 /    87600.0
iteration:      444 /      500 -- time =    84240.0 /    87600.0
iteration:      445 /      500 -- time =    84300.0 /    87600.0
iteration:      446 /      500 -- time =    84360.0 /    87600.0
iteration:      447 /      500 -- time =    84420.0 /    87600.0
iteration:      448 /      500 -- time =    84480.0 /    87600.0
iteration:      449 /      500 -- time =    84540.0 /    87600.0
iteration:      450 /      500 -- time =    84600.0 /    87600.0
iteration:      451 /      500 -- time =    84660.0 /    87600.0
iteration:      452 /      500 -- time =    84720.0 /    87600.0
iteration:      453 /      500 -- time =    84780.0 /    87600.0
iteration:      454 /      500 -- time =    84840.0 /    87600.0
iteration:      455 /      500 -- time =    84900.0 /    87600.0
iteration:      456 /      500 -- time =    84960.0 /    87600.0
iteration:      457 /      500 -- time =    85020.0 /    87600.0
iteration:      458 /      500 -- time =    85080.0 /    87600.0
iteration:      459 /      500 -- time =    85140.0 /    87600.0
iteration:      460 /      500 -- time =    85200.0 /    87600.0
iteration:      461 /      500 -- time =    85260.0 /    87600.0
iteration:      462 /      500 -- time =    85320.0 /    87600.0
iteration:      463 /      500 -- time =    85380.0 /    87600.0
iteration:      464 /      500 -- time =    85440.0 /    87600.0
iteration:      465 /      500 -- time =    85500.0 /    87600.0
iteration:      466 /      500 -- time =    85560.0 /    87600.0
iteration:      467 /      500 -- time =    85620.0 /    87600.0
iteration:      468 /      500 -- time =    85680.0 /    87600.0
iteration:      469 /      500 -- time =    85740.0 /    87600.0
iteration:      470 /      500 -- time =    85800.0 /    87600.0
iteration:      471 /      500 -- time =    85860.0 /    87600.0
iteration:      472 /      500 -- time =    85920.0 /    87600.0
iteration:      473 /      500 -- time =    85980.0 /    87600.0
iteration:      474 /      500 -- time =    86040.0 /    87600.0
iteration:      475 /      500 -- time =    86100.0 /    87600.0
iteration:      476 /      500 -- time =    86160.0 /    87600.0
iteration:      477 /      500 -- time =    86220.0 /    87600.0
iteration:      478 /      500 -- time =    86280.0 /    87600.0
iteration:      479 /      500 -- time =    86340.0 /    87600.0
iteration:      480 /      500 -- time =    86400.0 /    87600.0
iteration:      481 /      500 -- time =    86460.0 /    87600.0
iteration:      482 /      500 -- time =    86520.0 /    87600.0
iteration:      483 /      500 -- time =    86580.0 /    87600.0
iteration:      484 /      500 -- time =    86640.0 /    87600.0
iteration:      485 /      500 -- time =    86700.0 /    87600.0
iteration:      486 /      500 -- time =    86760.0 /    87600.0
iteration:      487 /      500 -- time =    86820.0 /    87600.0
iteration:      488 /      500 -- time =    86880.0 /    87600.0
iteration:      489 /      500 -- time =    86940.0 /    87600.0
iteration:      490 /      500 -- time =    87000.0 /    87600.0
iteration:      491 /      500 -- time =    87060.0 /    87600.0
iteration:      492 /      500 -- time =    87120.0 /    87600.0
iteration:      493 /      500 -- time =    87180.0 /    87600.0
iteration:      494 /      500 -- time =    87240.0 /    87600.0
iteration:      495 /      500 -- time =    87300.0 /    87600.0
iteration:      496 /      500 -- time =    87360.0 /    87600.0
iteration:      497 /      500 -- time =    87420.0 /    87600.0
iteration:      498 /      500 -- time =    87480.0 /    87600.0
iteration:      499 /      500 -- time =    87540.0 /    87600.0
 Program exited normally
iteration:      500 /      500 -- time =    87600.0 /    87600.0
CLUBB-TIMER time_loop_init =             0.2429
CLUBB-TIMER time_clubb_advance =        20.7091
CLUBB-TIMER time_clubb_pdf =             0.0005
CLUBB-TIMER time_SILHS =                 0.0001
CLUBB-TIMER time_microphys_scheme =      0.0000
CLUBB-TIMER time_microphys_advance =     0.0000
CLUBB-TIMER time_loop_end =              0.0000
CLUBB-TIMER time_adapt_grid =            0.0000
CLUBB-TIMER time_total =                22.0689
+ run_scripts/run_scm.py -params clubb_params_multi_col.in -stats input/stats/multi_col_stats.in -debug 0 -max_iters 10 rico_silhs
 - using executable: /home/jenkins/workspace/clubb_nvhpc_gpu_vs_cpu_diffness/run_scripts/../install/latest/clubb_standalone
=================== Running rico_silhs ===================
 When the l_diag_Lscale_from_tau flag is enabled, C2rt must have a value of 1.
 C2rt =     2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000     
 Warning in check_clubb_settings_api
 When the l_diag_Lscale_from_tau flag is enabled, C2thl must have a value of 1.
 C2thl =     2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000     
 Warning in check_clubb_settings_api
 When the l_diag_Lscale_from_tau flag is enabled, C2rtthl must have a value of 1.
 C2rtthl =     2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000     
 Warning in check_clubb_settings_api
 When the l_diag_Lscale_from_tau flag is enabled, C6rt must have a value of 1.
 C6rt =     2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000     
 Warning in check_clubb_settings_api
 When the l_diag_Lscale_from_tau flag is enabled, C6rtb must have a value of 1.
 C6rtb =     2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000     
 Warning in check_clubb_settings_api
 When the l_diag_Lscale_from_tau flag is enabled, C6thl must have a value of 1.
 C6thl =     2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000     
 Warning in check_clubb_settings_api
 When the l_diag_Lscale_from_tau flag is enabled, C6thlb must have a value of 1.
 C6thlb =     2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000      
    2.000000000000000         2.000000000000000         2.000000000000000     
 Warning in check_clubb_settings_api
 stats_nsamp =             1
 stats_nout =             1
iteration:        1 /       10 -- time =      300.0 /     3000.0
iteration:        2 /       10 -- time =      600.0 /     3000.0
iteration:        3 /       10 -- time =      900.0 /     3000.0
iteration:        4 /       10 -- time =     1200.0 /     3000.0
iteration:        5 /       10 -- time =     1500.0 /     3000.0
iteration:        6 /       10 -- time =     1800.0 /     3000.0
iteration:        7 /       10 -- time =     2100.0 /     3000.0
iteration:        8 /       10 -- time =     2400.0 /     3000.0
iteration:        9 /       10 -- time =     2700.0 /     3000.0
 Program exited normally
iteration:       10 /       10 -- time =     3000.0 /     3000.0
CLUBB-TIMER time_loop_init =             0.0065
CLUBB-TIMER time_clubb_advance =         0.2783
CLUBB-TIMER time_clubb_pdf =             0.1772
CLUBB-TIMER time_SILHS =                 0.1928
CLUBB-TIMER time_microphys_scheme =      0.3767
CLUBB-TIMER time_microphys_advance =     2.1676
CLUBB-TIMER time_loop_end =              0.0000
CLUBB-TIMER time_adapt_grid =            0.0000
CLUBB-TIMER time_total =                 3.2212
+ mv output omp_output
+ mkdir output
[Pipeline] }
Lock released on resource [Resource: GPU_built-in]
[Pipeline] // lock
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Compare CPU vs ACC)
[Pipeline] sh
+ run_scripts/run_bindiff_all.py -v 2 -t 1e-6 -s cpu_output acc_output
Directory 1 is cpu_output
Directory 2 is acc_output
Using reporting threshold:  1e-06 

Absolute differences will be scaled by average field value.


The following cases will be compared: ['arm', 'cobra', 'rico_silhs']

###DIFFING arm netCDF (*.nc) files###
>The linux diff detected differences in arm_stats.nc<
The variable col is not comparable because its dimension is not fit for comparison: 1, 1
The variable param is not comparable because its dimension is not fit for comparison: 1, 1
The variable time is not comparable because its dimension is not fit for comparison: 1, 1
The variable zm is not comparable because its dimension is not fit for comparison: 1, 1
The variable zt is not comparable because its dimension is not fit for comparison: 1, 1
Total absolute value of all differences are below threshold: 1e-06

>>No differences detected in the common fields in file arm_stats.nc<<

>>>Differences in linux diff but no differences in common variables detected for case arm.<<<
**********************************************************************************************************
###DIFFING cobra netCDF (*.nc) files###
>The linux diff detected differences in cobra_stats.nc<
The variable col is not comparable because its dimension is not fit for comparison: 1, 1
The variable param is not comparable because its dimension is not fit for comparison: 1, 1
The variable time is not comparable because its dimension is not fit for comparison: 1, 1
The variable zm is not comparable because its dimension is not fit for comparison: 1, 1
The variable zt is not comparable because its dimension is not fit for comparison: 1, 1
Total absolute value of all differences are below threshold: 1e-06

>>No differences detected in the common fields in file cobra_stats.nc<<

>>>Differences in linux diff but no differences in common variables detected for case cobra.<<<
**********************************************************************************************************
###DIFFING rico_silhs netCDF (*.nc) files###
>The linux diff detected differences in rico_silhs_stats.nc<
The variable col is not comparable because its dimension is not fit for comparison: 1, 1
The variable lh_zt is not comparable because its dimension is not fit for comparison: 1, 1
The variable param is not comparable because its dimension is not fit for comparison: 1, 1
The variable time is not comparable because its dimension is not fit for comparison: 1, 1
The variable zm is not comparable because its dimension is not fit for comparison: 1, 1
The variable zt is not comparable because its dimension is not fit for comparison: 1, 1
Total absolute value of all differences are below threshold: 1e-06

>>No differences detected in the common fields in file rico_silhs_stats.nc<<

>>>Differences in linux diff but no differences in common variables detected for case rico_silhs.<<<
**********************************************************************************************************
SUMMARY:
Differences detected by linux diff but no differences in the common variables of the netCDF files compared.
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Compare CPU vs OMP)
[Pipeline] sh
+ run_scripts/run_bindiff_all.py -v 2 -t 1e-6 -s cpu_output omp_output
Directory 1 is cpu_output
Directory 2 is omp_output
Using reporting threshold:  1e-06 

Absolute differences will be scaled by average field value.


The following cases will be compared: ['arm', 'cobra', 'rico_silhs']

###DIFFING arm netCDF (*.nc) files###
>The linux diff detected differences in arm_stats.nc<
The variable col is not comparable because its dimension is not fit for comparison: 1, 1
The variable param is not comparable because its dimension is not fit for comparison: 1, 1
The variable time is not comparable because its dimension is not fit for comparison: 1, 1
The variable zm is not comparable because its dimension is not fit for comparison: 1, 1
The variable zt is not comparable because its dimension is not fit for comparison: 1, 1
Total absolute value of all differences are below threshold: 1e-06

>>No differences detected in the common fields in file arm_stats.nc<<

>>>Differences in linux diff but no differences in common variables detected for case arm.<<<
**********************************************************************************************************
###DIFFING cobra netCDF (*.nc) files###
>The linux diff detected differences in cobra_stats.nc<
The variable col is not comparable because its dimension is not fit for comparison: 1, 1
The variable param is not comparable because its dimension is not fit for comparison: 1, 1
The variable time is not comparable because its dimension is not fit for comparison: 1, 1
The variable zm is not comparable because its dimension is not fit for comparison: 1, 1
The variable zt is not comparable because its dimension is not fit for comparison: 1, 1
Total absolute value of all differences are below threshold: 1e-06

>>No differences detected in the common fields in file cobra_stats.nc<<

>>>Differences in linux diff but no differences in common variables detected for case cobra.<<<
**********************************************************************************************************
###DIFFING rico_silhs netCDF (*.nc) files###
>The linux diff detected differences in rico_silhs_stats.nc<
The variable col is not comparable because its dimension is not fit for comparison: 1, 1
The variable lh_zt is not comparable because its dimension is not fit for comparison: 1, 1
The variable param is not comparable because its dimension is not fit for comparison: 1, 1
The variable time is not comparable because its dimension is not fit for comparison: 1, 1
The variable zm is not comparable because its dimension is not fit for comparison: 1, 1
The variable zt is not comparable because its dimension is not fit for comparison: 1, 1
Total absolute value of all differences are below threshold: 1e-06

>>No differences detected in the common fields in file rico_silhs_stats.nc<<

>>>Differences in linux diff but no differences in common variables detected for case rico_silhs.<<<
**********************************************************************************************************
SUMMARY:
Differences detected by linux diff but no differences in the common variables of the netCDF files compared.
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] }
[Pipeline] // node
[Pipeline] End of Pipeline
Finished: SUCCESS