diff --git a/benchmarks/gbench/mhp/wave_equation.cpp b/benchmarks/gbench/mhp/wave_equation.cpp index eb4b8f7d5b..11ec6041c9 100644 --- a/benchmarks/gbench/mhp/wave_equation.cpp +++ b/benchmarks/gbench/mhp/wave_equation.cpp @@ -677,7 +677,7 @@ static void WaveEquation_DR(benchmark::State &state) { int n = 4000; std::size_t nread, nwrite, nflop; calculate_complexity(n, n, nread, nwrite, nflop); - Stats stats(state, nread, nwrite); + Stats stats(state, nread, nwrite, nflop); auto iter_callback = [&stats]() { stats.rep(); }; for (auto _ : state) { diff --git a/src-python/drbench/drbench/drbench.py b/src-python/drbench/drbench/drbench.py index 0e009c84ce..b6fd92d01e 100644 --- a/src-python/drbench/drbench/drbench.py +++ b/src-python/drbench/drbench/drbench.py @@ -416,7 +416,9 @@ def multi_node(base): ] dr_filters = dr_nop2p + dr_p2p mhp_filters = ["Stencil2D_DR", "WaveEquation_DR"] - shp_filters = ["Sort_DR"] + # too slow to run + # shp_filters = ["Sort_DR"] + shp_filters = [] reference_filters = [ "BlackScholes_Reference", "Reduce_Reference",