mcpbeat Sign in

Tilegym Converting Cutile To Julia Agent Skill

Converts cuTile Python GPU kernels (@ct.kernel) to cuTile.jl Julia equivalents. Handles kernel syntax translation, 0-indexed to 1-indexed conversion, broadcasting differences, memory layout (row-major to column-major), type system mapping, and launch API differences. Use when converting, porting, or translating cuTile Python kernels to Julia cuTile.jl, or debugging/optimizing existing Julia cuTile translations.

29k tokens
context cost
the whole folder, loaded on every use
17
files
ships runnable scripts
0
copies elsewhere
how many repositories repackaged it
789
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/NVIDIA/TileGym --skill tilegym-converting-cutile-to-julia

What comes with it

110 808 bytes besides the instruction
BENCHMARK.md
evals/evals.json
examples/01_add/cutile_julia.jl
examples/01_add/cutile_python.py
examples/02_matmul/cutile_julia.jl
examples/02_matmul/cutile_python.py
examples/03_softmax/cutile_julia.jl
examples/03_softmax/cutile_python.py
references/api-mapping.md
references/critical-rules.md
references/debugging.md
references/testing.md
scripts/validate_cutile_jl.py
skill-card.md
skill.oms.sig
translations/workflow.md

The instruction itself

8 sections, as written by the author

cuTile Python → cuTile.jl (Julia) Conversion

Convert @ct.kernel Python kernels to Julia function ... end cuTile.jl kernels.

Workflow Selection

  • Standard conversion → Full workflow: translations/workflow.md
  • Errors (MethodError, IRError, numerical mismatch) → references/debugging.md
  • Quick referencereferences/api-mapping.md + references/critical-rules.md
  • Test patternsreferences/testing.md

Architecture

Julia kernels are standalone — no Python bridge, no pytest integration. The Julia sub-project

lives in julia/ at the repo root with its own Project.toml for dependency management.

julia/                          # Self-contained Julia sub-project
├── Project.toml                # Dependencies: CUDA.jl, cuTile.jl, NNlib.jl, Test
├── kernels/                    # cuTile.jl kernel implementations
│   ├── add.jl                  # ← Ground-truth: 1D element-wise with alpha scaling (tensor+tensor, tensor+scalar)
│   ├── matmul.jl               # ← Ground-truth: 2D tiled MMA, standard Julia layout (M,K)×(K,N)→(M,N)
│   └── softmax.jl              # ← Ground-truth: 3 strategies (TMA, online, chunked) using ct.load/ct.store
└── test/                       # Julia-native tests (using Test stdlib)
    ├── runtests.jl             # Test runner entry point
    ├── test_add.jl
    ├── test_matmul.jl
    └── test_softmax.jl

Ground-truth reference: Always consult julia/kernels/*.jl and julia/test/*.jl for patterns that compile and pass tests. These are the canonical examples of working cuTile.jl code.

Instructions

  • Analyze the Python kernel: identify patterns, shapes, dtypes, operations
  • Write Julia kerneljulia/kernels/<op>.jl with cuTile.jl kernel + bridge function(s)
  • Convert kernel signature (see translations/workflow.md Phase 2)
  • Convert kernel body (apply references/api-mapping.md + references/critical-rules.md)
  • Write Julia testjulia/test/test_<op>.jl using Test stdlib + NNlib.jl for reference
  • Register test — add include(...) in julia/test/runtests.jl
  • Validate — run the bundled validator: python <skill-dir>/scripts/validate_cutile_jl.py <file.jl>
  • Test — run julia --project=julia/ julia/test/runtests.jl

Full conversion checklist with post-conversion verification → translations/workflow.md

⚠️ Top Pitfalls

The most dangerous translation errors. Full rules (17 total) in references/critical-rules.md.

| # | Pitfall | One-line fix |

|---|---------|-------------|

| 1 | ct.full() doesn't exist in Julia | Use fill(val, shape), zeros(T, dims...), or ones(T, dims...) |

| 2 | max(a, b) on tiles → IRError | Use max.(a, b) (broadcast dot) |

| 3 | IRError / MethodError mentioning IRStructurizer | Compiler bug — file upstream with minimal reproducer |

| 4 | ct.launch arg order silently wrong | Args are positional — match kernel signature exactly |

| 5 | ct.load with order — index positions wrong | order remaps BOTH shape AND index (Critical Rule 16) |

Worked Examples

Side-by-side Python → Julia conversions matching the released Julia kernels in julia/kernels/. Each directory contains cutile_python.py (before) and cutile_julia.jl (after).

| # | Example | Key Patterns | When to Reference |

|---|---------|-------------|-------------------|

| 01 | add | 1D ct.load/ct.store, alpha scaling, scalar broadcast, fill/zeros, keyword load/store | Starting point; basic TMA + element-wise patterns |

| 02 | matmul | muladd, TF32 conversion, K-loop with for, 2D swizzle, standard Julia layout, ct.@compiler_options | MMA / tensor core operations |

| 03 | softmax | Persistent scheduling, for loops, gather/scatter, padding_mode, multi-pass | Large-tensor reduction patterns |

These match the released kernels in julia/kernels/ (add.jl, matmul.jl, softmax.jl). The examples are simplified teaching versions — always consult julia/kernels/*.jl for the canonical, tested implementations.

Reference Documents

| Category | Document | Content |

|----------|----------|---------|

| Workflows | translations/workflow.md | Full conversion workflow with todo list, validation loop, checklist |

| Rules | references/critical-rules.md | 17 Critical Rules for cuTile Python → Julia conversion |

| API | references/api-mapping.md | Python↔Julia bidirectional API mapping + kernel patterns |

| Testing | references/testing.md | Julia-native test patterns, tolerances, failure diagnosis |

| Debugging | references/debugging.md | Julia-specific error diagnosis + IR debug commands |

| Scripts | scripts/validate_cutile_jl.py | Static validation for Julia anti-patterns (run it) |

| Ground Truth | julia/kernels/*.jl + julia/test/*.jl | Actual working implementations in the codebase |

Environment Setup

Prerequisite — Julia: this skill requires the Julia version declared in julia/Project.toml under [compat] julia. If julia --version is missing or older than that, install from the official Julia site at <https://julialang.org/install/> following the verified installer instructions for your OS. Resume below once julia --version is compatible.

Then, from the repo root:

# Install Julia dependencies declared in julia/Project.toml
julia --project=julia/ -e 'using Pkg; Pkg.instantiate()'

# Run tests
julia --project=julia/ julia/test/runtests.jl

Requirements:

  • Julia (minimum version declared in julia/Project.toml under [compat] julia)
  • CUDA 13.1+ driver
  • Blackwell GPU (compute capability 10+)
  • Dependencies managed via julia/Project.toml: CUDA.jl, cuTile.jl, NNlib.jl, Test

Other skills for the same job

different authors, same section of the catalogue
MCP Builder
by anthropics
vendor ×13

Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).

30k tokens scripts
Changelog Generator
by frostant
×9

Automatically creates user-facing changelogs from git commits by analyzing commit history, categorizing changes, and transforming technical commits into clear, customer-friendly release notes. Turns hours of manual changelog writing into minutes of automated generation.

774 tokens
Finishing A Development Branch
by ZhanlinCui
×7

Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup

1k tokens
MCP Builder
by JayZeeDesign
×7

Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).

37k tokens scripts
Vercel React Native Skills
by vercel-labs
vendor ×6

React Native and Expo best practices for building performant mobile apps. Use when building React Native components, optimizing list performance, implementing animations, or working with native modules. Triggers on tasks involving React Native, Expo, mobile performance, or native platform APIs.

39k tokens
Vercel React Best Practices
by ratacat
×5

React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.

34k tokens
Next Best Practices
by vercel-labs
vendor ×4

Next.js best practices - file conventions, RSC boundaries, data patterns, async APIs, metadata, error handling, route handlers, image/font optimization, bundling

20k tokens
Using Git Worktrees
by ZhanlinCui
×4

Use when starting feature work that needs isolation from current workspace or before executing implementation plans - creates isolated git worktrees with smart directory selection and safety verification

1k tokens

How to use it

Copy the folder

Take nvidia/tilegym-converting-cutile-to-julia from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

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.