SPEAR is a collection of kernels for AI model architectures developed by Radical Numerics.
You may use PyPI to install SPEAR:
pip install spear-pythonNote that it will take few minutes to compile kernels for your specific GPU architecture.
You may also install it locally using the following method to install the package in development mode:
git clone https://github.com/radicalnumerics/spear.git && cd spear # clone the repository
uv venv && source .venv/bin/activate # virtual env with uv (recommended)
uv pip install -e '.[dev]' # install in development modeWe use ccache by default. To use it and enable faster compilation (see explanation on the vLLM docs), run:
CCACHE_NOHASHDIR="true" uv pip install --no-build-isolation -e '.[dev]'import torch
from spear.nn.phalanx import Phalanx
device = "cuda:0" if torch.cuda.is_available() else "cpu"
dtype = torch.bfloat16
dim = 512 # Must be divisible by 16 (head_dim is fixed at 16)
length = 128
batch_size = 1024
layer = Phalanx(dim=dim, length=length, dtype=dtype).to(device)
x = torch.randn(batch_size, length, dim, dtype=dtype, device=device)
y = layer(x)
print(f"Input: {x.shape} -> Output: {y.shape}")We include pre-commit hooks for linting and formatting (Python, C++, CUDA). To install:
uv run pre-commit installTo run (note they will be run automatically on commit, so not necessary to run manually):
uv run pre-commit run --all-filesTo run tests
uv run pytestcsrc/ # kernels: CUDA/C++ or other DSLs
spear/
├─ ops/ # low-level wrappers per op family
│ └─ <op>/
└─ nn/ # layers built from ops (parametrized)
└─ <layer>/
Currently supported hardware includes compute capabilities 9.0 (Hopper) and 10.0 (Blackwell).
| Kernel Name | (NVIDIA) sm9.0 | (NVIDIA) sm10.0 | (NVIDIA) sm10.3 |
|---|---|---|---|
swr.btp.fwd.bf16.bdl.hd16-bl16.sm90 |
✔︎ | ~ | ⛔ |
swr.btp.bwd.bf16.bdl.hd16-bl16.sm90 |
✔︎ | ~ | ⛔ |
- ✔︎: optimized
- ~: working but not fully optimized
- ⛔: not available