Skip to content

Commit e0b6c0b

Browse files
author
Michael McLeod
committed
Fix benchmark call
1 parent ea60b78 commit e0b6c0b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cpp/benchmarks/algorithms_mpi.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ BENCHMARK_DEFINE_F(AlgoFixtureMPI, FbDistributeImage)(benchmark::State &state) {
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,
137137
m_sigma, beta, gamma, m_imsizey, m_imsizex, m_sara.size(), state.range(3) + 1, true, true,
138-
false, 1e-3, 1e-2, 50, 1.0);
138+
false, 1e-3, 1e-2, 50);
139139

140140
// Benchmark the application of the algorithm
141141
while (state.KeepRunning()) {
@@ -159,7 +159,7 @@ BENCHMARK_DEFINE_F(AlgoFixtureMPI, FbDistributeGrid)(benchmark::State &state) {
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,
161161
m_sigma, beta, gamma, m_imsizey, m_imsizex, m_sara.size(), state.range(3) + 1, true, true,
162-
false, 1e-3, 1e-2, 50, 1.0);
162+
false, 1e-3, 1e-2, 50);
163163

164164
// Benchmark the application of the algorithm
165165
while (state.KeepRunning()) {

0 commit comments

Comments
 (0)