我使用不同的列表大小对代码进行基准测试(大小为S的列表)Go基准测试显示ns / op但我想要的是(ns / op)/ S.
换句话说,go test -bench=.
的输出是:
BenchmarkMy10-4 100000000 15.7 ns/op
BenchmarkMy20-4 50000000 33.8 ns/op
BenchmarkMy30-4 30000000 43.8 ns/op
BenchmarkMy40-4 30000000 49.3 ns/op
BenchmarkMy50-4 30000000 56.6 ns/op
BenchmarkMy1000-4 2000000 686 ns/op
BenchmarkMy10000-4 200000 6685 ns/op
BenchmarkMy100000-4 20000 65425 ns/op
“My10”中的“10”表示10个项目的列表(S = 10)。
虽然知道不同列表大小的ns / op很有用,但我还想知道ns / op / S(列表中每个项目的时间)。
现在我将结果粘贴到电子表格中并在那里进行数学运算。但是我想让“测试”输出这些信息给我。
我的main_test.go文件如下:
import "testing"
var result int
func benchmarkMy(i int, b *testing.B) {
var r int
mylist := MakeList(i)
b.ResetTimer()
for n := 0; n < b.N; n++ {
r = My(mylist)
}
result = r
}
func BenchmarkMy10(b *testing.B) { benchmarkMy(10, b) }
func BenchmarkMy20(b *testing.B) { benchmarkMy(20, b) }
func BenchmarkMy30(b *testing.B) { benchmarkMy(30, b) }
func BenchmarkMy40(b *testing.B) { benchmarkMy(40, b) }
func BenchmarkMy50(b *testing.B) { benchmarkMy(50, b) }
func BenchmarkMy1000(b *testing.B) { benchmarkMy(1000, b) }
func BenchmarkMy10000(b *testing.B) { benchmarkMy(10000, b) }
func BenchmarkMy100000(b *testing.B) { benchmarkMy(100000, b) }
看起来test.BenchmarkResult结构有我需要的信息,但我不知道如何使用这个结构。
答案 0 :(得分:8)
您可以使用程序包testing
中的Benchmark函数编写自定义基准。并获得您提及的BenchmarkResult
实例。
package main
import (
"fmt"
"testing"
)
func benchmarkMy(i int) {
fn := func(b *testing.B) {
// Code you want benchmarked
}
r := testing.Benchmark(fn)
fmt.Printf("%d ns/op\n", int(r.T)/r.N)
fmt.Printf("%d ns/op/i\n", int(r.T)/r.N/i)
}
func main() {
benchmarkMy(10)
}
您必须将其放在不同的包中并使用go run
代替go test
运行。
查看playground中的示例。