File tree Expand file tree Collapse file tree 1 file changed +1
-22
lines changed Expand file tree Collapse file tree 1 file changed +1
-22
lines changed Original file line number Diff line number Diff line change 8181 - name : Install PyTorch
8282 run : |
8383 source .venv/bin/activate
84- uv pip install -U --pre torch --index-url https://download.pytorch.org/whl/nightly/${{ inputs.runtime-version }}
85-
86- - name : Install Triton
87- run : |
88- set -x
89- source .venv/bin/activate
90- apt-get update
91- apt-get install -y git
92- apt-get install -y clang-14 clang++-14 zlib1g-dev
93- export CC=clang-14
94- export CXX=clang++-14
95- mkdir -p /tmp/$USER
96- cd /tmp/$USER
97- uv pip uninstall triton pytorch-triton || true
98- rm -rf triton/ || true
99- git clone https://github.com/triton-lang/triton.git
100- cd triton/
101- uv pip install -r python/requirements.txt
102- MAX_JOBS=$(nproc) TRITON_PARALLEL_LINK_JOBS=2 uv pip install .
103- cd /tmp/$USER
104- rm -rf triton/
105- python -c "import triton; print(f'Triton version: {triton.__version__}')"
84+ uv pip install -U "torch==2.9.*" --index-url https://download.pytorch.org/whl/test/${{ inputs.runtime-version }}
10685
10786 - name : Install Helion
10887 run : |
You can’t perform that action at this time.
0 commit comments