diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2024-09-20 17:12:00 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2024-09-20 17:12:00 -0400 |
commit | 4fc8f2ed98b5ea80f763e1b6910b7bc3843ee7e2 (patch) | |
tree | 80e48593360b5be79bb9468f40b35d60381a7971 | |
parent | ae6cfdb6ab041117f66b4a94a31a291b1f472150 (diff) |
Reverse the sort order for profile_cmp.py
to put the biggest performance hits at the top of the list.
-rw-r--r-- | scripts/perf/profile_cmp.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/perf/profile_cmp.py b/scripts/perf/profile_cmp.py index 9dbfa3145b..34281b8d01 100644 --- a/scripts/perf/profile_cmp.py +++ b/scripts/perf/profile_cmp.py @@ -60,8 +60,9 @@ def compare(baseline, test, epsilon=DEFAULT_EPSILON): if abs(delta) > epsilon: deltas.append((delta, shader, bthruput, tthruput)) - # descending order of performance gain - deltas.sort(reverse=True) + # ascending order of performance gain: put the most egregious performance + # hits at the top of the list + deltas.sort() print(f'{len(deltas)} shaders showed nontrivial performance differences ' '(millon samples/sec):') namelen = max(len(s[1]) for s in deltas) if deltas else 0 |