Skip to main content

Hugging Face of Tenstorrent: pip-installable TTNN-accelerated drop-in for transformers.

Project description

tt_symbiote

The transformers API, accelerated on Tenstorrent silicon.

tt_symbiote is a pip-installable Python library whose public surface mirrors Hugging Face transformers and whose model implementations run on Tenstorrent Wormhole hardware (N150 / N300 / T3K) via TTNN. The only line you add to a normal HF script is set_device(model, mesh):

import ttnn
from transformers import AutoTokenizer
from tt_symbiote import AutoModelForCausalLM, set_device

ttnn.set_fabric_config(ttnn.FabricConfig.FABRIC_1D_RING)
mesh = ttnn.open_mesh_device(mesh_shape=ttnn.MeshShape(1, 8), trace_region_size=200_000_000)

tokenizer = AutoTokenizer.from_pretrained("inclusionAI/Ling-mini-2.0", trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
    "inclusionAI/Ling-mini-2.0", trust_remote_code=True, dtype="auto",
    kv_cache_kwargs={"max_num_blocks": 512},   # paged-attention budget
)
set_device(model, mesh)              # <-- the one TT-specific line

inputs = tokenizer.apply_chat_template(
    [{"role": "user", "content": "Explain Python vs C++ in two sentences."}],
    add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt",
).to(model.device)
out = model.generate(**inputs, max_new_tokens=256, use_cache=True, past_key_values=model._tt_kv_cache)
print(tokenizer.decode(out[0][inputs["input_ids"].shape[-1]:]))

ttnn.close_mesh_device(mesh)

Runnable copies of this and every supported variant live in examples/e2e/.

The design rules:

  • Public API = transformers's Auto* surface — same class names, same from_pretrained(...), same model.generate(...). Drop-in.
  • One device-binding stepset_device(model, mesh) takes exactly two arguments; all configuration flows through from_pretrained.
  • Per-module TTNN with a CPU safety net — modules with a TTNN implementation run on device; anything else falls back to its CPU nn.Module.

Installation

tt_symbiote runs on Linux, Python 3.10 – 3.12, on a host with a Tenstorrent Wormhole device attached (N150 / N300 / T3K).

python -m venv .venv && source .venv/bin/activate
pip install tt_symbiote            # text-only causal LMs
pip install "tt_symbiote[vision]"  # multimodal / vision (Gemma-4, Qwen3-VL, ResNet)
pip install "tt_symbiote[all]"     # every model's optional deps

The install pulls the transitive HF stack (torch, transformers==5.9.0, accelerate, tokenizers, …). The [vision] extra adds torchvision, which HF's multimodal AutoProcessor classes require (mirrors the upstream transformers[vision] extra).

ttnn is NOT installed by pip — you must provide it from source. ttnn is a compiled extension tied to a specific tt-metal commit, so tt_symbiote deliberately does not depend on it: a PyPI ttnn wheel would silently overwrite the source build and corrupt numerics. Build tt-metal at the model's pinned commit and set $TT_METAL_HOME so ttnn is importable; import tt_symbiote auto-wires the source-built ttnn (and raises a clear, actionable error if none is found). Each model records the specific tt_metal_commit it was verified against — metadata enforced at load time by a compatibility gate that warns when the installed ttnn was built from a different commit.

ttnn JIT-compiles firmware kernels at the first open_mesh_device(...) call using the sfpi RISC-V toolchain. See docs/install_prerequisites.md for details.

Public API

tt_symbiote re-exports the entire transformers Auto* loader surface (same class names) and adds a small TT-specific surface:

from tt_symbiote import (
    AutoModelForCausalLM,           # plus the rest of the Auto* loaders
    set_device,                     # bind a loaded model to a TTNN mesh device
    register_modules,               # public hook for new recipe authors
    register_recipe,                # recipe decorator
    TT_MODEL_REGISTRY,              # {HF_class_name: Recipe}
    compatibility,                  # runtime coverage observation
)

set_device(model, mesh) is the only required new line. compatibility.report(model) returns a JSON dict of which modules ran on TTNN vs fell back to CPU — see docs/development/cpu_vs_device_coverage.md for the schema.

Supported models

Architecture (HF class) Variants Hardware Status
BailingMoeV2ForCausalLM inclusionAI/Ling-mini-2.0 T3K (1×8) full TTNN
ResNetForImageClassification microsoft/resnet-{18,34,50,101,152} N150 (1×1) full TTNN
Gemma4ForConditionalGeneration google/gemma-4-{E2B,E4B}-it N150 (1×1) partial TTNN
Gemma4ForConditionalGeneration google/gemma-4-{31B,26B-A4B}-it T3K (1×8) CPU-first via budget gate
Qwen3VLForConditionalGeneration Qwen/Qwen3-VL-{2B,4B,8B,32B}-Instruct N150 / T3K partial TTNN

See docs/supported_models.md for the full per-variant matrix and examples/e2e/README.md for the per-script index.

From-source (contributors)

For the bundled e2e demos and the test suite; a built tt-metal at $TT_METAL_HOME provides ttnn. scripts/bootstrap_venv.sh is optional (wires ttnn, checks sfpi, pip install -e . + pre-commit hook); with $TT_METAL_HOME set, a plain pip install -e . also works because import tt_symbiote auto-wires the source-built ttnn. The layout mirrors transformers/src/transformers/:

src/tt_symbiote/
├── __init__.py    # public API (Auto* + set_device + register_modules + …)
├── core/          # TTNNModule, run_config, arch helpers (internal)
├── models/auto/   # transformers Auto* loaders
├── models/<name>/ # per-model recipes (bailing_moe_v2, gemma4, qwen3_vl, resnet, …)
├── modules/       # generic TTNN building blocks (Linear, Embedding, …)
└── utils/         # set_device, register_modules, compatibility, hf_compat, …

Examples and tests live at the repo root (not inside the package), under examples/e2e/ and tests/. See docs/development/PROJECT_PROPOSAL.md for the layout rationale and the porting recipe contract.

Links

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tt_symbiote-0.1.5.tar.gz (294.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tt_symbiote-0.1.5-py3-none-any.whl (337.4 kB view details)

Uploaded Python 3

File details

Details for the file tt_symbiote-0.1.5.tar.gz.

File metadata

  • Download URL: tt_symbiote-0.1.5.tar.gz
  • Upload date:
  • Size: 294.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tt_symbiote-0.1.5.tar.gz
Algorithm Hash digest
SHA256 c346f027e4110b175635a9d6e7b7b203fd3c7f4b3593e6af44388eda793ed622
MD5 b28560b9baa3c23a175b356ff9add95f
BLAKE2b-256 70736ea56fdfc47a5e4e414742bf84d2d0a06c9b6fedb757a650cb75165b6a40

See more details on using hashes here.

Provenance

The following attestation bundles were made for tt_symbiote-0.1.5.tar.gz:

Publisher: release.yml on alnah005/tt_symbiote

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tt_symbiote-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: tt_symbiote-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 337.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tt_symbiote-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 dfdf167b6298d0d223c0941be08bdca387fd242b032d2bb4e00aaffebc5c8f2b
MD5 a7cb35a223b95307f93b4ec769da6c00
BLAKE2b-256 e6bb17e24a1a0b1c2a97168c2914a40e33e40df8ab6607d20a207705b36b46bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for tt_symbiote-0.1.5-py3-none-any.whl:

Publisher: release.yml on alnah005/tt_symbiote

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page