File tree Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -276,15 +276,27 @@ func BenchmarkNext4(b *testing.B) {
276276}
277277
278278func BenchmarkNext16 (b * testing.B ) {
279- benchmarkNextParallel (b , 4 )
279+ benchmarkNextParallel (b , 16 )
280280}
281281
282282func BenchmarkNext32 (b * testing.B ) {
283- benchmarkNextParallel (b , 4 )
283+ benchmarkNextParallel (b , 32 )
284284}
285285
286286func BenchmarkNext64 (b * testing.B ) {
287- benchmarkNextParallel (b , 4 )
287+ benchmarkNextParallel (b , 64 )
288+ }
289+
290+ func BenchmarkNext128 (b * testing.B ) {
291+ benchmarkNextParallel (b , 128 )
292+ }
293+
294+ func BenchmarkNext256 (b * testing.B ) {
295+ benchmarkNextParallel (b , 256 )
296+ }
297+
298+ func BenchmarkNext512 (b * testing.B ) {
299+ benchmarkNextParallel (b , 512 )
288300}
289301
290302func benchmarkNextParallel (b * testing.B , parallelism int ) {
You can’t perform that action at this time.
0 commit comments