-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PyTorch is [patching the version number](https://github.com/pytorch/pytorch/blob/main/.github/scripts/build_triton_wheel.py#L44) when building Triton wheels - possibly due to some issue syncing version between Triton and ROCM. Technically version 3.1.0 is the version we just "released" with PyTorch 2.5 so the current working version should be a higher number, but since upstream PyTorch is still using a Triton pin from the release branch, we need to make this change to advance our upstream pin. Close #2467
- Loading branch information
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -700,7 +700,7 @@ def get_install_requires(): | |
|
||
setup( | ||
name=os.environ.get("TRITON_WHEEL_NAME", "triton"), | ||
version="3.0.0" + get_git_commit_hash() + os.environ.get("TRITON_WHEEL_VERSION_SUFFIX", ""), | ||
version="3.1.0" + get_git_commit_hash() + os.environ.get("TRITON_WHEEL_VERSION_SUFFIX", ""), | ||
author="Philippe Tillet", | ||
author_email="[email protected]", | ||
description="A language and compiler for custom Deep Learning operations", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters