What does allocs/op and B/op mean in go benchmark?

GoBenchmarking

Go Problem Overview


When I run my benchmarks with go test -v -bench=. -benchmem, I see the following results.

f1     10000	    120860 ns/op	    2433 B/op	      28 allocs/op
f2	   10000	    120288 ns/op	    2288 B/op	      26 allocs/op

Based on my understanding:

  1. 10000 is the number of iterations for i := 0; i < b.N; i++ {.
  2. XXX ns/op is approximate time it took for one iteration to complete

But even after reading the docs, I can not find out what B/op and allocs/op mean.


My guess is that allocs/op has something to do with garbage collection and memory allocation (the less the better).

Can anyone give a nice explanation of the meaning of these values. Also it would be nice to know why do the go up and main steps to reduce them (I realize this is test specific, but may be there are some universal hints that work in many cases)

Go Solutions


Solution 1 - Go

allocs/op means how many distinct memory allocations occurred per op (single iteration).

B/op is how many bytes were allocated per op.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionSalvador DaliView Question on Stackoverflow
Solution 1 - GoNot_a_GolferView Answer on Stackoverflow