File tree 2 files changed +14
-14
lines changed
2 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ function(add_mhp_ctest_impl)
223
223
if (DEFINED AMC_TIMEOUT)
224
224
set_tests_properties (${AMC_TEST_NAME} PROPERTIES TIMEOUT ${AMC_TIMEOUT} )
225
225
else ()
226
- set_tests_properties (${AMC_TEST_NAME} PROPERTIES TIMEOUT 60 )
226
+ set_tests_properties (${AMC_TEST_NAME} PROPERTIES TIMEOUT 600 )
227
227
endif ()
228
228
229
229
if (AMC_TESTLABEL)
Original file line number Diff line number Diff line change @@ -163,19 +163,19 @@ void check_reduce(T actual) {
163
163
}
164
164
}
165
165
166
- template <class ... BackendT> static void Reduce_DR (benchmark::State &state) {
167
- T actual{};
168
- xhp::distributed_vector<T, BackendT...> src (default_vector_size, fill);
169
- Stats stats (state, sizeof (T) * src.size (), 0 );
170
- for (auto _ : state) {
171
- for (std::size_t i = 0 ; i < default_repetitions; i++) {
172
- stats.rep ();
173
- actual = xhp::reduce (src);
174
- }
175
- }
176
- check_reduce (actual);
177
- }
178
- DR_BENCHMARK (Reduce_DR);
166
+ // template <class... BackendT> static void Reduce_DR(benchmark::State &state) {
167
+ // T actual{};
168
+ // xhp::distributed_vector<T, BackendT...> src(default_vector_size, fill);
169
+ // Stats stats(state, sizeof(T) * src.size(), 0);
170
+ // for (auto _ : state) {
171
+ // for (std::size_t i = 0; i < default_repetitions; i++) {
172
+ // stats.rep();
173
+ // actual = xhp::reduce(src);
174
+ // }
175
+ // }
176
+ // check_reduce(actual);
177
+ // }
178
+ // DR_BENCHMARK(Reduce_DR);
179
179
180
180
#ifdef DRISHMEM
181
181
DR_BENCHMARK (Reduce_DR<dr::mhp::IshmemBackend>)->Name(" Reduce_DR_ishmem" );
You can’t perform that action at this time.
0 commit comments