File tree Expand file tree Collapse file tree 2 files changed +14
-24
lines changed Expand file tree Collapse file tree 2 files changed +14
-24
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 63
63
run : |
64
64
apt-get update
65
65
apt-get install -y git
66
- ./.github/scripts/install_triton.sh
66
+ mkdir -p /tmp/$USER
67
+ cd /tmp/$USER
68
+ pip uninstall -y triton pytorch-triton || true
69
+ rm -rf triton/ || true
70
+ git clone https://github.com/triton-lang/triton.git
71
+ cd triton/
72
+ conda config --set channel_priority strict
73
+ conda install -y -c conda-forge conda=25.3.1 conda-libmamba-solver
74
+ conda config --set solver libmamba
75
+ conda install -y -c conda-forge gcc_linux-64=13 gxx_linux-64=13 gcc=13 gxx=13
76
+ pip install -r python/requirements.txt
77
+ MAX_JOBS=$(nproc) TRITON_PARALLEL_LINK_JOBS=2 pip install .
78
+ cd /tmp/$USER
79
+ rm -rf triton/
67
80
68
81
- name : Install Requirements
69
82
run : |
You can’t perform that action at this time.
0 commit comments