Skip to content

[CI]Update triton ascend version in 3.2.0#6067

Merged
wangxiyuan merged 1 commit intovllm-project:mainfrom
Meihan-chen:triton_ci
Jan 21, 2026
Merged

[CI]Update triton ascend version in 3.2.0#6067
wangxiyuan merged 1 commit intovllm-project:mainfrom
Meihan-chen:triton_ci

Conversation

@Meihan-chen
Copy link
Copy Markdown
Contributor

@Meihan-chen Meihan-chen commented Jan 21, 2026

What this PR does / why we need it?

update triton ascend version in 3.2.0

Does this PR introduce any user-facing change?

How was this patch tested?

@github-actions github-actions bot added documentation Improvements or additions to documentation ci/build module:tests labels Jan 21, 2026
@github-actions
Copy link
Copy Markdown
Contributor

👋 Hi! Thank you for contributing to the vLLM Ascend project. The following points will speed up your PR merge:‌‌

  • A PR should do only one thing, smaller PRs enable faster reviews.
  • Every PR should include unit tests and end-to-end tests ‌to ensure it works and is not broken by other future PRs.
  • Write the commit message by fulfilling the PR description to help reviewer and future developers understand.

If CI fails, you can run linting and testing checks locally according Contributing and Testing.

Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request updates the triton-ascend version across several files. My main feedback is to avoid hardcoding the version string in multiple places to improve maintainability. I've suggested using a variable in the shell script and Sphinx substitutions in the documentation files to centralize the version string. This will make future updates simpler and less error-prone.

Comment thread docs/source/tutorials/DeepSeek-V3.2.md Outdated

```bash
python3 -m pip install -i https://test.pypi.org/simple/ triton-ascend==3.2.0.dev20260105
python3 -m pip install -i https://test.pypi.org/simple/ triton-ascend==3.2.0.dev2026012011
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

To avoid hardcoding the version and improve maintainability, please use a Sphinx substitution here. This makes it consistent with other version variables like |vllm_ascend_version| and centralizes the configuration. You would need to define a new substitution, for example triton_ascend_version, in your Sphinx conf.py file.

Suggested change
python3 -m pip install -i https://test.pypi.org/simple/ triton-ascend==3.2.0.dev2026012011
python3 -m pip install -i https://test.pypi.org/simple/ triton-ascend==|triton_ascend_version|

Comment thread docs/source/tutorials/Qwen3-Next.md Outdated

```bash
python3 -m pip install -i https://test.pypi.org/simple/ triton-ascend==3.2.0.dev20260105
python3 -m pip install -i https://test.pypi.org/simple/ triton-ascend==3.2.0.dev2026012011
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

To avoid hardcoding the version and improve maintainability, please use a Sphinx substitution here. This makes it consistent with other version variables like |vllm_ascend_version| and centralizes the configuration. You would need to define a new substitution, for example triton_ascend_version, in your Sphinx conf.py file.

Suggested change
python3 -m pip install -i https://test.pypi.org/simple/ triton-ascend==3.2.0.dev2026012011
python3 -m pip install -i https://test.pypi.org/simple/ triton-ascend==|triton_ascend_version|

export PATH=/usr/local/Ascend/tools/bishengir/bin:$PATH
which bishengir-compile
python3 -m pip install -i https://test.pypi.org/simple/ triton-ascend==3.2.0.dev20260105
python3 -m pip install -i https://test.pypi.org/simple/ triton-ascend==3.2.0.dev2026012011
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The triton-ascend version is hardcoded here. This version string is also present in docs/source/tutorials/DeepSeek-V3.2.md and docs/source/tutorials/Qwen3-Next.md. To improve maintainability and avoid having to update it in multiple places, consider defining a variable for the version at the top of the script (e.g., TRITON_ASCEND_VERSION="3.2.0.dev2026012011") and using it here like triton-ascend==${TRITON_ASCEND_VERSION}.

@wxsIcey wxsIcey added ready read for review ready-for-test start test by label for PR labels Jan 21, 2026
@Meihan-chen Meihan-chen changed the title [CI]Update triton ascend version in 0120 [CI]Update triton ascend version in 3.2.0 Jan 21, 2026
Signed-off-by: Meihan-chen <jcccx.cmh@gmail.com>
@wangxiyuan wangxiyuan merged commit 53bfb38 into vllm-project:main Jan 21, 2026
20 checks passed
huangfeifei1995 pushed a commit to huangfeifei1995/vllm-ascend that referenced this pull request Jan 21, 2026
### What this PR does / why we need it?
update triton ascend version in 3.2.0

- vLLM version: v0.13.0
- vLLM main:
vllm-project/vllm@d682094

Signed-off-by: Meihan-chen <jcccx.cmh@gmail.com>
Signed-off-by: huangning1995 <huangning12@huawei.com>
huangfeifei1995 added a commit to huangfeifei1995/vllm-ascend that referenced this pull request Jan 21, 2026
845473182 pushed a commit to 845473182/vllm-ascend that referenced this pull request Jan 22, 2026
…to FIA_rebase

* 'main' of https://github.com/vllm-project/vllm-ascend:
  [CI] Upgrade CANN to 8.5.0 (vllm-project#6070)
  Default enable MLAPO (vllm-project#5952)
  [Doc] Supplement PD separation parameters of DeepSeek V3.1 (vllm-project#6053)
  [Ascend] perf: optimize rope embedding with triton kernel for huge performance gain (vllm-project#5918)
  [Ops] update causal_conv1d_update (vllm-project#5984)
  [CI]Update triton ascend version in 3.2.0 (vllm-project#6067)
  [bugfix] fix the complex and potentially problematic generate_kv_idx. (vllm-project#5957)
starmountain1997 pushed a commit to starmountain1997/vllm-ascend that referenced this pull request Jan 31, 2026
### What this PR does / why we need it?
update triton ascend version in 3.2.0

- vLLM version: v0.13.0
- vLLM main:
vllm-project/vllm@d682094

Signed-off-by: Meihan-chen <jcccx.cmh@gmail.com>
starmountain1997 pushed a commit to starmountain1997/vllm-ascend that referenced this pull request Jan 31, 2026
### What this PR does / why we need it?
update triton ascend version in 3.2.0

- vLLM version: v0.13.0
- vLLM main:
vllm-project/vllm@d682094

Signed-off-by: Meihan-chen <jcccx.cmh@gmail.com>
ZRJ026 pushed a commit to ZRJ026/vllm-ascend that referenced this pull request Feb 28, 2026
### What this PR does / why we need it?
update triton ascend version in 3.2.0

- vLLM version: v0.13.0
- vLLM main:
vllm-project/vllm@d682094

Signed-off-by: Meihan-chen <jcccx.cmh@gmail.com>
Signed-off-by: zrj026 <zhangrunjiang026@gmail.com>
maoxx241 pushed a commit to maoxx241/vllm-ascend that referenced this pull request Mar 2, 2026
### What this PR does / why we need it?
update triton ascend version in 3.2.0

- vLLM version: v0.13.0
- vLLM main:
vllm-project/vllm@d682094

Signed-off-by: Meihan-chen <jcccx.cmh@gmail.com>
ZRJ026 pushed a commit to ZRJ026/vllm-ascend that referenced this pull request Mar 4, 2026
### What this PR does / why we need it?
update triton ascend version in 3.2.0

- vLLM version: v0.13.0
- vLLM main:
vllm-project/vllm@d682094

Signed-off-by: Meihan-chen <jcccx.cmh@gmail.com>
Signed-off-by: zrj026 <zhangrunjiang026@gmail.com>
LCAIZJ pushed a commit to LCAIZJ/vllm-ascend that referenced this pull request Mar 7, 2026
### What this PR does / why we need it?
update triton ascend version in 3.2.0

- vLLM version: v0.13.0
- vLLM main:
vllm-project/vllm@d682094

Signed-off-by: Meihan-chen <jcccx.cmh@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

ci/build documentation Improvements or additions to documentation module:tests ready read for review ready-for-test start test by label for PR

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants