build triton from scratch

This commit is contained in:
Zhuohan Li
2025-08-05 11:27:09 -07:00
parent 3f71c48945
commit 3b035f3fa9

View File

@@ -187,6 +187,13 @@ We also include an optimized reference implementation that uses [an optimized tr
To install the reference Triton implementation run
```shell
# You need to install triton from source to use the triton implementation
git clone https://github.com/triton-lang/triton
cd triton/
pip install -r python/requirements.txt
pip install -e . --verbose --no-build-isolation
# Install the gpt-oss triton implementation
pip install -e .[triton]
```