本文整理汇总了Golang中github.com/aclements/go-gcstats/gcstats.GcStats.MutatorUtilizationDistribution方法的典型用法代码示例。如果您正苦于以下问题:Golang GcStats.MutatorUtilizationDistribution方法的具体用法?Golang GcStats.MutatorUtilizationDistribution怎么用?Golang GcStats.MutatorUtilizationDistribution使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/aclements/go-gcstats/gcstats.GcStats
的用法示例。
在下文中一共展示了GcStats.MutatorUtilizationDistribution方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: doMUDMap
func doMUDMap(s *gcstats.GcStats) {
windows := ints(vec.Logspace(6, 9, 100, 10))
muds := make([]*gcstats.MUD, len(windows))
for i, windowNS := range windows {
muds[i] = s.MutatorUtilizationDistribution(windowNS)
}
// gnuplot "nonuniform matrix" format
fmt.Printf("%d ", len(windows)+1)
for _, windowNS := range windows {
fmt.Printf("%d ", windowNS)
}
fmt.Print("\n")
utils := vec.Linspace(0, 1, 100)
for _, util := range utils {
fmt.Printf("%g ", util)
for _, mud := range muds {
fmt.Printf("%g ", mud.CDF(util))
}
fmt.Print("\n")
}
}
示例2: doMUT
func doMUT(s *gcstats.GcStats) {
windows := vec.Logspace(-3, 0, samples, 10)
muds := make(map[float64]*gcstats.MUD)
for _, window := range windows {
muds[window] = s.MutatorUtilizationDistribution(int(window * 1e9))
}
plot := newPlot("granularity", windows, "--style", "mut")
type config struct {
label string
x float64
}
for _, c := range []config{
{"100%ile", 0},
{"99.9%ile", 0.001},
{"99%ile", 0.01},
{"90%ile", 0.1},
} {
plot.addSeries(c.label, func(x float64) float64 {
return muds[x].InvCDF(c.x)
})
}
showPlot(plot)
}