用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/marin-community/marin --skill add-pallas-kernel命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | add-pallas-kernel |
| description | Add, modify, or autotune a TPU/GPU Pallas kernel. |
Use this skill to build or change Pallas kernels with explicit standards for reference numerics, gradient safety, backend/fallback API design, performance measurement, and block-size autotuning.
.agents/skills/run-research/SKILL.md
first.docs/reference/; read them only when the
routed detail files point there.For a kernel K, produce:
The general flow is: make it right, make it fast, make it usable, make it easy to use.
Use an existing in-repo implementation, pseudocode, a PyTorch reference, or a JAX baseline. The baseline must be obvious and stable, not clever. If the naive baseline would materialize huge intermediates, use a streaming/blockwise baseline with identical math.
Minimum checks:
allclose.Use explicit shape/dtype annotations for public APIs and references, such as
jaxtyping, where available.
For in-tree kernels, add or extend tests under lib/levanter/tests/kernels/.
Compare the default implementation against the reference on small CPU shapes and
accelerator-aligned shapes for fast paths. Read TESTING.md and the nearest
module AGENTS.md before writing or changing tests.
Once the reference is correct, design the Pallas implementation. Use the reference as both a correctness oracle and a performance baseline.
Use existing kernels for structure and API inspiration. Read Kernel sources unless the user already named the specific kernel to follow. Unless there is a stronger local pattern, start by reimplementing the reference in Pallas.
Wrap accelerator kernel boundaries in an explicit jax.shard_map by default.
This applies to pl.pallas_call, Mosaic GPU kernels, and custom FFI calls.
Reshard inputs to the intended local PartitionSpec before the shard_map,
keep the sequence or other nonlocal dimensions unsharded unless the kernel is
explicitly written for them, and add a regression check that the lowered JAXPR
or HLO contains the expected shard_map. Do not rely on XLA to infer a good
sharding for an opaque kernel call boundary. Exceptions are limited to wrappers
whose inputs are explicitly documented and tested as fully local or replicated.
Check correctness against the harness and reference implementation before tuning. Once the kernel is correct, run a performance harness on representative shapes/dtypes and compare against the roofline. If performance is not near the expected roofline, read Performance workflow and investigate compiler dumps, pressure signals, and tile choices before broad rewrites.
Read API patterns before adding or changing the public wrapper, backend selection, block-size config, or input normalization contract. Keep the reference/XLA path usable even when accelerator-specific constraints are not met. Keep backend-specific validation in backend-specific modules.
Add cost_estimate= to each pl.pallas_call:
pl.estimate_cost on a body-equivalent JAX function, not a kernel body
with pl.program_id.from levanter.kernels.pallas.cost_estimate_utils import with_io_bytes_accessed
def _cost_estimate(
q: jax.Array,
k: jax.Array,
v: jax.Array,
*,
kernel_inputs_specs,
kernel_outputs_specs,
) -> pl.CostEstimate | None:
body_cost = pl.estimate_cost(reference_impl, q, k, v)
return with_io_bytes_accessed(
body_cost,
kernel_inputs_specs=kernel_inputs_specs,
kernel_outputs_specs=kernel_outputs_specs,
)
shard_map, or
its wrapper documents and tests why the inputs are fully local or replicated.
Tests or profile evidence show it did not lower through unintended
all-gathers.pl.pallas_call has a reviewed cost_estimate=.run-research workflow when the task is long-running.shard_map boundary when
operating on sharded inputs.