benchstat
go bench の統計情報を見やすくしてくれるツール
install: go install golang.org/x/perf/cmd/benchstat@latest
sample
go test -run '^$' -bench '^BenchmarkSample$' -count 6 -cpu 2 -benchmem -memprofile=test.mem.pprof -cpuprofile=test.cpu.pprof | tee bench.log のような形で bench log を取得
benchstat bench.log で統計を表示
benchstat bench.log bench2.log のように、比較も可能
goland で設定する場合、Program Arguments に -test.benchmem` のようにオプションを入れないといけない
https://gyazo.com/8fa994ccfdebde4ad8857822cb9c54a6