Skip to content

Commit 49fe3b1

Browse files
authored
[CI] Migrate action runners to dedicated one (#127)
* new runner * new runner * fix pre commit * update runner card usage
1 parent 86dd31f commit 49fe3b1

File tree

3 files changed

+11
-14
lines changed

3 files changed

+11
-14
lines changed

.github/workflows/triton_xpu_backend_e2e_ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,14 +130,13 @@ jobs:
130130
source ${HOME}/env_triton.sh ${{ github.event.inputs.oneapi }}
131131
pip install pandas
132132
cd ${HOME}/triton-preci
133-
bash set_proxy.sh
134133
cp ${HOME}/triton-preci/triton_src/third_party/intel_xpu_backend/.github/scripts/inductor_xpu_test.sh ${HOME}/triton-preci/pytorch
135134
cd ${HOME}/triton-preci/pytorch
136135
rm -rf inductor_log
137136
bash inductor_xpu_test.sh huggingface amp_bf16 inference accuracy xpu 0 static 2 0 & \
138-
bash inductor_xpu_test.sh huggingface amp_bf16 inference accuracy xpu 1 static 2 1 & \
139-
bash inductor_xpu_test.sh huggingface amp_fp16 inference accuracy xpu 2 static 2 0 & \
140-
bash inductor_xpu_test.sh huggingface amp_fp16 inference accuracy xpu 3 static 2 1 & wait
137+
bash inductor_xpu_test.sh huggingface amp_bf16 inference accuracy xpu 2 static 2 1 & \
138+
bash inductor_xpu_test.sh huggingface amp_fp16 inference accuracy xpu 3 static 2 0 & wait
139+
bash inductor_xpu_test.sh huggingface amp_fp16 inference accuracy xpu 0 static 2 1 & wait
141140
cp ${HOME}/triton-preci/triton_src/sw_info.log inductor_log/
142141
143142
- name: Test Results Overview

.github/workflows/triton_xpu_backend_e2e_nightly.yml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -129,13 +129,12 @@ jobs:
129129
source ${HOME}/miniconda3/bin/activate triton-nightly-test
130130
source ${HOME}/env_triton.sh ${{ github.event.inputs.oneapi }}
131131
cd ${HOME}/triton-nightly
132-
bash set_proxy.sh
133132
cd ${HOME}/triton-nightly/pytorch
134133
rm -rf inductor_log
135134
bash inductor_xpu_test.sh huggingface amp_bf16 inference accuracy xpu 0 & \
136-
bash inductor_xpu_test.sh huggingface amp_bf16 training accuracy xpu 1 & \
137-
bash inductor_xpu_test.sh huggingface amp_fp16 inference accuracy xpu 2 & \
138-
bash inductor_xpu_test.sh huggingface amp_fp16 training accuracy xpu 3 & wait
135+
bash inductor_xpu_test.sh huggingface amp_bf16 training accuracy xpu 2 & \
136+
bash inductor_xpu_test.sh huggingface amp_fp16 inference accuracy xpu 3 & wait
137+
bash inductor_xpu_test.sh huggingface amp_fp16 training accuracy xpu 0 & wait
139138
cp ${HOME}/triton-nightly/triton_src/sw_info.log inductor_log/
140139
141140
- name: ACC Test Results Overview
@@ -226,12 +225,11 @@ jobs:
226225
source ${HOME}/miniconda3/bin/activate triton-nightly-test
227226
source ${HOME}/env_triton.sh ${{ github.event.inputs.oneapi }}
228227
cd ${HOME}/triton-nightly
229-
bash set_proxy.sh
230228
cd ${HOME}/triton-nightly/pytorch
231229
bash inductor_xpu_test.sh huggingface amp_bf16 inference performance xpu 0 & \
232-
bash inductor_xpu_test.sh huggingface amp_bf16 training performance xpu 1 & \
233-
bash inductor_xpu_test.sh huggingface amp_fp16 inference performance xpu 2 & \
234-
bash inductor_xpu_test.sh huggingface amp_fp16 training performance xpu 3 & wait
230+
bash inductor_xpu_test.sh huggingface amp_bf16 training performance xpu 2 & \
231+
bash inductor_xpu_test.sh huggingface amp_fp16 inference performance xpu 3 & wait
232+
bash inductor_xpu_test.sh huggingface amp_fp16 training performance xpu 0 & wait
235233
236234
- name: Perf Test Results Generate and Overview
237235
run: |
@@ -260,4 +258,4 @@ jobs:
260258
repo="${{ github.repository }}"
261259
gh --repo $repo issue comment 123 \
262260
--body "E2E Nightly Failed $(date +'%Y-%m-%d'),See: $build_url
263-
cc $notificiation_list"
261+
cc $notification_list"

.github/workflows/triton_xpu_backend_nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,4 +214,4 @@ jobs:
214214
repo="${{ github.repository }}"
215215
gh --repo $repo issue comment 123 \
216216
--body "UT Nightly Failed $(date +'%Y-%m-%d'),See: $build_url
217-
cc $notificiation_list"
217+
cc $notification_list"

0 commit comments

Comments
 (0)