本文整理匯總了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)
}