@@ -89,7 +89,7 @@ BENCHMARK_DEFINE_F(AlgoFixtureMPI, PadmmDistributeImage)(benchmark::State &state
8989
9090 m_padmm = factory::padmm_factory<sopt::algorithm::ImagingProximalADMM<t_complex>>(
9191 factory::algo_distribution::mpi_distributed, m_measurements_distribute_image, wavelets,
92- m_uv_data, m_sigma, m_imsizey, m_imsizex, m_sara.size (), state.range (3 ) + 1 , true , true ,
92+ m_uv_data, m_sigma, m_imsizey, m_imsizex, m_sara.size (), state.range (3 ), true , true ,
9393 false , 1e-3 , 1e-2 , 50 , 1.0 , 1.0 );
9494
9595 // Benchmark the application of the algorithm
@@ -110,7 +110,7 @@ BENCHMARK_DEFINE_F(AlgoFixtureMPI, PadmmDistributeGrid)(benchmark::State &state)
110110
111111 m_padmm = factory::padmm_factory<sopt::algorithm::ImagingProximalADMM<t_complex>>(
112112 factory::algo_distribution::mpi_distributed, m_measurements_distribute_grid, wavelets,
113- m_uv_data, m_sigma, m_imsizey, m_imsizex, m_sara.size (), state.range (3 ) + 1 , true , true ,
113+ m_uv_data, m_sigma, m_imsizey, m_imsizex, m_sara.size (), state.range (3 ), true , true ,
114114 false , 1e-3 , 1e-2 , 50 , 1.0 , 1.0 );
115115
116116 // Benchmark the application of the algorithm
@@ -134,7 +134,7 @@ BENCHMARK_DEFINE_F(AlgoFixtureMPI, FbDistributeImage)(benchmark::State &state) {
134134
135135 m_fb = factory::fb_factory<sopt::algorithm::ImagingForwardBackward<t_complex>>(
136136 factory::algo_distribution::mpi_serial, m_measurements_distribute_image, wavelets, m_uv_data,
137- m_sigma, beta, gamma, m_imsizey, m_imsizex, m_sara.size (), state.range (3 ) + 1 , true , true ,
137+ m_sigma, beta, gamma, m_imsizey, m_imsizex, m_sara.size (), state.range (3 ), true , true ,
138138 false , 1e-3 , 1e-2 , 50 , 1.0 );
139139
140140 // Benchmark the application of the algorithm
@@ -158,7 +158,7 @@ BENCHMARK_DEFINE_F(AlgoFixtureMPI, FbDistributeGrid)(benchmark::State &state) {
158158
159159 m_fb = factory::fb_factory<sopt::algorithm::ImagingForwardBackward<t_complex>>(
160160 factory::algo_distribution::mpi_serial, m_measurements_distribute_grid, wavelets, m_uv_data,
161- m_sigma, beta, gamma, m_imsizey, m_imsizex, m_sara.size (), state.range (3 ) + 1 , true , true ,
161+ m_sigma, beta, gamma, m_imsizey, m_imsizex, m_sara.size (), state.range (3 ), true , true ,
162162 false , 1e-3 , 1e-2 , 50 , 1.0 );
163163
164164 // Benchmark the application of the algorithm
@@ -187,7 +187,7 @@ BENCHMARK_DEFINE_F(AlgoFixtureMPI, FbOnnxDistributeImage)(benchmark::State &stat
187187
188188 m_fb = factory::fb_factory<sopt::algorithm::ImagingForwardBackward<t_complex>>(
189189 factory::algo_distribution::mpi_serial, m_measurements_distribute_image, wavelets, m_uv_data,
190- m_sigma, beta, gamma, m_imsizey, m_imsizex, m_sara.size (), state.range (3 ) + 1 , true , true ,
190+ m_sigma, beta, gamma, m_imsizey, m_imsizex, m_sara.size (), state.range (3 ), true , true ,
191191 false , 1e-3 , 1e-2 , 50 , 1.0 , tf_model_path, nondiff_func_type::Denoiser);
192192
193193 // Benchmark the application of the algorithm
@@ -208,7 +208,7 @@ BENCHMARK_REGISTER_F(AlgoFixtureMPI, FbOnnxDistributeImage)
208208 ->Args({1024 , static_cast <t_int>(1e8 ), 4 , 10 , 1 })
209209 ->Args({1024 , static_cast <t_int>(1e9 ), 4 , 10 , 1 })
210210 ->UseManualTime()
211- ->MinTime(120 .0 )
211+ ->MinTime(60 .0 )
212212 ->MinWarmUpTime(10.0 )
213213 ->Repetitions(3 ) // ->ReportAggregatesOnly(true)
214214 ->Unit(benchmark::kMillisecond );
@@ -223,7 +223,7 @@ BENCHMARK_REGISTER_F(AlgoFixtureMPI, FbDistributeImage)
223223 ->Args({1024 , static_cast <t_int>(1e8 ), 4 , 10 , 1 })
224224 ->Args({1024 , static_cast <t_int>(1e9 ), 4 , 10 , 1 })
225225 ->UseManualTime()
226- ->MinTime(120 .0 )
226+ ->MinTime(60 .0 )
227227 ->MinWarmUpTime(10.0 )
228228 ->Repetitions(3 ) // ->ReportAggregatesOnly(true)
229229 ->Unit(benchmark::kMillisecond );
@@ -236,7 +236,7 @@ BENCHMARK_REGISTER_F(AlgoFixtureMPI, FbDistributeGrid)
236236 ->Args({1024 , static_cast <t_int>(1e8 ), 4 , 10 , 1 })
237237 ->Args({1024 , static_cast <t_int>(1e9 ), 4 , 10 , 1 })
238238 ->UseManualTime()
239- ->MinTime(120 .0 )
239+ ->MinTime(60 .0 )
240240 ->MinWarmUpTime(10.0 )
241241 ->Repetitions(3 ) // ->ReportAggregatesOnly(true)
242242 ->Unit(benchmark::kMillisecond );
0 commit comments