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, …) plus the ttnn runtime from PyPI. The [vision] extra adds torchvision, which HF's multimodal AutoProcessor classes require (mirrors the upstream transformers[vision] extra).

One ttnn runtime per release. This release pins ttnn==0.68.0. A process can import exactly one ttnn, so each model also 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 (see docs/development/ttnn_pinning.md). Contributors can override the pinned wheel with a tt-metal source build at $TT_METAL_HOME; import tt_symbiote auto-wires it.

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.4.tar.gz (293.6 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.4-py3-none-any.whl (336.3 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: tt_symbiote-0.1.4.tar.gz
  • Upload date:
  • Size: 293.6 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.4.tar.gz
Algorithm Hash digest
SHA256 7ea6d5a9b3416d946f180d1a72ec8a30c1e5e8c10818d6b70f8ed8771148dcde
MD5 a7a03ed77210306e9a0b1ef6418230e1
BLAKE2b-256 74a793e252faaba0b932497bc9f3cde1f0d21428218be37f5ae511b327971af7

See more details on using hashes here.

Provenance

The following attestation bundles were made for tt_symbiote-0.1.4.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.4-py3-none-any.whl.

File metadata

  • Download URL: tt_symbiote-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 336.3 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.4-py3-none-any.whl
Algorithm Hash digest
SHA256 cea748422622258dc2400e3271a3d29d1725e820aa0e5c5da0182937fe79ccac
MD5 b7e322987df8e699db7b7277fae2383e
BLAKE2b-256 b8abbaf60b97a5c735659387c94739089bd4e6206e9af92a5d80a1601c8278e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for tt_symbiote-0.1.4-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