Skip to content

toyaix/tritonllm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TritonLLM: LLM Inference via Triton 🚀

Flexible and modular LLM inference for mini-batch

🔗 tritonllm.top

English | 中文

TritonLLM implements modular Triton-backed LLM inference with an emphasis on kernel optimization using CUBINs. The initial target is the gpt-oss model, executed via triton_runner and will be tuned for RTX 5090 (sm120). Now support an NVIDIA GPU with compute capability sm120(RTX 5090, RTX PRO 6000, etc.), sm90(H100, H200, H20, etc.), sm80(A800, A100), sm89(RTX 4090, RTX 6000, L40, etc.) and sm86(RTX 3090, A10, etc.). If the GPU memory is greater than or equal to 24 GB, you can run the gpt-oss-20b; if it is greater than or equal to 80 GB, you can run the gpt-oss-120b.

The project is compatible with PyTorch 2.10 and runs correctly in that environment. However, for the best performance, we recommend using a PyTorch/Triton combination equivalent to PyTorch 2.8 with Triton 3.4.0.

Quick Installation

Install a compatible PyTorch environment first, then install the latest stable release of tritonllm from pip. tritonllm does not pin torch or triton at package install time, so you can match versions to your CUDA driver and deployment environment:

pip install torch

Then install tritonllm:

pip install tritonllm

To enable the optional triton_runner JIT backend:

pip install "tritonllm[runner]"

🚀 Command Line Interface (CLI)

To quickly launch with the gpt-oss-20b model and automatically download it from ModelScope:

tritonllm

You can explore all available options with:

tritonllm --help

Usage

usage: tritonllm [-h] [-r REASONING_EFFORT] [-a] [-b] [--show-browser-results] [-p]
                 [--developer-message DEVELOPER_MESSAGE] [-c CONTEXT] [--raw]
                 [FILE]

Positional arguments

Argument Description
FILE Path to the SafeTensors checkpoint. If not provided, downloads the 20B model from ModelScope. You can also run tritonllm 120b to directly use the 120B model from ModelScope.

Options

Option Description
-h, --help Show this help message and exit.
-r REASONING_EFFORT, --reasoning-effort REASONING_EFFORT Set reasoning effort level (low / medium / high). Default: high.
-a, --apply-patch Make the internal apply_patch function available to the model. Default: False.
-b, --browser Enable browser tool so the model can fetch web content. Default: False.
--show-browser-results Show fetched browser results in the output. Default: False.
-p, --python Enable Python execution tool (run Python snippets). Default: False.
--developer-message DEVELOPER_MESSAGE Provide a developer/system message that influences the model’s behavior.
-c CONTEXT, --context CONTEXT Maximum context length (tokens). Default: 8192.
--raw Raw mode. Disable Harmony encoding and render plain output. Default: False.

Install from source

git clone https://github.com/toyaix/tritonllm
cd tritonllm

pip install -e .

Install the optional runner backend from source:

pip install -e ".[runner]"

JIT backend selection

By default the project keeps using @triton.jit. To switch the package-managed kernels to @triton_runner.jit, set:

export TRITON_RUNNER_PROD=1

If triton_runner is selected without the optional dependency installed, the import will fail fast with a clear error.

example code

from tritonllm.gpt_oss.chat import chat, get_parser_args


if __name__ == "__main__":
    chat(get_parser_args())

Run

# test
python examples/generate.py

# chat
python examples/chat.py

Benchmark

I am currently optimizing Tokens Per Second(TPS), the number of tokens generated per second during autoregressive decoding.

python examples/bench_chat.py

# show output
python examples/only_output.py

Run use streamlit with Responses API(has bug)

You can also use Streamlit to interact with the Responses API, providing a convenient web interface for managing the project.

pip install streamlit

python -m gpt_oss.responses_api.serve

streamlit run streamlit/streamlit_chat.py

triton_kernels

triton_kernels is a set of kernels that enable fast moe on different architectures. These kernels are compatible with different precision (e.g bf16, mxfp4)

Original code here https://github.com/triton-lang/triton/tree/main/python/triton_kernels

The current version is the following commit de4376e90a3c2b5ca30ada25a50cccadeadf7f1a and use BlackwellMXValueLayout with commit 19ca20fda4cfd3ae0d3eabde5e547db581fbb7ee。

About

LLM Inference via Triton (Flexible & Modular): Focused on Kernel Optimization using CUBIN binaries, Starting from gpt-oss Model

Topics

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages