blob: 720e8e5dd4bb6d9ed1446f4bea7590700ea35266 [file] [log] [blame]
// Copyright 2020 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package arc
import (
"context"
"math"
"time"
"chromiumos/tast/common/perf"
"chromiumos/tast/local/arc"
arcMemory "chromiumos/tast/local/bundles/cros/arc/memory"
"chromiumos/tast/local/memory"
"chromiumos/tast/testing"
)
func init() {
testing.AddTest(&testing.Test{
Func: MemoryShiftingPerf,
Desc: "Alternate applying memory pressure to ChromeOS and Android",
Contacts: []string{
"cwd@chromium.org",
"arcvm-eng@google.com",
},
SoftwareDeps: []string{"chrome"},
Fixture: "arcBooted",
Data: arcMemory.AndroidData(),
Params: []testing.Param{{
ExtraSoftwareDeps: []string{"android_p"},
// TODO(b/146081124): Reenable the test when this test stops hanging ARC++ devices.
}, {
Name: "vm",
// TODO(b/179502257): Reenable the test on vm when it isn't broken.
// ExtraAttr: []string{"group:crosbolt", "crosbolt_perbuild"},
ExtraSoftwareDeps: []string{"android_vm"},
}},
Timeout: 20 * time.Minute,
})
}
// mean returns the arithmetic mean of a slice of integers.
func mean(values []uint) float64 {
sum := 0.0
for _, v := range values {
sum += float64(v)
}
return sum / float64(len(values))
}
func MemoryShiftingPerf(ctx context.Context, s *testing.State) {
minAndroidMetric := perf.Metric{Name: "min_android", Unit: "MiB", Direction: perf.BiggerIsBetter}
maxAndroidMetric := perf.Metric{Name: "max_android", Unit: "MiB", Direction: perf.BiggerIsBetter}
minChromeOSMetric := perf.Metric{Name: "min_chromeos", Unit: "MiB", Direction: perf.BiggerIsBetter}
maxChromeOSMetric := perf.Metric{Name: "max_chromeos", Unit: "MiB", Direction: perf.BiggerIsBetter}
marginMetric := perf.Metric{Name: "critical_margin", Unit: "MiB", Direction: perf.SmallerIsBetter}
p := perf.NewValues()
margin, err := memory.CriticalMargin()
if err != nil {
s.Fatal("Failed to read critical margin: ", err)
}
p.Set(marginMetric, float64(margin)/memory.MiB)
a := arcMemory.NewAndroidAllocator(s.FixtValue().(*arc.PreData).ARC)
cleanup, err := a.Prepare(ctx, func(p string) string { return s.DataPath(p) })
if err != nil {
s.Fatal("Failed to setup ArcMemoryAllocatorTest app: ", err)
}
defer cleanup()
c := arcMemory.NewChromeOSAllocator()
arcMin := math.MaxFloat64
arcMax := 0.0
crosMin := math.MaxFloat64
crosMax := 0.0
for shift := 0; shift < 3; shift++ {
// Allocate in Android.
const epsilon = 5 * memory.MiB // We want to be consistently under the critical margin, so make the target available just inside.
arcAllocated, err := a.AllocateUntil(
ctx,
time.Second,
30,
margin-epsilon,
)
if err != nil {
s.Fatal("Failed to allocate Android memory: ", err)
}
// Use the last 10 attempts to get stable results.
arcMean := mean(arcAllocated[len(arcAllocated)-10:])
arcMin = math.Min(arcMin, arcMean)
arcMax = math.Max(arcMax, arcMean)
if err := a.FreeAll(ctx); err != nil {
s.Fatal("Failed to free Android memory: ", err)
}
// Allocate in ChromeOS.
crosAllocated, err := c.AllocateUntil(
ctx,
time.Second,
30,
margin-epsilon,
)
if err != nil {
s.Fatal("Failed to allocate ChromeOS memory: ", err)
}
// Use the last 10 attempts to get stable results.
crosMean := mean(crosAllocated[len(crosAllocated)-10:])
crosMin = math.Min(crosMin, crosMean)
crosMax = math.Max(crosMax, crosMean)
if _, err := c.FreeAll(); err != nil {
s.Fatal("Failed to free ChromeOS memory: ", err)
}
}
const bytesInMiB = 1024 * 1024
p.Set(minAndroidMetric, float64(arcMin)/bytesInMiB)
p.Set(maxAndroidMetric, float64(arcMax)/bytesInMiB)
p.Set(minChromeOSMetric, float64(crosMin)/bytesInMiB)
p.Set(maxChromeOSMetric, float64(crosMax)/bytesInMiB)
if err := p.Save(s.OutDir()); err != nil {
s.Error("Failed saving perf data: ", err)
}
}