Skip to content

Commit dffc43d

Browse files
committed
update benchmarks
1 parent d6dd3a6 commit dffc43d

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

bench/uti/uti.bench.cxx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,20 +43,20 @@ BENCHMARK( bm_push_back_trivial< utivecint > )->RangeMultiplier( 4 )->Range(
4343
BENCHMARK( bm_push_back_trivial< utivecintstat > )->RangeMultiplier( 4 )->Range( 1024, 1024 << 10 )->Unit( benchmark::kMicrosecond );
4444
BENCHMARK( bm_push_back_trivial< utivecintlist > )->RangeMultiplier( 4 )->Range( 1024, 1024 << 10 )->Unit( benchmark::kMicrosecond );
4545

46-
BENCHMARK( bm_push_back_nontrivial< stdvecstr > )->RangeMultiplier( 2 )->Range( 1024, 1024 << 6 )->Unit( benchmark::kMicrosecond );
47-
BENCHMARK( bm_push_back_nontrivial< utivecstr > )->RangeMultiplier( 2 )->Range( 1024, 1024 << 6 )->Unit( benchmark::kMicrosecond );
48-
BENCHMARK( bm_push_back_nontrivial< utivecstrstat > )->RangeMultiplier( 2 )->Range( 1024, 1024 << 6 )->Unit( benchmark::kMicrosecond );
49-
BENCHMARK( bm_push_back_nontrivial< utivecstrlist > )->RangeMultiplier( 2 )->Range( 1024, 1024 << 6 )->Unit( benchmark::kMicrosecond );
46+
BENCHMARK( bm_push_back_nontrivial< stdvecstr > )->RangeMultiplier( 2 )->Range( 1024, 1024 << 8 )->Unit( benchmark::kMicrosecond );
47+
BENCHMARK( bm_push_back_nontrivial< utivecstr > )->RangeMultiplier( 2 )->Range( 1024, 1024 << 8 )->Unit( benchmark::kMicrosecond );
48+
BENCHMARK( bm_push_back_nontrivial< utivecstrstat > )->RangeMultiplier( 2 )->Range( 1024, 1024 << 8 )->Unit( benchmark::kMicrosecond );
49+
BENCHMARK( bm_push_back_nontrivial< utivecstrlist > )->RangeMultiplier( 2 )->Range( 1024, 1024 << 8 )->Unit( benchmark::kMicrosecond );
5050

5151
BENCHMARK( bm_push_back_reserved_trivial< stdvecint > )->RangeMultiplier( 2 )->Range( 1024, 1024 << 10 )->Unit( benchmark::kMicrosecond );
5252
BENCHMARK( bm_push_back_reserved_trivial< utivecint > )->RangeMultiplier( 2 )->Range( 1024, 1024 << 10 )->Unit( benchmark::kMicrosecond );
5353
BENCHMARK( bm_push_back_reserved_trivial< utivecintstat > )->RangeMultiplier( 2 )->Range( 1024, 1024 << 10 )->Unit( benchmark::kMicrosecond );
5454
BENCHMARK( bm_push_back_reserved_trivial< utivecintlist > )->RangeMultiplier( 2 )->Range( 1024, 1024 << 10 )->Unit( benchmark::kMicrosecond );
5555

56-
BENCHMARK( bm_push_back_reserved_nontrivial< stdvecstr > )->RangeMultiplier( 2 )->Range( 1024, 1024 << 6 )->Unit( benchmark::kMicrosecond );
57-
BENCHMARK( bm_push_back_reserved_nontrivial< utivecstr > )->RangeMultiplier( 2 )->Range( 1024, 1024 << 6 )->Unit( benchmark::kMicrosecond );
58-
BENCHMARK( bm_push_back_reserved_nontrivial< utivecstrstat > )->RangeMultiplier( 2 )->Range( 1024, 1024 << 6 )->Unit( benchmark::kMicrosecond );
59-
BENCHMARK( bm_push_back_reserved_nontrivial< utivecstrlist > )->RangeMultiplier( 2 )->Range( 1024, 1024 << 6 )->Unit( benchmark::kMicrosecond );
56+
BENCHMARK( bm_push_back_reserved_nontrivial< stdvecstr > )->RangeMultiplier( 2 )->Range( 1024, 1024 << 8 )->Unit( benchmark::kMicrosecond );
57+
BENCHMARK( bm_push_back_reserved_nontrivial< utivecstr > )->RangeMultiplier( 2 )->Range( 1024, 1024 << 8 )->Unit( benchmark::kMicrosecond );
58+
BENCHMARK( bm_push_back_reserved_nontrivial< utivecstrstat > )->RangeMultiplier( 2 )->Range( 1024, 1024 << 8 )->Unit( benchmark::kMicrosecond );
59+
BENCHMARK( bm_push_back_reserved_nontrivial< utivecstrlist > )->RangeMultiplier( 2 )->Range( 1024, 1024 << 8 )->Unit( benchmark::kMicrosecond );
6060

6161
////////////////////////////////////////////////////////////////////////////////
6262

0 commit comments

Comments
 (0)