What problem does it solve? Adding or modifying hardware-specific backends in the Flash Linear Attention library requires following a strict dispatch contract; this Skill encodes that contract so backend implementations, verifiers, and tests stay consistent with the runtime dispatch system in fla/ops/backends. ## Core Features & Use Cases - Backend Implementation Checklist: Guides creation of BaseBackend subclasses with correct backend_type, package_name, env_var, default_enable, and priority settings. - Verifier Rules: Enforces cheap, deterministic, side-effect-free verifier functions that return rejection reasons and never mutate global state. - Testing Guidance: Covers accepted dispatch, verifier rejection, fallback paths, and env var control such as FLA_DISABLE_BACKEND_DISPATCH. - Use Case: When adding a TileLang backend for a Gated DeltaNet operation, use this Skill to place the decorator correctly, write the verifier, register the backend, and add rejection tests. ## Quick Start Add a new backend for the kda operation in fla following the dispatch backend workflow, including its verifier, registration, and tests.