Skip to content

Commit 017debc

Browse files
committed
Use 128 block size for tests
1 parent 82f8370 commit 017debc

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

experimental/bench_segmented_algos.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2492,8 +2492,7 @@ void run_benchmarks()
24922492

24932493
{
24942494
std::cout << "--- bc::deque<" << typeid(T).name() << "> ---\n";
2495-
//bc::deque<T, void, bc::deque_options_t<bc::block_size<4096> > > dq;
2496-
bc::deque<T> dq;
2495+
bc::deque<T, void, bc::deque_options_t<bc::block_size<128> > > dq;
24972496
fill_test_data(dq, N);
24982497
run_all(dq, iter, "deque");
24992498
std::cout << "\n";
@@ -2517,6 +2516,6 @@ int main()
25172516
{
25182517
//run_benchmarks<int>();
25192518
run_benchmarks<MyInt>();
2520-
//run_benchmarks<MyFatInt>();
2519+
run_benchmarks<MyFatInt>();
25212520
return 0;
25222521
}

0 commit comments

Comments
 (0)