mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 00:21:07 +01:00
Should prevent regressions like the ones reported in https://github.com/pytorch/pytorch/issues/100104 from sneaking undetected. Same for `install_triton_wheel.sh` - always use packages from https://download.pytorch.org/whl/ <!-- copilot:poem --> ### <samp>🤖 Generated by Copilot at deda821</samp> > _`pip install` changed_ > _Only use PyTorch nightly_ > _Snowflake packages_ Pull Request resolved: https://github.com/pytorch/pytorch/pull/100183 Approved by: https://github.com/kit1980, https://github.com/pmeier
4 lines
248 B
Bash
Executable File
4 lines
248 B
Bash
Executable File
#!/bin/bash
|
|
# Updates Triton to the pinned version for this copy of PyTorch
|
|
pip install --index-url https://download.pytorch.org/whl/nightly/ "pytorch-triton==$(cat .ci/docker/triton_version.txt)+$(head -c 10 .ci/docker/ci_commit_pins/triton.txt)"
|