What problem does it solve? Migrating a tuned plain-Triton kernel to Gluon on AMD Instinct GPUs (gfx942/gfx950) often loses performance silently: hand-transcribed layouts drift from the compiler's, the software pipeline that Triton's num_stages bought is dropped, and occupancy regressions hide behind passing numerics. This Skill provides the deterministic transcription procedure, executable gates, and measurement tools to port faithfully and recover the lost overlap. ## Core Features & Use Cases - TTGIR-to-Gluon layout recovery: Recover layouts from a pinned kernel's .ttgir using the compiler's own parser with round-trip proofs, rather than hand-written mappings. - Pipeline re-injection: Re-apply Triton's scheduling and pipelining passes to Gluon kernels in-process, restoring cross-iteration overlap without modifying installed files. - Executable validation gates: Champion, parity, occupancy, and A/B benchmark gates that attribute any anchor-to-champion gap to lost pipeline, lost layout, or register allocation. - Use Case: Given a tuned Triton attention kernel on an MI300 GPU, transcribe it to Gluon, verify layout equivalence, measure the transcription debt, and climb past parity using the ranked continuation steps. ## Quick Start Ask the agent to port the tuned Triton kernel in the task directory to Gluon using this skill, running the champion gate first and the parity gate before any optimization climb.