#!/usr/bin/env python # # Copyright (C) 2016 The Android Open Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # import logging from vts.runners.host import asserts from vts.runners.host import base_test from vts.runners.host import const from vts.runners.host import test_runner from vts.utils.python.controllers import android_device from vts.utils.python.cpu import cpu_frequency_scaling from vts.utils.python.performance import benchmark_parser class BinderPerformanceTest(base_test.BaseTestClass): """A testcase for the Binder Performance Benchmarking. Attributes: dut: the target DUT (device under test) instance. _cpu_freq: CpuFrequencyScalingController instance of self.dut. """ THRESHOLD = { 32: { "4": 150000, "8": 150000, "16": 150000, "32": 150000, "64": 150000, "128": 150000, "256": 150000, "512": 150000, "1024": 150000, "2k": 200000, "4k": 300000, "8k": 400000, "16k": 600000, "32k": 800000, "64k": 1000000, }, 64: { "4": 150000, "8": 150000, "16": 150000, "32": 150000, "64": 150000, "128": 150000, "256": 150000, "512": 150000, "1024": 150000, "2k": 200000, "4k": 300000, "8k": 400000, "16k": 600000, "32k": 800000, "64k": 1000000, } } def setUpClass(self): self.dut = self.android_devices[0] self.dut.shell.Execute("stop") self.dut.shell.Execute("setprop sys.boot_completed 0") self._cpu_freq = cpu_frequency_scaling.CpuFrequencyScalingController(self.dut) self._cpu_freq.DisableCpuScaling() def setUp(self): self._cpu_freq.SkipIfThermalThrottling(retry_delay_secs=30) def tearDown(self): self._cpu_freq.SkipIfThermalThrottling() def tearDownClass(self): self._cpu_freq.EnableCpuScaling() self.dut.shell.Execute("start") self.dut.waitForBootCompletion() def testRunBenchmark32Bit(self): """A testcase which runs the 32-bit benchmark.""" self.RunBenchmark(32) def testRunBenchmark64Bit(self): """A testcase which runs the 64-bit benchmark.""" self.RunBenchmark(64) def RunBenchmark(self, bits): """Runs the native binary and parses its result. Args: bits: integer (32 or 64), the number of bits in a word chosen at the compile time (e.g., 32- vs. 64-bit library). """ # Runs the benchmark. logging.info("Start to run the benchmark (%s bit mode)", bits) binary = "/data/local/tmp/%s/libbinder_benchmark%s" % (bits, bits) results = self.dut.shell.Execute([ "chmod 755 %s" % binary, "LD_LIBRARY_PATH=/data/local/tmp/%s/hw:" "/data/local/tmp/%s:$LD_LIBRARY_PATH " "%s --benchmark_format=json" % (bits, bits, binary) ]) # Parses the result. asserts.assertEqual(len(results[const.STDOUT]), 2) logging.info("stderr: %s", results[const.STDERR][1]) logging.info("stdout: %s", results[const.STDOUT][1]) asserts.assertFalse( any(results[const.EXIT_CODE]), "BinderPerformanceTest failed.") parser = benchmark_parser.GoogleBenchmarkJsonParser( results[const.STDOUT][1]) label_result = parser.GetArguments() value_result = parser.GetRealTime() table_name = "binder_vector_roundtrip_latency_benchmark_%sbits" % bits self.addTableToResult(table_name, parser.ToTable()) # To upload to the web DB. self.web.AddProfilingDataLabeledVector( table_name, label_result, value_result, x_axis_label="Message Size (Bytes)", y_axis_label="Roundtrip Binder RPC Latency (nanoseconds)") # Assertions to check the performance requirements for label, value in zip(label_result, value_result): if label in self.THRESHOLD[bits]: asserts.assertLess( value, self.THRESHOLD[bits][label], "%s ns for %s is longer than the threshold %s ns" % ( value, label, self.THRESHOLD[bits][label])) if __name__ == "__main__": test_runner.main()