Separate graph TIDs from backend UIDs in JSON repros - #383
Closed
hwanseoc wants to merge 12 commits into
Closed
Conversation
This was referenced Jul 13, 2026
Member
Author
|
@cudnn-ci-bot run |
|
🚀 Running mirror pipeline Branch: cudnn-gh/pr-383-a7b38d3 |
hwanseoc
force-pushed
the
hwanseoc/graph-json-tid-schema
branch
from
July 14, 2026 20:19
a7b38d3 to
2ca4806
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.
@coderabbitai ignore
Why
Graph JSON v1 uses tensor names as references. Duplicate and anonymous names can collapse distinct tensors and make extracted repros incorrect.
This draft is the hybrid-identity alternative to #280:
tid: graph-local structural identity used by graph JSON and repro extractionuid: user/backend identity used by variant packs and execution plansArchitecture
2.0gidto correlate serialized graphs with executionsBehavior shared with #280
gidor graph structureIntentional difference from #280
TID and UID are explicit, non-interchangeable namespaces. Structural serialization does not assign missing backend UIDs. #280 instead uses UID for both structure and execution identity.
Compatibility
gidis process-local execution correlation, not persistent identity.Dependencies
#386 contains the architecture-independent runtime tensor-dump and FP8/MXFP8 tester fixes.
Verification
Based on
develop526020e; B200, CUDA 13.1, cuDNN backend 9.30:Draft question
Should graph-local TID allocation remain at tensor creation sites, or move to a centralized graph-owned allocator before merge?