Hash :
ca893fdf
Author :
Date :
2025-06-23T13:41:33
Search only for png files while pulling screenshot restricted_trace_perf.py should only look for png files in temp dir and then assert only for 1 screenshot to be present. Bug: b/427963936 Change-Id: I0692aded39f7c3bd5b0c30ee4a7b613db08eac04 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/6680727 Auto-Submit: Shashank Sharma <shawshanks@google.com> Reviewed-by: Amirali Abdolrashidi <abdolrashidi@google.com> Reviewed-by: Cody Northrop <cnorthrop@google.com> Commit-Queue: Amirali Abdolrashidi <abdolrashidi@google.com>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304
#! /usr/bin/env python3
#
# Copyright 2021 The ANGLE Project Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
#
'''
Pixel 6 (ARM based) specific script that measures the following for each restricted_trace:
- Wall time per frame
- GPU time per frame (if run with --vsync)
- CPU time per frame
- GPU power per frame
- CPU power per frame
- GPU memory per frame
Setup:
autoninja -C out/<config> angle_trace_perf_tests angle_apks
Recommended command to run:
out/<config>/restricted_trace_perf --fixedtime 10 --power --memory --output-tag android.$(date '+%Y%m%d') --loop-count 5
Alternatively, you can pass the build directory and run from anywhere:
python3 restricted_trace_perf.py --fixedtime 10 --power --output-tag android.$(date '+%Y%m%d') --loop-count 5 --build-dir ../../../out/<config>
- This will run through all the traces 5 times with the native driver, then 5 times with vulkan (via ANGLE)
- 10 second run time with one warmup loop
Output will be printed to the terminal as it is collected.
Of the 5 runs, the high and low for each data point will be dropped, average of the remaining three will be tracked in the summary spreadsheet.
'''
import argparse
import contextlib
import copy
import csv
import fnmatch
import json
import logging
import os
import pathlib
import posixpath
import re
import statistics
import subprocess
import sys
import threading
import time
from collections import defaultdict, namedtuple
from datetime import datetime
PY_UTILS = str(pathlib.Path(__file__).resolve().parents[1] / 'py_utils')
if PY_UTILS not in sys.path:
os.stat(PY_UTILS) and sys.path.insert(0, PY_UTILS)
import android_helper
import angle_path_util
import angle_test_util
DEFAULT_TEST_DIR = '.'
DEFAULT_LOG_LEVEL = 'info'
DEFAULT_ANGLE_PACKAGE = 'com.android.angle.test'
Result = namedtuple('Result', ['stdout', 'stderr', 'time'])
class _global(object):
current_user = None
storage_dir = None
cache_dir = None
def init():
_global.current_user = run_adb_shell_command('am get-current-user').strip()
_global.storage_dir = '/data/user/' + _global.current_user + '/com.android.angle.test/files'
_global.cache_dir = '/data/user_de/' + _global.current_user + '/com.android.angle.test/cache'
logging.debug('Running with user %s, storage %s, cache %s', _global.current_user,
_global.storage_dir, _global.cache_dir)
def run_async_adb_shell_command(cmd):
logging.debug('Kicking off subprocess %s' % (cmd))
try:
async_process = subprocess.Popen([android_helper.FindAdb(), 'shell', cmd],
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT)
except subprocess.CalledProcessError as e:
raise RuntimeError("command '{}' return with error (code {}): {}".format(
e.cmd, e.returncode, e.output))
logging.debug('Done launching subprocess')
return async_process
def run_adb_command(args):
return android_helper._AdbRun(args).decode()
def run_adb_shell_command(cmd):
return android_helper._AdbShell(cmd).decode()
def run_adb_shell_command_with_run_as(cmd):
return android_helper._AdbShellWithRunAs(cmd).decode()
def run_async_adb_command(args):
return run_async_command('adb ' + args)
def cleanup():
run_adb_shell_command_with_run_as('rm -f ' + _global.storage_dir + '/out.txt ' +
_global.storage_dir + '/gpumem.txt')
def clear_blob_cache():
run_adb_shell_command_with_run_as('rm -rf ' + _global.cache_dir)
def select_device(device_arg):
# The output from 'adb devices' always includes a header and a new line at the end.
result_dev_out = run_adb_command(['devices']).strip()
result_header_end = result_dev_out.find('\n')
result_dev_out = '' if result_header_end == -1 else result_dev_out[result_header_end:]
result_dev_out = result_dev_out.split()[0::2]
def print_device_list():
print('\nList of available devices:\n{}'.format('\n'.join(result_dev_out)))
num_connected_devices = len(result_dev_out)
# Check the device arg first. If there is none, use the ANDROID SERIAL env var.
android_serial_env = os.environ.get('ANDROID_SERIAL')
device_serial = device_arg if device_arg != '' else android_serial_env
# Check for device exceptions
if num_connected_devices == 0:
logging.error('DeviceError: No devices detected. Please connect a device and try again.')
exit()
if num_connected_devices > 1 and device_serial is None:
logging.error(
'DeviceError: More than one device detected. Please specify a target device\n'
'through either the --device option or $ANDROID_SERIAL, and try again.')
print_device_list()
exit()
if device_serial is not None and device_serial not in result_dev_out:
logging.error('DeviceError: Device with serial {} not detected.'.format(device_serial))
if device_arg != '':
logging.error('Please update the --device input and try again.')
else:
logging.error('Please update $ANDROID_SERIAL and try again.')
print_device_list()
exit()
# Select device
if device_serial is not None:
logging.info('Device with serial {} selected.'.format(device_serial))
os.environ['ANDROID_SERIAL'] = device_serial
else:
logging.info('Default device ({}) selected.'.format(result_dev_out[0]))
def get_mode(args):
mode = ''
if args.vsync:
mode = 'vsync'
elif args.offscreen:
mode = 'offscreen'
return mode
def get_trace_width(mode):
width = 40
if mode == 'vsync':
width += 5
elif mode == 'offscreen':
width += 10
return width
def pull_screenshot(args, screenshot_device_dir, renderer):
# We don't know the name of the screenshots, since they could have a KeyFrame
# Rather than look that up and piece together a file name, we can pull the single screenshot in a generic fashion
files = run_adb_shell_command('ls -1 %s' % screenshot_device_dir).split('\n')
# There might not be a screenshot if the test was skipped
files = list(filter(None, (f.strip() for f in files))) # Remove empty strings and whitespace
# We should only look for png files as tmp dir might contain other files too
png_files = [f for f in files if f.lower().endswith('.png')]
if png_files:
assert len(png_files) == 1, 'Multiple PNG files(%s) in %s, expected 1: %s' % (
len(png_files), screenshot_device_dir, png_files)
# Grab the single screenshot
src_file = png_files[0]
# Rename the file to reflect renderer, since we force everything through the platform using "native"
dst_file = src_file.replace("native", renderer)
# Use CWD if no location provided
screenshot_dst = args.screenshot_dir if args.screenshot_dir != '' else '.'
logging.info('Pulling screenshot %s to %s' % (dst_file, screenshot_dst))
run_adb_command([
'pull',
posixpath.join(screenshot_device_dir, src_file),
posixpath.join(screenshot_dst, dst_file)
])
# This function changes to the target directory, then 'yield' passes execution to the inner part of
# the 'with' block that invoked it. The 'finally' block is executed at the end of the 'with' block,
# including when exceptions are raised.
@contextlib.contextmanager
def run_from_dir(dir):
# If not set, just run the command and return
if not dir:
yield
return
# Otherwise, change directories
cwd = os.getcwd()
os.chdir(dir)
try:
yield
finally:
os.chdir(cwd)
def run_trace(trace, args, screenshot_device_dir):
mode = get_mode(args)
# Kick off a subprocess that collects peak gpu memory periodically
# Note the 0.25 below is the delay (in seconds) between memory checks
if args.memory:
run_adb_command([
'push',
os.path.join(angle_path_util.ANGLE_ROOT_DIR, 'src', 'tests', 'restricted_traces',
'gpumem.sh'), '/data/local/tmp'
])
memory_command = 'sh /data/local/tmp/gpumem.sh 0.25 ' + _global.storage_dir
memory_process = run_async_adb_shell_command(memory_command)
flags = [
'--gtest_filter=TraceTest.' + trace, '--use-gl=native', '--verbose', '--verbose-logging'
]
if mode != '':
flags.append('--' + mode)
if args.maxsteps != '':
flags += ['--max-steps-performed', args.maxsteps]
if args.fixedtime != '':
flags += ['--fixed-test-time-with-warmup', args.fixedtime]
if args.minimizegpuwork:
flags.append('--minimize-gpu-work')
if screenshot_device_dir != None:
flags += ['--screenshot-dir', screenshot_device_dir]
if args.screenshot_frame != '':
flags += ['--screenshot-frame', args.screenshot_frame]
if args.fps_limit != '':
flags += ['--fps-limit', args.fps_limit]
# Build a command that can be run directly over ADB, for example:
r'''
adb shell am instrument -w \
-e org.chromium.native_test.NativeTestInstrumentationTestRunner.StdoutFile /data/user/0/com.android.angle.test/files/out.txt \
-e org.chromium.native_test.NativeTest.CommandLineFlags \
"--gtest_filter=TraceTest.empires_and_puzzles\ --use-angle=vulkan\ --screenshot-dir\ /data/user/0/com.android.angle.test/files\ --screenshot-frame\ 2\ --max-steps-performed\ 2\ --no-warmup" \
-e org.chromium.native_test.NativeTestInstrumentationTestRunner.ShardNanoTimeout "1000000000000000000" \
-e org.chromium.native_test.NativeTestInstrumentationTestRunner.NativeTestActivity com.android.angle.test.AngleUnitTestActivity \
com.android.angle.test/org.chromium.build.gtest_apk.NativeTestInstrumentationTestRunner
'''
shell_command = r'''
am instrument -w \
-e org.chromium.native_test.NativeTestInstrumentationTestRunner.StdoutFile {storage}/out.txt \
-e org.chromium.native_test.NativeTest.CommandLineFlags "{flags}" \
-e org.chromium.native_test.NativeTestInstrumentationTestRunner.ShardNanoTimeout "1000000000000000000" \
-e org.chromium.native_test.NativeTestInstrumentationTestRunner.NativeTestActivity \
com.android.angle.test.AngleUnitTestActivity \
com.android.angle.test/org.chromium.build.gtest_apk.NativeTestInstrumentationTestRunner
'''.format(
flags=r' '.join(flags),
storage=_global.storage_dir).strip() # Note: space escaped due to subprocess shell=True
start_time = time.time()
result = run_adb_shell_command(shell_command)
time_elapsed = time.time() - start_time
if args.memory:
logging.debug('Killing gpumem subprocess')
memory_process.kill()
return time_elapsed
def get_test_time():
# Pull the results from the device and parse
result = run_adb_shell_command_with_run_as('cat ' + _global.storage_dir +
'/out.txt | grep -v Error | grep -v Frame')
measured_time = None
for line in result.splitlines():
logging.debug('Checking line: %s' % line)
# Look for this line and grab the second to last entry:
# Mean result time: 1.2793 ms
if "Mean result time" in line:
measured_time = line.split()[-2]
break
# Check for skipped tests
if "Test skipped due to missing extension" in line:
missing_ext = line.split()[-1]
logging.debug('Skipping test due to missing extension: %s' % missing_ext)
measured_time = missing_ext
break
if measured_time is None:
if '[ PASSED ]' in result:
measured_time = 'missing'
else:
measured_time = 'crashed'
return measured_time
def get_gpu_memory(trace_duration):
# Pull the results from the device and parse
result = run_adb_shell_command_with_run_as('cat ' + _global.storage_dir +
'/gpumem.txt | awk "NF"')
# The gpumem script grabs snapshots of memory per process
# Output looks like this, repeated once per sleep_duration of the test:
#
# time_elapsed: 9
# com.android.angle.test:test_process 16513
# Memory snapshot for GPU 0:
# Global total: 516833280
# Proc 504 total: 170385408
# Proc 1708 total: 33767424
# Proc 2011 total: 17018880
# Proc 16513 total: 348479488
# Proc 27286 total: 20877312
# Proc 27398 total: 1028096
# Gather the memory at each snapshot
time_elapsed = ''
test_process = ''
gpu_mem = []
gpu_mem_sustained = []
for line in result.splitlines():
logging.debug('Checking line: %s' % line)
if "time_elapsed" in line:
time_elapsed = line.split()[-1]
logging.debug('time_elapsed: %s' % time_elapsed)
continue
# Look for this line and grab the last entry:
# com.android.angle.test:test_process 31933
if "com.android.angle.test" in line:
test_process = line.split()[-1]
logging.debug('test_process: %s' % test_process)
continue
# If we don't know test process yet, break
if test_process == '':
continue
# If we made it this far, we have the process id
# Look for this line and grab the last entry:
# Proc 31933 total: 235184128
if test_process in line:
gpu_mem_entry = line.split()[-1]
logging.debug('Adding: %s to gpu_mem' % gpu_mem_entry)
gpu_mem.append(int(gpu_mem_entry))
# logging.debug('gpu_mem contains: %i' % ' '.join(gpu_mem))
if safe_cast_float(time_elapsed) >= (safe_cast_float(trace_duration) / 2):
# Start tracking sustained memory usage at the half way point
logging.debug('Adding: %s to gpu_mem_sustained' % gpu_mem_entry)
gpu_mem_sustained.append(int(gpu_mem_entry))
continue
gpu_mem_max = 0
if len(gpu_mem) != 0:
gpu_mem_max = max(gpu_mem)
gpu_mem_average = 0
if len(gpu_mem_sustained) != 0:
gpu_mem_average = statistics.mean(gpu_mem_sustained)
return gpu_mem_average, gpu_mem_max
def get_proc_memory():
# Pull the results from the device and parse
result = run_adb_shell_command_with_run_as('cat ' + _global.storage_dir + '/out.txt')
memory_median = ''
memory_max = ''
for line in result.splitlines():
# Look for "memory_max" in the line and grab the second to last entry:
logging.debug('Checking line: %s' % line)
if "memory_median" in line:
memory_median = line.split()[-2]
continue
if "memory_max" in line:
memory_max = line.split()[-2]
continue
return safe_cast_int(memory_max), safe_cast_int(memory_median)
def get_gpu_time():
# Pull the results from the device and parse
result = run_adb_shell_command_with_run_as('cat ' + _global.storage_dir + '/out.txt')
gpu_time = '0'
for line in result.splitlines():
# Look for "gpu_time" in the line and grab the second to last entry:
logging.debug('Checking line: %s' % line)
if "gpu_time" in line:
gpu_time = line.split()[-2]
break
return gpu_time
def get_cpu_time():
# Pull the results from the device and parse
result = run_adb_shell_command_with_run_as('cat ' + _global.storage_dir + '/out.txt')
cpu_time = '0'
for line in result.splitlines():
# Look for "cpu_time" in the line and grab the second to last entry:
logging.debug('Checking line: %s' % line)
if "cpu_time" in line:
cpu_time = line.split()[-2]
break
return cpu_time
def get_frame_count():
# Pull the results from the device and parse
result = run_adb_shell_command_with_run_as('cat ' + _global.storage_dir +
'/out.txt | grep -v Error | grep -v Frame')
frame_count = 0
for line in result.splitlines():
logging.debug('Checking line: %s' % line)
if "trial_steps" in line:
frame_count = line.split()[-2]
break
logging.debug('Frame count: %s' % frame_count)
return frame_count
class GPUPowerStats():
# GPU power measured in uWs
def __init__(self):
self.power = {'gpu': 0, 'big_cpu': 0, 'mid_cpu': 0, 'little_cpu': 0}
def gpu_delta(self, starting):
return self.power['gpu'] - starting.power['gpu']
def cpu_delta(self, starting):
big = self.power['big_cpu'] - starting.power['big_cpu']
mid = self.power['mid_cpu'] - starting.power['mid_cpu']
little = self.power['little_cpu'] - starting.power['little_cpu']
return big + mid + little
def get_power_data(self):
energy_value_result = run_adb_shell_command(
'cat /sys/bus/iio/devices/iio:device*/energy_value')
# Output like this (ordering doesn't matter)
#
# t=251741617
# CH0(T=251741617)[VSYS_PWR_WLAN_BT], 192612469095
# CH1(T=251741617)[L2S_VDD_AOC_RET], 1393792850
# CH2(T=251741617)[S9S_VDD_AOC], 16816975638
# CH3(T=251741617)[S5S_VDDQ_MEM], 2720913855
# CH4(T=251741617)[S10S_VDD2L], 3656592412
# CH5(T=251741617)[S4S_VDD2H_MEM], 4597271837
# CH6(T=251741617)[S2S_VDD_G3D], 3702041607
# CH7(T=251741617)[L9S_GNSS_CORE], 88535064
# t=16086645
# CH0(T=16086645)[PPVAR_VSYS_PWR_DISP], 611687448
# CH1(T=16086645)[VSYS_PWR_MODEM], 179646995
# CH2(T=16086645)[VSYS_PWR_RFFE], 0
# CH3(T=16086645)[S2M_VDD_CPUCL2], 124265856
# CH4(T=16086645)[S3M_VDD_CPUCL1], 170096352
# CH5(T=16086645)[S4M_VDD_CPUCL0], 289995530
# CH6(T=16086645)[S5M_VDD_INT], 190164699
# CH7(T=16086645)[S1M_VDD_MIF], 196512891
id_map = {
r'S2S_VDD_G3D\b|S2S_VDD_GPU\b': 'gpu',
r'S\d+M_VDD_CPUCL2\b|S2M_VDD_CPU2\b': 'big_cpu',
r'S\d+M_VDD_CPUCL1\b|S3M_VDD_CPU1\b': 'mid_cpu',
r'S\d+M_VDD_CPUCL0\b|S4M_VDD_CPU\b': 'little_cpu',
}
for m in id_map.values():
self.power[m] = 0 # Set to 0 to check for missing values and dupes below
for line in energy_value_result.splitlines():
for mid, m in id_map.items():
if re.search(mid, line):
value = int(line.split()[1])
logging.debug('Power metric %s (%s): %d', mid, m, value)
assert self.power[m] == 0, 'Duplicate power metric: %s (%s)' % (mid, m)
self.power[m] = value
for mid, m in id_map.items():
assert self.power[m] != 0, 'Power metric not found: %s (%s)' % (mid, m)
def wait_for_test_warmup(done_event):
p = subprocess.Popen(['adb', 'logcat', '*:S', 'ANGLE:I'],
stdout=subprocess.PIPE,
text=True,
bufsize=1) # line-buffered
os.set_blocking(p.stdout.fileno(), False)
start_time = time.time()
while True:
line = p.stdout.readline() # non-blocking as per set_blocking above
# Look for text logged by the harness when warmup is complete and a test is starting
if 'running test name' in line:
p.kill()
break
if done_event.is_set():
logging.warning('Test finished without logging to logcat')
p.kill()
break
time.sleep(0.05)
p.poll()
if p.returncode != None:
logging.warning('Logcat terminated unexpectedly')
return
def collect_power(done_event, test_fixedtime, results):
# Starting point is post test warmup as there are spikes during warmup
wait_for_test_warmup(done_event)
starting_power = GPUPowerStats()
starting_power.get_power_data()
logging.debug('Starting power: %s' % starting_power.power)
duration = test_fixedtime - 1.0 # Avoid measuring through test termination
start_time = time.time()
while time.time() - start_time < duration:
if done_event.is_set():
logging.warning('Test finished earlier than expected by collect_power')
break
time.sleep(0.05)
ending_power = GPUPowerStats()
ending_power.get_power_data()
dt = time.time() - start_time
logging.debug('Ending power: %s' % ending_power.power)
results.update({
# 1e6 for uW -> W
'cpu': ending_power.cpu_delta(starting_power) / dt / 1e6,
'gpu': ending_power.gpu_delta(starting_power) / dt / 1e6,
})
def get_thermal_info():
out = run_adb_shell_command('dumpsys android.hardware.thermal.IThermal/default')
result = []
for line in out.splitlines():
logging.debug('Checking line in get_thermal_info: %a', line)
if 'ThrottlingStatus:' in line:
name = re.search('Name: ([^ ]*)', line).group(1)
if ('VIRTUAL-SKIN' in name and
'-CHARGE-' not in name and # only supposed to affect charging speed
'MODEL' not in name.split('-')): # different units and not used for throttling
result.append(line)
if not result:
logging.error('Unexpected dumpsys IThermal response:\n%s', out)
raise RuntimeError('Unexpected dumpsys IThermal response, logged above')
return result
def set_vendor_thermal_control(disabled=None):
if disabled:
# When disabling, first wait for vendor throttling to end to reset all state
waiting = True
while waiting:
waiting = False
for line in get_thermal_info():
if 'ThrottlingStatus: NONE' not in line:
logging.info('Waiting for vendor throttling to finish: %s', line.strip())
time.sleep(10)
waiting = True
break
run_adb_shell_command('setprop persist.vendor.disable.thermal.control %d' % disabled)
def sleep_until_temps_below(limit_temp):
waiting = True
while waiting:
waiting = False
for line in get_thermal_info():
v = float(re.search('CurrentValue: ([^ ]*)', line).group(1))
if v > limit_temp:
logging.info('Waiting for device temps below %.1f: %s', limit_temp, line.strip())
time.sleep(5)
waiting = True
break
def sleep_until_temps_below_thermalservice(limit_temp):
waiting = True
while waiting:
waiting = False
lines = run_adb_shell_command('dumpsys thermalservice').splitlines()
assert 'HAL Ready: true' in lines
for l in lines[lines.index('Current temperatures from HAL:') + 1:]:
if 'Temperature{' not in l:
break
v = re.search(r'mValue=([^,}]+)', l).group(1)
# Note: on some Pixel devices odd component temps are also reported here
# but some other key ones are not (e.g. CPU ODPM controlling cpu freqs)
if float(v) > limit_temp:
logging.info('Waiting for device temps below %.1f: %s', limit_temp, l.strip())
time.sleep(5)
waiting = True
break
def sleep_until_battery_level(min_battery_level):
while True:
level = int(run_adb_shell_command('dumpsys battery get level').strip())
if level >= min_battery_level:
break
logging.info('Waiting for device battery level to reach %d. Current level: %d',
min_battery_level, level)
time.sleep(10)
def drop_high_low_and_average(values):
if len(values) >= 3:
values.remove(min(values))
values.remove(max(values))
average = statistics.mean(values)
variance = 0
if len(values) >= 2 and average != 0:
variance = statistics.stdev(values) / average
print(average, variance)
return float(average), float(variance)
def get_angle_version():
angle_version = android_helper._Run('git rev-parse HEAD'.split(' ')).decode().strip()
origin_main_version = android_helper._Run(
'git rev-parse origin/main'.split(' ')).decode().strip()
if origin_main_version != angle_version:
angle_version += ' (origin/main %s)' % origin_main_version
return angle_version
def safe_divide(x, y):
if y == 0:
return 0
return x / y
def safe_cast_float(x):
if x == '':
return 0
return float(x)
def safe_cast_int(x):
if x == '':
return 0
return int(x)
def percent(x):
return "%.2f%%" % (x * 100)
def main():
parser = argparse.ArgumentParser()
parser.add_argument('-f', '--filter', help='Trace filter. Defaults to all.', default='*')
parser.add_argument('-l', '--log', help='Logging level.', default=DEFAULT_LOG_LEVEL)
parser.add_argument(
'--renderer',
help='Which renderer to use: native, vulkan (via ANGLE), or default (' +
'GLES driver selected by system). Providing no option will run twice, native and vulkan',
default='both')
parser.add_argument(
'--walltimeonly',
help='Limit output to just wall time',
action='store_true',
default=False)
parser.add_argument(
'--power', help='Include CPU/GPU power used per trace', action='store_true', default=False)
parser.add_argument(
'--memory',
help='Include CPU/GPU memory used per trace',
action='store_true',
default=False)
parser.add_argument('--maxsteps', help='Run for fixed set of frames', default='')
parser.add_argument('--fixedtime', help='Run for fixed set of time', default='')
parser.add_argument(
'--minimizegpuwork',
help='Whether to run with minimized GPU work',
action='store_true',
default=False)
parser.add_argument('--output-tag', help='Tag for output files.', required=True)
parser.add_argument('--angle-version', help='Specify ANGLE version string.', default='')
parser.add_argument(
'--loop-count', help='How many times to loop through the traces', default=5)
parser.add_argument(
'--device', help='Which device to run the tests on (use serial)', default='')
parser.add_argument(
'--sleep', help='Add a sleep of this many seconds between each test)', type=int, default=0)
parser.add_argument(
'--custom-throttling-temp',
help='Custom thermal throttling with limit set to this temperature (off by default)',
type=float)
parser.add_argument(
'--custom-throttling-thermalservice-temp',
help='Custom thermal throttling (thermalservice) with limit set to this temperature (off by default)',
type=float)
parser.add_argument(
'--min-battery-level',
help='Sleep between tests if battery level drops below this value (off by default)',
type=int)
parser.add_argument(
'--angle-package',
help='Where to load ANGLE libraries from. This will load from the test APK by default, ' +
'but you can point to any APK that contains ANGLE. Specify \'system\' to use libraries ' +
'already on the device',
default=DEFAULT_ANGLE_PACKAGE)
parser.add_argument(
'--build-dir',
help='Where to find the APK on the host, i.e. out/Android. If unset, it is assumed you ' +
'are running from the build dir already, or are using the wrapper script ' +
'out/<config>/restricted_trace_perf.',
default='')
parser.add_argument(
'--screenshot-dir',
help='Host (local) directory to store screenshots of keyframes, which is frame 1 unless ' +
'the trace JSON file contains \'KeyFrames\'.',
default='')
parser.add_argument(
'--screenshot-frame',
help='Specify a specific frame to screenshot. Uses --screenshot-dir if provied.',
default='')
parser.add_argument(
'--fps-limit', help='Limit replay framerate to specified value', default='')
group = parser.add_mutually_exclusive_group()
group.add_argument(
'--vsync',
help='Whether to run the trace in vsync mode',
action='store_true',
default=False)
group.add_argument(
'--offscreen',
help='Whether to run the trace in offscreen mode',
action='store_true',
default=False)
args = parser.parse_args()
angle_test_util.SetupLogging(args.log.upper())
with run_from_dir(args.build_dir):
android_helper.Initialize("angle_trace_tests") # includes adb root
# Determine some starting parameters
init()
try:
if args.custom_throttling_temp:
set_vendor_thermal_control(disabled=1)
run_traces(args)
finally:
if args.custom_throttling_temp:
set_vendor_thermal_control(disabled=0)
# Clean up settings, including in case of exceptions (including Ctrl-C)
run_adb_shell_command('settings delete global angle_debug_package')
run_adb_shell_command('settings delete global angle_gl_driver_selection_pkgs')
run_adb_shell_command('settings delete global angle_gl_driver_selection_values')
return 0
def logged_args():
parser = argparse.ArgumentParser()
parser.add_argument('--output-tag')
_, extra_args = parser.parse_known_args()
return ' '.join(extra_args)
def run_traces(args):
# Load trace names
test_json = os.path.join(args.build_dir, 'gen/trace_list.json')
with open(os.path.join(DEFAULT_TEST_DIR, test_json)) as f:
traces = json.loads(f.read())
failures = []
mode = get_mode(args)
trace_width = get_trace_width(mode)
# Select the target device
select_device(args.device)
# Add an underscore to the mode for use in loop below
if mode != '':
mode = mode + '_'
# Create output CSV
raw_data_filename = "raw_data." + args.output_tag + ".csv"
output_file = open(raw_data_filename, 'w', newline='')
output_writer = csv.writer(output_file)
# Set some widths that allow easily reading the values, but fit on smaller monitors.
column_width = {
'trace': trace_width,
'wall_time': 15,
'gpu_time': 15,
'cpu_time': 15,
'gpu_power': 10,
'cpu_power': 10,
'gpu_mem_sustained': 20,
'gpu_mem_peak': 15,
'proc_mem_median': 20,
'proc_mem_peak': 15
}
if args.walltimeonly:
print('%-*s' % (trace_width, 'wall_time_per_frame'))
else:
print('%-*s %-*s %-*s %-*s %-*s %-*s %-*s %-*s %-*s %-*s' %
(column_width['trace'], 'trace', column_width['wall_time'], 'wall_time',
column_width['gpu_time'], 'gpu_time', column_width['cpu_time'], 'cpu_time',
column_width['gpu_power'], 'gpu_power', column_width['cpu_power'], 'cpu_power',
column_width['gpu_mem_sustained'], 'gpu_mem_sustained',
column_width['gpu_mem_peak'], 'gpu_mem_peak', column_width['proc_mem_median'],
'proc_mem_median', column_width['proc_mem_peak'], 'proc_mem_peak'))
output_writer.writerow([
'trace', 'wall_time(ms)', 'gpu_time(ms)', 'cpu_time(ms)', 'gpu_power(W)',
'cpu_power(W)', 'gpu_mem_sustained', 'gpu_mem_peak', 'proc_mem_median', 'proc_mem_peak'
])
if args.power:
starting_power = GPUPowerStats()
ending_power = GPUPowerStats()
renderers = []
if args.renderer != "both":
renderers.append(args.renderer)
else:
renderers = ("native", "vulkan")
wall_times = defaultdict(dict)
gpu_times = defaultdict(dict)
cpu_times = defaultdict(dict)
gpu_powers = defaultdict(dict)
cpu_powers = defaultdict(dict)
gpu_mem_sustaineds = defaultdict(dict)
gpu_mem_peaks = defaultdict(dict)
proc_mem_medians = defaultdict(dict)
proc_mem_peaks = defaultdict(dict)
# Organize the data for writing out
rows = defaultdict(dict)
def populate_row(rows, name, results):
if len(rows[name]) == 0:
rows[name] = defaultdict(list)
for renderer, wtimes in results.items():
average, variance = drop_high_low_and_average(wtimes)
rows[name][renderer].append(average)
rows[name][renderer].append(variance)
# Generate the SUMMARY output
summary_file = open("summary." + args.output_tag + ".csv", 'w', newline='')
summary_writer = csv.writer(summary_file)
android_version = run_adb_shell_command('getprop ro.build.fingerprint').strip()
angle_version = args.angle_version or get_angle_version()
# test_time = run_command('date \"+%Y%m%d\"').stdout.read().strip()
summary_writer.writerow([
"\"Android: " + android_version + "\n" + "ANGLE: " + angle_version + "\n" +
# "Date: " + test_time + "\n" +
"Source: " + raw_data_filename + "\n" + "Args: " + logged_args() + "\""
])
trace_number = 0
if (len(renderers) == 1) and (renderers[0] != "both"):
renderer_name = renderers[0]
summary_writer.writerow([
"#", "\"Trace\"", f"\"{renderer_name}\nwall\ntime\nper\nframe\n(ms)\"",
f"\"{renderer_name}\nwall\ntime\nvariance\"",
f"\"{renderer_name}\nGPU\ntime\nper\nframe\n(ms)\"",
f"\"{renderer_name}\nGPU\ntime\nvariance\"",
f"\"{renderer_name}\nCPU\ntime\nper\nframe\n(ms)\"",
f"\"{renderer_name}\nCPU\ntime\nvariance\"", f"\"{renderer_name}\nGPU\npower\n(W)\"",
f"\"{renderer_name}\nGPU\npower\nvariance\"", f"\"{renderer_name}\nCPU\npower\n(W)\"",
f"\"{renderer_name}\nCPU\npower\nvariance\"", f"\"{renderer_name}\nGPU\nmem\n(B)\"",
f"\"{renderer_name}\nGPU\nmem\nvariance\"",
f"\"{renderer_name}\npeak\nGPU\nmem\n(B)\"",
f"\"{renderer_name}\npeak\nGPU\nmem\nvariance\"",
f"\"{renderer_name}\nprocess\nmem\n(B)\"",
f"\"{renderer_name}\nprocess\nmem\nvariance\"",
f"\"{renderer_name}\npeak\nprocess\nmem\n(B)\"",
f"\"{renderer_name}\npeak\nprocess\nmem\nvariance\""
])
else:
summary_writer.writerow([
"#", "\"Trace\"", "\"Native\nwall\ntime\nper\nframe\n(ms)\"",
"\"Native\nwall\ntime\nvariance\"", "\"ANGLE\nwall\ntime\nper\nframe\n(ms)\"",
"\"ANGLE\nwall\ntime\nvariance\"", "\"wall\ntime\ncompare\"",
"\"Native\nGPU\ntime\nper\nframe\n(ms)\"", "\"Native\nGPU\ntime\nvariance\"",
"\"ANGLE\nGPU\ntime\nper\nframe\n(ms)\"", "\"ANGLE\nGPU\ntime\nvariance\"",
"\"GPU\ntime\ncompare\"", "\"Native\nCPU\ntime\nper\nframe\n(ms)\"",
"\"Native\nCPU\ntime\nvariance\"", "\"ANGLE\nCPU\ntime\nper\nframe\n(ms)\"",
"\"ANGLE\nCPU\ntime\nvariance\"", "\"CPU\ntime\ncompare\"",
"\"Native\nGPU\npower\n(W)\"", "\"Native\nGPU\npower\nvariance\"",
"\"ANGLE\nGPU\npower\n(W)\"", "\"ANGLE\nGPU\npower\nvariance\"",
"\"GPU\npower\ncompare\"", "\"Native\nCPU\npower\n(W)\"",
"\"Native\nCPU\npower\nvariance\"", "\"ANGLE\nCPU\npower\n(W)\"",
"\"ANGLE\nCPU\npower\nvariance\"", "\"CPU\npower\ncompare\"",
"\"Native\nGPU\nmem\n(B)\"", "\"Native\nGPU\nmem\nvariance\"",
"\"ANGLE\nGPU\nmem\n(B)\"", "\"ANGLE\nGPU\nmem\nvariance\"", "\"GPU\nmem\ncompare\"",
"\"Native\npeak\nGPU\nmem\n(B)\"", "\"Native\npeak\nGPU\nmem\nvariance\"",
"\"ANGLE\npeak\nGPU\nmem\n(B)\"", "\"ANGLE\npeak\nGPU\nmem\nvariance\"",
"\"GPU\npeak\nmem\ncompare\"", "\"Native\nprocess\nmem\n(B)\"",
"\"Native\nprocess\nmem\nvariance\"", "\"ANGLE\nprocess\nmem\n(B)\"",
"\"ANGLE\nprocess\nmem\nvariance\"", "\"process\nmem\ncompare\"",
"\"Native\npeak\nprocess\nmem\n(B)\"", "\"Native\npeak\nprocess\nmem\nvariance\"",
"\"ANGLE\npeak\nprocess\nmem\n(B)\"", "\"ANGLE\npeak\nprocess\nmem\nvariance\"",
"\"process\npeak\nmem\ncompare\""
])
with run_from_dir(args.build_dir):
android_helper.PrepareTestSuite("angle_trace_tests")
for trace in fnmatch.filter(traces, args.filter):
print(
"\nStarting run for %s loopcount %i with %s at %s\n" %
(trace, int(args.loop_count), renderers, datetime.now().strftime('%Y-%m-%d %H:%M:%S')))
with run_from_dir(args.build_dir):
android_helper.PrepareRestrictedTraces([trace])
# Start with clean data containers for each trace
rows.clear()
wall_times.clear()
gpu_times.clear()
cpu_times.clear()
gpu_powers.clear()
cpu_powers.clear()
gpu_mem_sustaineds.clear()
gpu_mem_peaks.clear()
proc_mem_medians.clear()
proc_mem_peaks.clear()
for i in range(int(args.loop_count)):
for renderer in renderers:
if renderer == "native":
# Force the settings to native
run_adb_shell_command(
'settings put global angle_gl_driver_selection_pkgs com.android.angle.test'
)
run_adb_shell_command(
'settings put global angle_gl_driver_selection_values native')
elif renderer == "vulkan":
# Force the settings to ANGLE
run_adb_shell_command(
'settings put global angle_gl_driver_selection_pkgs com.android.angle.test'
)
run_adb_shell_command(
'settings put global angle_gl_driver_selection_values angle')
elif renderer == "default":
logging.info(
'Deleting Android settings for forcing selection of GLES driver, ' +
'allowing system to load the default')
run_adb_shell_command('settings delete global angle_debug_package')
run_adb_shell_command('settings delete global angle_gl_driver_all_angle')
run_adb_shell_command('settings delete global angle_gl_driver_selection_pkgs')
run_adb_shell_command(
'settings delete global angle_gl_driver_selection_values')
else:
logging.error('Unsupported renderer {}'.format(renderer))
exit()
if args.angle_package == 'system':
# Clear the debug package so ANGLE will be loaded from /system/lib64
run_adb_shell_command('settings delete global angle_debug_package')
else:
# Otherwise, load ANGLE from the specified APK
run_adb_shell_command('settings put global angle_debug_package ' +
args.angle_package)
# Remove any previous perf results
cleanup()
# Clear blob cache to avoid post-warmup cache eviction b/298028816
clear_blob_cache()
test = trace.split(' ')[0]
if args.power:
assert args.fixedtime, '--power requires --fixedtime'
done_event = threading.Event()
run_adb_command(['logcat', '-c']) # needed for wait_for_test_warmup
power_results = {} # output arg
power_thread = threading.Thread(
target=collect_power,
args=(done_event, float(args.fixedtime), power_results))
power_thread.daemon = True
power_thread.start()
# We scope the run_trace call so we can use a temp dir for screenshots that gets deleted
with contextlib.ExitStack() as stack:
screenshot_device_dir = None
if args.screenshot_dir != '' or args.screenshot_frame != '':
temp_dir = stack.enter_context(android_helper._TempDeviceDir())
screenshot_device_dir = temp_dir
logging.debug('Running %s' % test)
test_time = run_trace(test, args, screenshot_device_dir)
if screenshot_device_dir:
pull_screenshot(args, screenshot_device_dir, renderer)
gpu_power, cpu_power = 0, 0
if args.power:
done_event.set()
power_thread.join(timeout=2)
if power_thread.is_alive():
logging.warning('collect_power thread did not terminate')
else:
gpu_power = power_results['gpu']
cpu_power = power_results['cpu']
wall_time = get_test_time()
gpu_time = get_gpu_time() if args.vsync else '0'
cpu_time = get_cpu_time()
gpu_mem_sustained, gpu_mem_peak = 0, 0
proc_mem_peak, proc_mem_median = 0, 0
if args.memory:
gpu_mem_sustained, gpu_mem_peak = get_gpu_memory(test_time)
logging.debug(
'%s = %i, %s = %i' %
('gpu_mem_sustained', gpu_mem_sustained, 'gpu_mem_peak', gpu_mem_peak))
proc_mem_peak, proc_mem_median = get_proc_memory()
trace_name = mode + renderer + '_' + test
if len(wall_times[test]) == 0:
wall_times[test] = defaultdict(list)
try:
wt = safe_cast_float(wall_time)
except ValueError: # e.g. 'crashed'
wt = -1
wall_times[test][renderer].append(wt)
if len(gpu_times[test]) == 0:
gpu_times[test] = defaultdict(list)
gpu_times[test][renderer].append(safe_cast_float(gpu_time))
if len(cpu_times[test]) == 0:
cpu_times[test] = defaultdict(list)
cpu_times[test][renderer].append(safe_cast_float(cpu_time))
if len(gpu_powers[test]) == 0:
gpu_powers[test] = defaultdict(list)
gpu_powers[test][renderer].append(safe_cast_float(gpu_power))
if len(cpu_powers[test]) == 0:
cpu_powers[test] = defaultdict(list)
cpu_powers[test][renderer].append(safe_cast_float(cpu_power))
if len(gpu_mem_sustaineds[test]) == 0:
gpu_mem_sustaineds[test] = defaultdict(list)
gpu_mem_sustaineds[test][renderer].append(safe_cast_int(gpu_mem_sustained))
if len(gpu_mem_peaks[test]) == 0:
gpu_mem_peaks[test] = defaultdict(list)
gpu_mem_peaks[test][renderer].append(safe_cast_int(gpu_mem_peak))
if len(proc_mem_medians[test]) == 0:
proc_mem_medians[test] = defaultdict(list)
proc_mem_medians[test][renderer].append(safe_cast_int(proc_mem_median))
if len(proc_mem_peaks[test]) == 0:
proc_mem_peaks[test] = defaultdict(list)
proc_mem_peaks[test][renderer].append(safe_cast_int(proc_mem_peak))
if args.walltimeonly:
print('%-*s' % (trace_width, wall_time))
else:
print(
'%-*s %-*s %-*s %-*s %-*s %-*s %-*i %-*i %-*i %-*i' %
(column_width['trace'], trace_name, column_width['wall_time'], wall_time,
column_width['gpu_time'], gpu_time, column_width['cpu_time'], cpu_time,
column_width['gpu_power'], '%.3f' % gpu_power, column_width['cpu_power'],
'%.3f' % cpu_power, column_width['gpu_mem_sustained'], gpu_mem_sustained,
column_width['gpu_mem_peak'], gpu_mem_peak,
column_width['proc_mem_median'], proc_mem_median,
column_width['proc_mem_peak'], proc_mem_peak))
output_writer.writerow([
mode + renderer + '_' + test, wall_time, gpu_time, cpu_time, gpu_power,
cpu_power, gpu_mem_sustained, gpu_mem_peak, proc_mem_median, proc_mem_peak
])
# Early exit for testing
#exit()
# Depending on workload, sleeps might be needed to dissipate heat or recharge battery
if args.sleep != 0:
time.sleep(args.sleep)
if args.custom_throttling_temp:
sleep_until_temps_below(args.custom_throttling_temp)
if args.custom_throttling_thermalservice_temp:
sleep_until_temps_below_thermalservice(
args.custom_throttling_thermalservice_temp)
if args.min_battery_level:
sleep_until_battery_level(args.min_battery_level)
print() # New line for readability
for name, results in wall_times.items():
populate_row(rows, name, results)
for name, results in gpu_times.items():
populate_row(rows, name, results)
for name, results in cpu_times.items():
populate_row(rows, name, results)
for name, results in gpu_powers.items():
populate_row(rows, name, results)
for name, results in cpu_powers.items():
populate_row(rows, name, results)
for name, results in gpu_mem_sustaineds.items():
populate_row(rows, name, results)
for name, results in gpu_mem_peaks.items():
populate_row(rows, name, results)
for name, results in proc_mem_medians.items():
populate_row(rows, name, results)
for name, results in proc_mem_peaks.items():
populate_row(rows, name, results)
if (len(renderers) == 1) and (renderers[0] != "both"):
renderer_name = renderers[0]
for name, data in rows.items():
trace_number += 1
summary_writer.writerow([
trace_number,
name,
# wall_time
"%.3f" % data[renderer_name][0],
percent(data[renderer_name][1]),
# GPU time
"%.3f" % data[renderer_name][2],
percent(data[renderer_name][3]),
# CPU time
"%.3f" % data[renderer_name][4],
percent(data[renderer_name][5]),
# GPU power
"%.3f" % data[renderer_name][6],
percent(data[renderer_name][7]),
# CPU power
"%.3f" % data[renderer_name][8],
percent(data[renderer_name][9]),
# GPU mem
int(data[renderer_name][10]),
percent(data[renderer_name][11]),
# GPU peak mem
int(data[renderer_name][12]),
percent(data[renderer_name][13]),
# process mem
int(data[renderer_name][14]),
percent(data[renderer_name][15]),
# process peak mem
int(data[renderer_name][16]),
percent(data[renderer_name][17]),
])
else:
for name, data in rows.items():
trace_number += 1
summary_writer.writerow([
trace_number,
name,
# wall_time
"%.3f" % data["native"][0],
percent(data["native"][1]),
"%.3f" % data["vulkan"][0],
percent(data["vulkan"][1]),
percent(safe_divide(data["native"][0], data["vulkan"][0])),
# GPU time
"%.3f" % data["native"][2],
percent(data["native"][3]),
"%.3f" % data["vulkan"][2],
percent(data["vulkan"][3]),
percent(safe_divide(data["native"][2], data["vulkan"][2])),
# CPU time
"%.3f" % data["native"][4],
percent(data["native"][5]),
"%.3f" % data["vulkan"][4],
percent(data["vulkan"][5]),
percent(safe_divide(data["native"][4], data["vulkan"][4])),
# GPU power
"%.3f" % data["native"][6],
percent(data["native"][7]),
"%.3f" % data["vulkan"][6],
percent(data["vulkan"][7]),
percent(safe_divide(data["native"][6], data["vulkan"][6])),
# CPU power
"%.3f" % data["native"][8],
percent(data["native"][9]),
"%.3f" % data["vulkan"][8],
percent(data["vulkan"][9]),
percent(safe_divide(data["native"][8], data["vulkan"][8])),
# GPU mem
int(data["native"][10]),
percent(data["native"][11]),
int(data["vulkan"][10]),
percent(data["vulkan"][11]),
percent(safe_divide(data["native"][10], data["vulkan"][10])),
# GPU peak mem
int(data["native"][12]),
percent(data["native"][13]),
int(data["vulkan"][12]),
percent(data["vulkan"][13]),
percent(safe_divide(data["native"][12], data["vulkan"][12])),
# process mem
int(data["native"][14]),
percent(data["native"][15]),
int(data["vulkan"][14]),
percent(data["vulkan"][15]),
percent(safe_divide(data["native"][14], data["vulkan"][14])),
# process peak mem
int(data["native"][16]),
percent(data["native"][17]),
int(data["vulkan"][16]),
percent(data["vulkan"][17]),
percent(safe_divide(data["native"][16], data["vulkan"][16]))
])
if __name__ == '__main__':
sys.exit(main())