Skip to content

Commit 8fa2851

Browse files
author
Michael McLeod
committed
Fix namespacing issue
1 parent 7b7bd44 commit 8fa2851

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cpp/benchmarks/algorithms.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ BENCHMARK_DEFINE_F(AlgoFixture, ForwardBackwardOnnx)(benchmark::State &state) {
115115
m_fb = factory::fb_factory<sopt::algorithm::ImagingForwardBackward<t_complex>>(
116116
factory::algo_distribution::serial, m_measurements_transform, wavelets, m_uv_data, m_sigma,
117117
beta, gamma, m_imsizey, m_imsizex, m_sara.size(), state.range(3) + 1, true, true, false, 1e-3,
118-
1e-2, 50, 1.0, tf_model_path, factory::nondiff_func_type::Denoiser);
118+
1e-2, 50, 1.0, tf_model_path, nondiff_func_type::Denoiser);
119119

120120
while (state.KeepRunning()) {
121121
auto start = std::chrono::high_resolution_clock::now();

cpp/benchmarks/algorithms_mpi.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ BENCHMARK_DEFINE_F(AlgoFixtureMPI, FbOnnxDistributeImage)(benchmark::State &stat
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,
190190
m_sigma, beta, gamma, m_imsizey, m_imsizex, m_sara.size(), state.range(3) + 1, true, true,
191-
false, 1e-3, 1e-2, 50, 1.0, tf_model_path, factory::nondiff_func_type::Denoiser);
191+
false, 1e-3, 1e-2, 50, 1.0, tf_model_path, nondiff_func_type::Denoiser);
192192

193193
// Benchmark the application of the algorithm
194194
while (state.KeepRunning()) {

0 commit comments

Comments
 (0)