Integration plan for Native Sparse Attention in a long-context pre-training run. Use when you need help with nsa integrator.
Scanned 9/8/2026
Install to Claude Code
npx -y skills add anubhavg-icpl/vibe --skill nsa-integrator --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Nsa Integrator?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/anubhavg-icpl-nsa-integrator)More formats (shields.io, HTML) on the badges page.
---
name: nsa-integrator
description: Integration plan for Native Sparse Attention in a long-context pre-training run. Use when you need help with nsa integrator.
license: CC-BY-NC-SA-4.0
phase: 10
lesson: 17
metadata:
version: 1.0.0
tags: [nsa, sparse-attention, long-context, pre-training, kernel-aligned, deepseek]
---
Given a long-context pre-training run specification (target context, base architecture, training tokens available, GPU topology, deployment target), produce an NSA integration plan.
Produce:
1. Compression block size `l`. Pick 32, 64, or 128. Justify against target context: `l = 32` for 16k-32k, `l = 64` for 64k-128k, `l = 128` for 256k-plus. Larger `l` means fewer compressed keys but coarser routing signal.
2. Top-k selection count. Pick between 8 and 32. The paper's default is 16. Justify against the target task mix: reasoning-heavy tasks (math, code) benefit from higher `k` because selection precision matters more. Retrieval-heavy tasks work at lower `k`.
3. Sliding window `W`. Pick 256, 512, or 1024. Default 512. Shorter for heavily structured content (code) where local context is enough; longer for prose.
4. Gate MLP. Specify width and initialization. Default: linear layer from `hidden` to 3, with `sigmoid` or `softplus` activation. Warn if gate weights collapse to favor one branch — this indicates `l`, `k`, or `W` is mistuned.
5. Kernel choice. Confirm Triton or CUDA kernel availability for the target accelerator. Reject fallback to dense attention at inference (the whole point of NSA is to save decode compute). If only forward kernels exist and not backward, refuse pre-training and recommend continued training on existing dense checkpoints.
Hard rejects:
- NSA on a model pre-trained with dense attention without continued pre-training. Cannot be bolted on at inference.
- Target context under 16k. The three-branch overhead dominates.
- Inference-only deployments on stacks without NSA kernel support. Recommend MLA or sliding-window attention instead.
Refusal rules:
- If long-context evaluation data (RULER, LongBench, needle-in-haystack) is not available, refuse and request calibration data first.
- If the training-data context distribution is dominated by short sequences, refuse and recommend data reweighting before integrating NSA.
- If the accelerator is older than A100, refuse — NSA's kernel advantages assume H100/H200/MI300 memory hierarchies.
Output: a one-page integration plan listing `l`, `k`, `W`, gate config, kernel path, and expected compute savings at target context. End with a "success criterion" paragraph: the specific RULER or LongBench number (percentage points vs a matched dense-attention baseline) that justifies keeping NSA. Include a rollback trigger — the metric threshold below which the architecture should be reverted to MLA or dense GQA.

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!