You've already forked go-profiler-notes
mirror of
https://github.com/DataDog/go-profiler-notes.git
synced 2025-07-12 23:50:13 +02:00
10 lines
92 B
Go
10 lines
92 B
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func Benchmark_compute(b *testing.B) {
|
|
compute(b.N)
|
|
}
|