Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
```

Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ version = "0.0.1"

[project.optional-dependencies]
triton = [
"triton @ git+https://github.com/triton-lang/triton.git",
"triton_kernels @ git+https://github.com/triton-lang/triton.git#subdirectory=python/triton_kernels",
"triton",
"safetensors>=0.5.3",
"torch>=2.7.0",
]
Expand Down
Loading