What problem does it solve? When a PyPTO operator on Ascend NPU produces wrong results, developers struggle to determine whether the fault lies in the frontend, a compiler Pass, codegen, or on-device execution. This Skill provides a structured workflow to enable full-chain Pass verification, interpret verification error codes, and pinpoint the exact failing Pass and Op. ## Core Features & Use Cases - Full-chain Pass verification: Configure verify_options and tile_fwk_config.json with PreCheck/PostCheck to validate every compiler Pass, using CodegenPreproc as the authoritative pass/fail criterion. - Op-level fault localization: Run pass_compare.py between a failing Pass and its golden predecessor to generate a CSV of per-Op PASS/FAIL results, then analyze failures by opcode and symbol. - Sync and VF fusion debugging: Detect pipeline synchronization races via enableDebug and binary PIPE_ALL insertion (binary_pipeall_sync.py), then map problem CCE lines back to frontend source with locate_source_line.py. - Use Case: A PyPTO operator fails precision with error 0xB4001U. Enable PreCheck/PostCheck, find CodegenPreproc FAIL, run pass_compare against the previous passing Pass, and identify the exact failing Op to fix. ## Quick Start Ask the assistant to diagnose a PyPTO Pass precision failure by enabling PreCheck/PostCheck verification and running pass_compare to locate the failing Op.