tests: add renderer performance infrastructure - #67
Open
tritao wants to merge 13 commits into
Open
Conversation
tritao
force-pushed
the
stack/render-performance-infrastructure
branch
from
August 20, 2026 21:59
64cd48c to
727b9d4
Compare
tritao
force-pushed
the
stack/render-performance-infrastructure
branch
from
August 20, 2026 22:13
727b9d4 to
4a77932
Compare
tritao
force-pushed
the
stack/render-performance-infrastructure
branch
2 times, most recently
from
August 20, 2026 22:36
466716b to
aaee94a
Compare
tritao
force-pushed
the
stack/render-performance-infrastructure
branch
from
August 20, 2026 22:49
aaee94a to
9774a6c
Compare
tritao
force-pushed
the
stack/render-performance-infrastructure
branch
from
August 20, 2026 23:00
9774a6c to
3bb01a6
Compare
tritao
force-pushed
the
stack/render-performance-infrastructure
branch
from
August 20, 2026 23:15
3bb01a6 to
3138601
Compare
tritao
force-pushed
the
stack/render-performance-infrastructure
branch
from
August 21, 2026 00:22
3138601 to
cdd09e3
Compare
tritao
force-pushed
the
stack/render-performance-infrastructure
branch
from
August 21, 2026 00:31
cdd09e3 to
88508e5
Compare
tritao
force-pushed
the
stack/render-performance-infrastructure
branch
from
August 21, 2026 01:03
88508e5 to
733afe5
Compare
tritao
force-pushed
the
stack/render-performance-infrastructure
branch
from
August 21, 2026 01:18
733afe5 to
592b596
Compare
tritao
force-pushed
the
stack/render-performance-infrastructure
branch
from
August 21, 2026 01:33
592b596 to
b487aa0
Compare
tritao
force-pushed
the
stack/render-performance-infrastructure
branch
from
August 21, 2026 02:08
b487aa0 to
9aed268
Compare
tritao
force-pushed
the
stack/render-performance-infrastructure
branch
from
August 21, 2026 09:29
9aed268 to
c70eb64
Compare
tritao
force-pushed
the
stack/render-performance-infrastructure
branch
from
August 21, 2026 09:34
c70eb64 to
a1e3d91
Compare
tritao
force-pushed
the
stack/render-performance-infrastructure
branch
2 times, most recently
from
August 23, 2026 01:44
7f64047 to
d1227ab
Compare
tritao
marked this pull request as ready for review
August 23, 2026 01:46
tritao
force-pushed
the
stack/render-performance-infrastructure
branch
2 times, most recently
from
August 23, 2026 03:19
c150c42 to
6e1f6da
Compare
tritao
force-pushed
the
stack/render-performance-infrastructure
branch
2 times, most recently
from
August 23, 2026 10:09
9d1b999 to
f8fd7ed
Compare
tritao
force-pushed
the
stack/render-performance-infrastructure
branch
2 times, most recently
from
August 23, 2026 12:38
16b78ae to
ff6f704
Compare
tritao
force-pushed
the
stack/render-performance-infrastructure
branch
from
August 23, 2026 13:14
ff6f704 to
b56c026
Compare
tritao
force-pushed
the
stack/render-performance-infrastructure
branch
from
August 23, 2026 21:21
b56c026 to
ae9de06
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Builds on #55.
Purpose
The retained and LegacyGL renderers need to be compared using the same scenes
and the same definitions of work. Correctness tests alone cannot show whether
time moved from traversal into planning, submission, GPU completion, picking,
or selection, while wall-clock thresholds on ordinary CI runners would be too
noisy to trust.
This PR adds shared, deterministic workload and measurement infrastructure.
It is the foundation used by the performance layers above it; it does not
optimize renderer behavior itself.
What changed
output.
workload is semantically supported by each.
submission, GPU completion, picking, and selection phases separately.
interactive viewer.
operations through Coin's GL glue.
How results should be used
Timing is informational and intended for controlled hardware comparisons.
Ordinary correctness CI compiles the tools and runs smoke coverage, but does
not fail a PR for small wall-clock changes. Deterministic work counters,
checksums, and parity assertions protect against empty or semantically
different fast paths.
Validation
benchmark tests; full platform coverage is exercised by the top stack PR.