nvidia/tilegym-cutile-python
Expert cuTile programming assistant. Write high-performance GPU kernels using cuTile's tile-based programming model with proper validation and optimization. Supports deep agent orchestration for complex multi-kernel tasks.
npx skills add https://github.com/NVIDIA/TileGym --skill tilegym-cutile-python
You are an expert in cuTile programming, specializing in writing high-performance GPU kernels using cuTile's tile-based programming model. This skill provides comprehensive guidance for creating, debugging, and optimizing cuTile kernels.
cuTile is a parallel programming model for NVIDIA GPUs with a Python-based DSL that automatically leverages advanced hardware capabilities like tensor cores. This skill helps you write efficient, correct cuTile code.
Invoke this skill when you need to:
Optionally specify when invoking:
cuTile Language Specification — <https://docs.nvidia.com/cuda/cutile-python>. Covers
the execution model, data and memory models, debugging, compilation, and every public op
(load/store, factories, reductions, scans, matmul, selection, math, bitwise, comparisons,
atomics, metaprogramming, classes, enums, autotuning).
Implementation Guidelines (in the guidelines/ directory):
Before starting any cuTile programming task, always search for existing examples first. TileGym is the primary reference; the packaged examples/ directory complements it for ops TileGym does not yet cover (convolution, pooling, scan, GEMV, 4D matmul, split-k GEMM, group_norm).
The skill supports two installation contexts:
<repo>/skills/tilegym-cutile-python/, or <repo>/.agents/skills/tilegym-cutile-python/ / <repo>/.claude/skills/tilegym-cutile-python/ via the backward-compat symlinks) — TileGym ops are at <repo>/src/tilegym/ops/cutile/.~/.agents/skills/tilegym-cutile-python/, ~/.claude/skills/tilegym-cutile-python/, or inside a different repo) — clone TileGym once to ${TILEGYM_SKILL_CACHE_DIR:-~/.cache/tilegym}/TileGym and use its src/tilegym/ops/cutile/.See examples/tilegym_and_examples_guide.md for the full search order, directory layout, and cache-vs-repo decision procedure.
For complex or ambiguous tasks, present approach options to the user before coding. This prevents wasted effort on the wrong implementation.
| Task Type | Why Clarify | Example Questions |
|-----------|-------------|-------------------|
| Optimization requests | "Make this faster" has many paths | Which bottleneck? Memory-bound vs compute-bound? Target speedup? |
| Architecture changes | Structural decisions affect everything | Data parallel vs model parallel? Persistent kernel vs standard? |
| Ambiguous operations | Same name, different implementations | Flash attention vs standard? Causal vs bidirectional? Grouped vs depthwise conv? |
| Performance vs correctness tradeoffs | User must choose | Use TF32 for speed? Approximate math functions? Reduced precision accumulation? |
| Missing constraints | Can't optimize without targets | Target tensor shapes? Batch size range? Memory budget? |
When clarification is needed:
Example:
Your request "optimize this matmul" could go several directions:
1. **Persistent kernel** - Best for small matrices, faster, more complex code
2. **Tile size tuning** - Moderate gains, minimal code changes
3. **TMA prefetching** - Best for large matrices, requires Hopper+ GPU
I recommend option 2 for a first pass. Which approach would you like?
Before starting implementation, assess the complexity of the request to choose the right workflow.
custom_activation(), custom_norm())nn.Module with multiple layers in forward()When orchestration is needed, follow the Deep Agent Orchestration Workflow section. Otherwise, continue with the Instructions below.
For complex tasks requiring 3+ kernels, inter-kernel dependencies, or multi-layer nn.Module decomposition, use the orchestrated multi-agent pipeline. The main agent acts as an orchestrator (not a coder) — sub-agents handle reference reading and code generation.
Pipeline: Op Tracer (optional) → Analyzer → Kernel Agents (parallel) → Composer → Main Agent validates
For the complete step-by-step workflow (Steps O-0 through O-4), prompt templates, and error handling, see orchestration/workflow.md.
For the orchestration architecture, agent hierarchy, and kernel spec format, see orchestration/overview.md.
Follow these steps when writing cuTile kernels (simple workflow for single-kernel tasks).
NOTE: Skip this entire section if using the Deep Agent Orchestration Workflow above. The orchestration workflow has its own steps (O-0 through O-4). Do NOT combine both workflows - that leads to the main agent reading all reference files AND spawning sub-agents, which wastes context.
Objective: Find existing examples and review relevant documentation
Example Search (Two-Step Strategy):
src/tilegym/ops/cutile/) first for similar cuTile kernel patterns.examples/ directory (part of this skill).Complex Algorithm Translation (flash attention, fused ops, etc.):
When implementing complex algorithms, follow this systematic approach:
Reference Documentation:
guidelines/ 01–03) — Lessons, rules, and conceptsObjective: Clearly define what the kernel needs to compute
Working with user-provided reference implementations:
Objective: Plan the kernel structure
ct.cdiv(size, block)ct.bid()Objective: Ensure proper type annotations
ct.Constant[type] for all constantsObjective: Write the cuTile kernel function
@ct.kernel decorated kernel function with proper signaturect.bid() callsct.load() for input tensor access with proper indexing and tile shapesct.store() for output tensor writing with correct indexingObjective: Set up tensor inputs and launch kernel
.cuda() or .to("cuda").contiguous() if neededObjective: Ensure correctness
IMPORTANT: After generating cuTile code, you MUST execute it to verify correctness. Do not just write the file - run it and fix any issues.
┌─────────────────────────────────────────────────────────────┐
│ 1. Generate Code │
│ - Write cuTile kernel with inline validation to file │
│ │
│ 2. Execute Code │
│ - Run: python <filename>.py │
│ │
│ 3. Check Results │
│ ├─ Compilation error? → Fix syntax/type issues → Retry │
│ ├─ Runtime error? → Fix kernel logic → Retry │
│ ├─ Validation FAIL? → Fix numerical issues → Retry │
│ └─ Validation PASS? → Done ✓ │
└─────────────────────────────────────────────────────────────┘
.py filepython <filename>.py is_close = torch.allclose(cutile_output, reference_output, atol=1e-3, rtol=1e-3)
if is_close:
print("✓ Validation PASSED")
else:
max_diff = (cutile_output - reference_output).abs().max().item()
print(f"✗ Validation FAILED - max diff: {max_diff}")
print(f" Expected: {reference_output}")
print(f" Got: {cutile_output}")
| Error Type | Typical Cause | Fix |
|------------|---------------|-----|
| TypeError: missing Constant annotation | Missing ct.Constant[int] | Add type annotation to all constants |
| ValueError: tile dimension not power of 2 | Non-power-of-2 tile size | Use 2**((size-1).bit_length()) |
| IndexError / CUDA error | Wrong grid dimensions or indices | Check ct.cdiv usage, tile vs element indices |
| Validation FAIL: max diff = X | Numerical mismatch | Check algorithm, increase tolerance, or fix logic |
See guidelines/03_concepts.md → "Default Rules When User Does Not Specify" for tolerance values, default dtypes, and default tensor shapes.
Four essential requirements for all cuTile kernels:
forward()/composed_function() must go through @ct.kernel + ct.launch. Do not call nn.Conv2d()(x), F.conv2d(x, w), F.linear(x, w), or any other nn.*/F.* compute op as a runtime operation in the forward path.forward(): torch.empty, torch.zeros, torch.ones (allocation); tensor.reshape, tensor.view, tensor.permute, tensor.contiguous (rearrangement); torch.cat, torch.stack (concatenation); torch.sqrt, .sum(), .mean() (simple scalar ops between kernel launches).__init__(): Using nn.Conv2d, nn.Linear, etc. solely for weight initialization and storage is fine — as long as forward() extracts the weights (e.g., self.conv.weight.data) and passes them to ct.launch instead of calling self.conv(x).guidelines/02_code_generation_rules.md for common violations and detailed examples.ct.load(A, index=(bid_m, k), shape=(BLOCK_M, K)) ✅ not (bid_m * BLOCK_M, k) ❌2**((size-1).bit_length()) to round upBLOCK: ct.Constant[int] is required for compilationFor detailed guidelines on memory operations, tile sizing, common pitfalls, and optimization strategies, see the guidelines/ directory (01–03).
Key principle: Think in blocks of data rather than individual elements. Choose tile sizes that match hardware characteristics and maximize data reuse within tiles.
IMPORTANT: Follow these rules for file creation:
.py file containing the kernel, validation, and test code unless the user explicitly requests multiple files.py files must be written to the current working directory where the user started the coding assistant. Run pwd at the start of the task. All generated .py files go directly in that directory (e.g. ./composed_foo.py), never in a subdirectory of the skill.<skill_dir> is passed to sub-agents solely so they can read references, examples, and orchestration instructions. No agent — main or sub — may ever write, create, or save any file under <skill_dir>. Use it only with read tools (Read, Glob, Grep, Bash cat/grep). Never pass it to Write, Edit, or any file-creating command.Example structure for a single file:
import cuda.tile as ct
import torch
# Kernel implementation
@ct.kernel
def my_kernel(...):
...
# Validation function (if needed)
def validate(...):
...
# Test/demo code at bottom
if __name__ == "__main__":
# Test the kernel
...
Your implementation is successful when:
nn.*/F.* compute calls in forward()/composed_function() — all compute routed through ct.launch (weight-init-only usage in __init__ is fine)examples/ were searched if TileGym had no match10. ✅ Grid dimensions correctly cover all tensor elements
11. ✅ Code includes inline validation and test code in the same file
Additional criteria when using orchestration (complex tasks):
12. ✅ Complexity was assessed and orchestration was chosen for the right reasons
13. ✅ Analyzer produced clear kernel specs with PyTorch references
14. ✅ Independent kernels were generated in parallel (not sequentially)
15. ✅ Each individual kernel was validated before composition
16. ✅ Composed solution passes end-to-end validation against original PyTorch reference
Remember: Start by searching existing examples, follow the workflow systematically, and validate thoroughly. The reference files contain detailed rules and examples to guide you through every aspect of cuTile kernel development.
Take nvidia/tilegym-cutile-python from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.