Hello,
I am trying to find a dashboard with current benchmarks of go core routines (e.g. math, sort, reflect, etc.). For example, among others, I would like to see these benchmarks:
https://github.com/golang/go/blob/master/src/math/all_test.go#L3196I tried to run it with `go test -bench=. ./...` from the root of "go" repo, but getting errors like for case of "math":
```
package std/math
exp_asm.go:9:8: use of internal package internal/cpu not allowed
package std/math/big
big/arith_amd64.go:9:8: use of internal package internal/cpu not allowed
```
I think I am doing something wrong or I am missing some public dashboard. Thus, few questions:
1. How to run benchmarks from `
https://github.com/golang/go`?
2. Is there a public official dashboard with benchmarks?
3. Any resources on how benchmarks have changed over last couple of years releases of go?
Thanks,
- Nikolay