neuron-nki-writing
GitHub指导编写和修改NKI内核,涵盖从PyTorch/NumPy转换、创建新内核到优化分块策略及添加功能。强调遵循语言约束以确保编译正确,并根据任务复杂度提供快速启动指南和翻译工作流。
Trigger Scenarios
Install
npx skills add uw-syfi/vibe-serve --skill neuron-nki-writing -g -y
SKILL.md
Frontmatter
{
"name": "neuron-nki-writing",
"description": "Guide for writing and modifying NKI kernels. Covers new kernel creation from\nPyTorch\/NumPy\/natural language, editing existing kernels, adding shape\/dtype support,\nrefactoring tiling strategies, and implementing new features in NKI code.\nUse when user says \"write NKI kernel\", \"convert PyTorch to NKI\", \"translate numpy to NKI\",\n\"create NKI kernel\", \"implement in NKI\", \"NKI version of\", \"how to write NKI kernel\",\n\"add support for <shape\/dtype>\", \"modify this NKI kernel\", \"extend kernel to handle\",\n\"refactor tiling\", \"change tile size\", \"add batch dimension\", \"support variable length\",\n\"fix this kernel logic\", \"update kernel for gen4\", or needs NKI API guidance for kernel changes.\n",
"argument-hint": "[operation, PyTorch\/Numpy code, or existing kernel file]"
}
Writing NKI Kernels
This skill guides writing and modifying NKI (Neuron Kernel Interface) kernels — from new kernel creation (PyTorch/NumPy/natural language translation) to editing existing kernels (adding shape/dtype support, refactoring tiling, implementing new features). Focus on correctness using documented APIs.
Critical: NKI Language Constraints
BEFORE writing any NKI code, read references/nki-language-constraint.md for the complete list of required and forbidden API patterns covering Beta 1 → Beta 2, Beta 2 → NKI 0.3.0, and NKI 0.3.0 → NKI 0.4.0 migration rules. Violating ANY rule is a compilation failure.
Quick Start
Minimal working kernel structure:
import nki
import nki.isa as nisa
import nki.language as nl
@nki.jit
def my_kernel(input_hbm: nl.ndarray) -> nl.ndarray:
"""One-line description of kernel operation."""
# 1. Allocate SBUF tile
tile = nl.ndarray(input_hbm.shape, dtype=input_hbm.dtype, buffer=nl.sbuf)
# 2. Load from HBM to SBUF
nisa.dma_copy(dst=tile, src=input_hbm[0:input_hbm.shape[0], 0:input_hbm.shape[1]])
# 3. Compute (example: element-wise exp)
result = nl.ndarray(tile.shape, dtype=tile.dtype, buffer=nl.sbuf)
nisa.activation(dst=result, data=tile, op=nl.exp)
# 4. Allocate and store to HBM
output = nl.ndarray(input_hbm.shape, dtype=input_hbm.dtype, buffer=nl.shared_hbm)
nisa.dma_copy(dst=output, src=result)
return output
Complexity Assessment
Before reading references, classify the task to avoid unnecessary overhead:
Simple (element-wise op, single reduction, activation, layernorm, add/multiply):
- Use the Quick Start template and Step 4 API table directly
- Skip utility library references entirely
- Start writing code immediately — consult references only when stuck
- Target: working kernel within 5 minutes
Medium (matmul, softmax, multi-step fusion, transpose with tiling):
- Read
references/common-patterns.md,references/api-translation.mdandreferences/memory-patterns.md - Skip utility library references unless tiling is complex
- Target: working kernel within 15 minutes
Complex (multi-head attention, transformer blocks, state-space models, MoE):
- Full reference loading appropriate
- Read utility selection guide and relevant patterns
- Target: working kernel within 30 minutes
Start writing code as soon as possible. Reference reading should supplement coding, not precede it. Write the kernel structure first, then consult references for specific API details as needed.
Translation Workflow
Step 1: Identify Operations
Map PyTorch/NumPy operations to NKI equivalents using references/api-translation.md.
Step 2: Design Tiling Strategy
NKI operates on tiles with hardware constraints:
| Constraint | Limit | Notes |
|---|---|---|
| Partition dimension (P) | ≤ 128 | First dimension of SBUF tensor |
| PSUM free dimension | ≤ 512 (gen2/3) / ≤ 4096 (gen4) | For matrix multiply results |
| SBUF free dimension | ≤ 32767 | Second+ dimensions |
| MatMul K dimension | ≤ 2048 | Contraction dimension |
For tensors exceeding limits, use explicit tiling with TiledRange for remainder-safe iteration
(see Utility Selection Guide below).
Step 3: Implement Memory Access
Consult the Utility Selection Guide to choose the right utilities for the kernel's access patterns,
then follow references/memory-patterns.md and references/transpose-and-layout.md:
- Contiguous DMA: For aligned, sequential access (most efficient)
- Strided DMA: Use
TensorView.slice(step=N)for gather/scatter patterns (see transpose-and-layout.md) - Tiling loops: Use
TiledRangefor dimensions requiring tiling with remainder handling - Transpose operations: Use
nisa.nc_transpose()for P↔F transpose,TensorViewfor layout manipulation - Partition broadcast: Use
stream_shuffle_broadcastwhen a bias/scale in partition 0 must reach all PEs - Buffer management: Use
SbufManagerwhen the kernel has 4+ SBUF allocations or shared sub-functions
Step 4: Add Compute Operations
Use ISA functions with explicit dst parameter:
# Element-wise
nisa.activation(dst=result, data=input, op=nl.exp)
nisa.tensor_tensor(dst=result, data1=a, data2=b, op=nl.add)
nisa.tensor_scalar(dst=result, data=input, op0=nl.multiply, operand0=2.0)
# Reductions
nisa.tensor_reduce(dst=result, data=input, op=nl.add, axis=1)
# Matrix multiply
nisa.nc_matmul(dst=psum_result, stationary=a, moving=b)
Step 5: Validate Complex Translations
Important: Always compute reference results on CPU, not on the XLA device. Every on-device XLA graph generates a separate NEFF file, making it hard to identify the NKI kernel's NEFF during profiling. Use tensor.cpu() before computing PyTorch/NumPy references.
For simple kernels (single operation, few tiles), comparing the final output against a PyTorch/NumPy reference is usually sufficient. For complex kernels with multiple computation stages, validate incrementally:
- Identify logical stages in the source operation. For example, a fused attention kernel has: QK matmul → scale → mask → softmax → AV matmul.
- Translate and validate one stage at a time. Write the first stage, store its output to HBM, and compare against the corresponding PyTorch intermediate. Only proceed to the next stage once the current one matches.
- Compose validated stages. Once each stage is verified independently, connect them (keeping intermediates in SBUF instead of round-tripping through HBM) and validate the final output.
This catches translation errors early — a mismatch in the final output of a 5-stage kernel is much harder to diagnose than a mismatch after stage 2.
Use multiple complementary checks (atol/rtol, max absolute difference, tensor norm of the difference, cosine similarity) rather than relying on a single metric.
Hardware Constraints Quick Reference
| Buffer | Max P | Max F | Use Case |
|---|---|---|---|
nl.sbuf |
128 | 32767 | General compute |
nl.psum |
128 | 512 (gen2/3) / 4096 (gen4) | MatMul accumulation |
nl.shared_hbm |
- | - | Input/output tensors |
Loop Types
| Loop Type | Use Case | Unrolling |
|---|---|---|
nl.affine_range(N) |
Parallel iterations, no dependencies | Full unroll |
nl.sequential_range(N) |
Loop-carried dependencies (cumsum) | No unroll |
nl.static_range(N) |
Compile-time constant iterations | Partial unroll |
Common Patterns
For detailed code examples, anti-patterns, and production patterns (cumsum, rmsnorm_quant), see references/common-patterns.md.
Element-wise Operations
- Reshape to 2D, tile P dimension (≤128), use
nisa.activation()/nisa.tensor_tensor()
Matrix Multiply — Key Rules
- Allocate PSUM:
nl.ndarray(..., buffer=nl.psum)— uninitialized is correct - K-dimension loop: always
nl.affine_range(), nevernl.sequential_range(serializes execution) - Multiple
nisa.nc_matmul()writes to same PSUM buffer triggers hardware accumulation - Never write PSUM to HBM between accumulation steps
- Operands: stationary
[K≤128, M≤128], moving[K≤128, N≤512/4096], result[M, N]in PSUM - Copy PSUM→SBUF via
nisa.tensor_copy()before further ops - See
examples/simple_matmul.pyfor complete examples
Fused ScalarE Operations
nisa.activation(op=nl.exp, data=x, scale=s)→exp(x * s)in one instruction- Available: scale, bias, or both before any activation function
Sequential Operations & Associative Scan
- Use
nisa.tensor_tensor_scaninstead of explicit sequential loops - Pattern:
out[i] = op0(data[i], out[i-1]) op1 data1[i] - Multi-tile: pass final state as
initial=to next tile's scan - See
examples/associative_scan.pyfor complete pattern
Skill References
References are tiered to minimize overhead on simple tasks. Load only what you need based on the Complexity Assessment above.
Always load (core references):
references/nki-language-constraint.md- MANDATORY: Required and forbidden API patterns for NKI 0.4.0, reference kernel templatereferences/common-patterns.md- Full code examples: matmul PSUM accumulation, fused ScalarE, associative scan, production patternsreferences/api-translation.md- PyTorch/NumPy to NKI operation mappingreferences/kernel-template.md- Standard kernel template with self-contained utilitiesreferences/indexing-patterns.md- Complete indexing guide: memory-type rules (HBM/SBUF/PSUM), operation constraints (matmul/transpose/reduce), dynamic indexing with DGE modes
Load when tiling or DMA patterns are needed (medium+ complexity):
references/memory-patterns.md- DMA and tiling patterns with code examplesreferences/nkilib/core/tiled-range.md- TiledRange: dimension tiling with remainder handlingreferences/nkilib/core/kernel-helpers.md- Math helpers, SPMD, dtype utilities
Load when layout manipulation is needed:
references/transpose-and-layout.md- Transpose and layout transformation guide: nc_transpose, TensorView, array patterns, strided DMA, decision trees for layout operationsreferences/nkilib/core/tensor-view.md- TensorView: zero-copy tensor manipulation
Load when advanced patterns are needed (complex kernels only):
references/performance-basics.md- Optimization patterns (fusion, double buffering)references/nkilib/core/allocator.md- SbufManager: stack/heap SBUF allocationreferences/nkilib/core/tile-info.md- TiledDimInfo: tile tracking with subtile supportreferences/nkilib/ops/- Copy/broadcast operations (stream-shuffle, tp-broadcast)references/nkilib/types/- Enum types and logging utilitiesreferences/nkilib/patterns/- Reusable kernel patterns (quantization, normalization, layout conversion, MoE)
Bundled Source Code
Full source for nkilib/core utilities and subkernels:
references/nkilib/core/utils/- Utility source (TensorView, TiledRange, kernel_helpers, SbufManager, etc.)references/nkilib/core/subkernels/- Reusable sub-operations (RMSNorm, LayerNorm, normalization utils)
Configuration
Default: inline nkilib utility source directly into the user's kernel file from the bundled source above.
If nkilib is installed in the user's environment, use from nkilib.core.utils.X import Y imports instead.
Utility Selection Guide
Always Use
| Utility | Adopt When |
|---|---|
div_ceil(n, d) |
Any tile count computation. Never write (n + d - 1) // d inline. |
kernel_assert() |
Any input validation. Never use Python assert. |
Use When Pattern Matches
| Utility | Adopt When | Reference |
|---|---|---|
TiledRange |
Tiled dimension iteration with remainder handling | references/nkilib/core/tiled-range.md |
TensorView |
Strided/interleaved DMA, broadcasting, reshape without copy, dynamic selection | references/nkilib/core/tensor-view.md |
stream_shuffle_broadcast |
Replicate partition-0 value (bias, scale) to all 128 partitions | references/nkilib/ops/stream-shuffle-broadcast.md |
SbufManager |
4+ SBUF tensors or sub-functions sharing SBUF | references/nkilib/core/allocator.md |
Specialized: TiledDimInfo (subtile metadata), tp_broadcast (P→F broadcast, very rare).
Decision Flowchart
Kernel needs tiling?
├─ Yes → Use TiledRange for each tiled dimension
│ Use div_ceil() for tile count computations
├─ Nested tiles (subtiles within tiles)?
│ └─ Yes → TiledRange supports nesting: TiledRange(outer_tile, subtile_size)
│ For CTE-style metadata tracking → also consider TiledDimInfo
└─ No → Plain nl.affine_range()
Kernel accesses tensors non-contiguously?
├─ Strided/interleaved → TensorView.slice(step=N)
├─ Broadcasting → TensorView.broadcast(dim, size)
├─ Reshape without copy → TensorView.reshape_dim() / flatten_dims()
├─ Dynamic expert selection → TensorView.select(dim, scalar_offset)
└─ Simple contiguous → plain tensor[start:end, :]
Kernel needs to broadcast a scalar/vector to all partitions?
├─ 1D value in partition 0 → stream_shuffle_broadcast(src, dst)
└─ Column vector (P-dim) to row (F-dim) → tp_broadcast(src, dst, ...)
Kernel allocates many SBUF buffers?
├─ 4+ buffers, or sub-functions share SBUF → SbufManager
└─ 1-3 simple buffers → plain nl.ndarray(..., buffer=nl.sbuf)
Coding Conventions
Follow these conventions unless the user's instructions or existing project style indicate otherwise.
- Prefer
kernel_assert()over Pythonassert- Produces structured error messages ([NCC_INKI016] Kernel validation exception: ...) that clearly identify errors originating from NKI kernels, which is helpful when kernels run inside larger frameworks. The kernel template (references/kernel-template.md) provides an inline definition; alternatively, import from nkilib if installed. - Include docstrings with Args/Returns/Notes sections for non-trivial kernels
- Validate inputs with shape checks before the kernel body
- Use descriptive variable names (e.g.,
partition_idxnotp)
Kernel Efficiency Guidelines
These are basic efficiency practices to follow when writing any kernel. They do not require advanced allocation or pipelining — just sensible layout, tiling, and data flow choices.
1. Tensor Layout Flexibility (Conditional)
If the input/output tensor layout would make the kernel significantly harder to write (e.g., requiring many strided DMAs or complex reshaping), ask the user:
"The current tensor layout [describe issue] would require [strided DMA / reshaping]. Would you allow changing the layout to [proposed layout]? This would simplify the kernel and improve performance."
Layout changes that typically help:
- Putting the reduction dimension last (contiguous in memory)
- Aligning dimensions to 128 (partition) and 512 (PSUM free)
- Transposing to avoid strided DMA patterns
2. Large Contiguous Free Dimension in DMA (≥2KB)
DMA efficiency depends on the free dimension (second dimension onwards) being large and contiguous in memory. Target ≥2KB contiguous free dimension to saturate memory bandwidth.
Key concept: In a tile [P, F], the partition dimension P (first dim) is distributed across
hardware partitions. The free dimension F (second dim onwards) should be large and contiguous.
| Data Type | Minimum Free Dimension (Contiguous) |
|---|---|
| float32 | 512 elements (2KB) |
| bfloat16 | 1024 elements (2KB) |
| float8 | 2048 elements (2KB) |
What "contiguous" means: The free dimension elements are adjacent in HBM memory with stride=1.
Production example from mlp_tkg_gate_up_projection.py:169-181:
# Weight layout: [H, I] where I is the contiguous free dimension
# Load weight tile [HTile=2048, I] where I is large and contiguous
# HTile = 2048 for non-quantized (reshapes to [128, 16, I] in SBUF)
nisa.dma_copy(
dst=weight_tiles[weight_idx][0:H0, 0:h1_tiles, 0:I], # SBUF: [128, h1_tiles, I]
src=unsharded_weight.ap(
pattern=[
[H1 * unsharded_weight.shape[1], H0], # Partition dim
[unsharded_weight.shape[1], h1_tiles], # Batch dim
[1, I], # Free dim - contiguous (stride=1)
],
offset=h_offset * dims.I + weight_shard_offset,
),
)
# Here I (intermediate dimension) is the large contiguous free dimension
Why this matters: Strided DMA (free dim not contiguous) has significant overhead. If your tensor layout requires strided access, consider asking the user to change the layout (see Tensor Layout Flexibility above).
3. Keep Intermediates in SBUF
Avoid unnecessary HBM round-trips by keeping intermediate results in SBUF between operations.
Common pattern: MatMul → Element-wise → HBM
# MatMul result in PSUM
psum_result = nl.ndarray((P, F), dtype=nl.float32, buffer=nl.psum)
nisa.nc_matmul(dst=psum_result, stationary=a, moving=b)
# Copy to SBUF for element-wise ops (PSUM → SBUF, no HBM)
sbuf_result = nl.ndarray((P, F), dtype=nl.float32, buffer=nl.sbuf)
nisa.tensor_copy(dst=sbuf_result, src=psum_result)
# Element-wise activation in SBUF (still no HBM)
nisa.activation(dst=sbuf_result, data=sbuf_result, op=nl.gelu)
# Only final result written to HBM
nisa.dma_copy(dst=output_hbm, src=sbuf_result)
Anti-pattern to avoid:
# BAD: Writing matmul result to HBM, then reading back for activation
nisa.dma_copy(dst=hbm_temp, src=psum_result) # Unnecessary write
nisa.dma_copy(dst=sbuf_for_act, src=hbm_temp) # Unnecessary read
nisa.activation(dst=sbuf_for_act, data=sbuf_for_act, op=nl.gelu)
4. Maximize Hardware Parallelism (P=128)
Always try to use the full partition dimension (128) for hardware parallelism.
Production example from mlp_tkg_constants.py:156:
# Hardware partition dimension constraint - always use 128
_pmax = nl.tile_size.pmax # Max partition dimension in SBUF = 128
# Derived dimensions maximize partition usage
H0 = _pmax # 128 (partition dimension)
H1 = H // H0 # Remaining hidden dimension
# All SBUF tiles use full partition dimension
tile = nl.ndarray((H0, free_dim), dtype=dtype, buffer=nl.sbuf) # [128, ...]
5. Minimum Tile Sizes
| Operation | Minimum Tile Size | Rationale |
|---|---|---|
| MatMul (nc_matmul) | (128, 512) | Partition=128, PSUM free=512 for pipelining |
| Vector/Scalar ops | (128, 64) | Partition=128, free dim ≥64 for efficiency |
Production MatMul example from mlp_tkg_gate_up_projection.py:188-204:
# Standard matmul tile: stationary [128, T], moving [128, 512]
for i_tiles in TiledRange(I, dims._psum_fmax): # _psum_fmax = 512
nisa.nc_matmul(
dst=result_psums[i_tiles.index][
nl.ds(dims.column_tiling_dim * column_idx, T),
0 : i_tiles.size, # Up to 512
],
stationary=hidden.ap(
pattern=[[T * H1, H0], [H1, T]],
offset=h_offset + column_tile_offset,
),
moving=weight_tiles[weight_idx][
0:H0, # 128 partition dim
column_tile_offset,
nl.ds(i_tiles.start_offset, i_tiles.size), # Up to 512
],
)
Vector/Scalar tile sizing from mlp_tkg_constants.py:194-206:
# column_tiling_dim sets the free dimension for vector/scalar ops
# (e.g., activation functions, element-wise ops after matmul)
# Minimum 64 ensures efficient hardware utilization
if T <= 32:
column_tiling_dim = 32 # Small T: use 32
elif T <= 64:
column_tiling_dim = 64 # Medium T: use 64 (minimum for efficiency)
else:
column_tiling_dim = 128 # Large T: use 128
Related Skills
| Skill | Use When |
|---|---|
/neuron-nki-docs |
Look up specific API documentation |
/neuron-nki-debugging |
Debug compiler errors on device |
/neuron-nki-profiling |
Profile kernel performance |
/neuron-nki-profile-querying |
Query and analyze kernel profile data |
Version History
- 0420f69 Current 2026-07-05 12:11


