Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
README.md | D | 03-May-2024 | 1 KiB | 40 | 28 | |
aes_perf.exp | D | 03-May-2024 | 690 | 22 | 8 | |
bloat_perf.exp | D | 03-May-2024 | 789 | 26 | 11 | |
dut_config.exp | D | 03-May-2024 | 2.6 KiB | 67 | 22 | |
enable_aslr.exp | D | 03-May-2024 | 1.3 KiB | 38 | 14 | |
morejs_perf.exp | D | 03-May-2024 | 793 | 26 | 11 | |
non-telemetry-tests.exp | D | 03-May-2024 | 846 | 32 | 16 | |
official-image.exp | D | 03-May-2024 | 1.2 KiB | 42 | 15 | |
page_cycler.exp | D | 03-May-2024 | 850 | 29 | 10 | |
page_cycler_perf.exp | D | 03-May-2024 | 1.1 KiB | 46 | 27 | |
telemetry-crosperf-suites.exp | D | 03-May-2024 | 1.8 KiB | 55 | 21 | |
telemetry-crosperf-with-external-chrome-src.exp | D | 03-May-2024 | 1.1 KiB | 32 | 11 | |
telemetry-crosperf-with-profiler.exp | D | 03-May-2024 | 1.2 KiB | 36 | 11 | |
telemetry-crosperf.exp | D | 03-May-2024 | 1.2 KiB | 33 | 13 | |
telemetry-without-autotest.exp | D | 03-May-2024 | 1.3 KiB | 32 | 11 | |
telemetry_perf_perf | D | 03-May-2024 | 2.4 KiB | 78 | 45 | |
trybot-image.exp | D | 03-May-2024 | 1 KiB | 34 | 11 |
README.md
1# Experiment files 2 3To use these experiment files, replace the board, remote and images 4placeholders and run crosperf on them. 5 6Further information about crosperf: 7https://sites.google.com/a/google.com/chromeos-toolchain-team-home2/home/team-tools-and-scripts/crosperf-cros-image-performance-comparison-tool 8 9The final experiment file should look something like the following (but with 10different actual values for the fields): 11 12``` 13board: lumpy 14remote: 123.45.67.089 15 16# Add images you want to test: 17 18my_image { 19 chromeos_image: /usr/local/chromeos/src/build/images/lumpy/chromiumos_test_image.bin 20} 21 22vanilla_image { 23 chromeos_root: /usr/local/chromeos 24 build: lumpy-release/R35-5672.0.0 25} 26 27# Paste experiment benchmarks here. Example, I pasted 28# `page_cycler_v2.morejs` here. 29 30# This experiment just runs a short autotest which measures the performance 31# of Telemetry's `page_cycler_v2.morejs`. In addition, it profiles cycles. 32 33perf_args: record -e cycles 34 35benchmark: page_cycler_v2.morejs { 36 suite: telemetry_Crosperf 37 iterations: 1 38} 39``` 40