Skip to content

Commit 9b660b9

Browse files
committed
Revert "update"
This reverts commit 54ea2f0.
1 parent 54ea2f0 commit 9b660b9

File tree

3 files changed

+23
-23
lines changed

3 files changed

+23
-23
lines changed

.github/workflows/_linux_e2e.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
# CICD launch
9292
- name: Nightly Huggingface BF16 & FP16 Training Test
9393
if: ${{ contains(inputs.test_type, 'cicd') }}
94-
uses: .github/actions/inductor-xpu-e2e-test
94+
uses: ./.github/actions/inductor-xpu-e2e-test
9595
with:
9696
env_prepare: true
9797
suite: huggingface
@@ -100,7 +100,7 @@ jobs:
100100
scenario: accuracy,performance
101101
- name: Nightly Torchbench BF16 Training Test
102102
if: ${{ contains(inputs.test_type, 'cicd') }}
103-
uses: .github/actions/inductor-xpu-e2e-test
103+
uses: ./.github/actions/inductor-xpu-e2e-test
104104
with:
105105
env_prepare: true
106106
suite: torchbench
@@ -109,7 +109,7 @@ jobs:
109109
scenario: accuracy,performance
110110
- name: Nightly Timm_models BF16 Training Test
111111
if: ${{ contains(inputs.test_type, 'cicd') }}
112-
uses: .github/actions/inductor-xpu-e2e-test
112+
uses: ./.github/actions/inductor-xpu-e2e-test
113113
with:
114114
env_prepare: true
115115
suite: timm_models
@@ -120,7 +120,7 @@ jobs:
120120
# Nihglty launch
121121
- name: Nightly Huggingface Full Test
122122
if: ${{ contains(inputs.test_type, 'nightly') }}
123-
uses: .github/actions/inductor-xpu-e2e-test
123+
uses: ./.github/actions/inductor-xpu-e2e-test
124124
with:
125125
env_prepare: true
126126
suite: huggingface
@@ -129,7 +129,7 @@ jobs:
129129
scenario: accuracy,performance
130130
- name: Nightly Torchbench BF16 Training Test
131131
if: ${{ contains(inputs.test_type, 'nightly') }}
132-
uses: .github/actions/inductor-xpu-e2e-test
132+
uses: ./.github/actions/inductor-xpu-e2e-test
133133
with:
134134
env_prepare: true
135135
suite: torchbench
@@ -138,7 +138,7 @@ jobs:
138138
scenario: accuracy,performance
139139
- name: Nightly Timm_models FP16 Training Test
140140
if: ${{ contains(inputs.test_type, 'nightly') }}
141-
uses: .github/actions/inductor-xpu-e2e-test
141+
uses: ./.github/actions/inductor-xpu-e2e-test
142142
with:
143143
env_prepare: true
144144
suite: timm_models
@@ -147,7 +147,7 @@ jobs:
147147
scenario: accuracy,performance
148148
- name: Nightly PT2E Full Test
149149
if: ${{ contains(inputs.test_type, 'nightly') }}
150-
uses: .github/actions/pt2e
150+
uses: ./.github/actions/pt2e
151151
with:
152152
env_prepare: true
153153
dt: float32,int8
@@ -156,7 +156,7 @@ jobs:
156156
# Weekly launch
157157
- name: Nightly Huggingface Full Test
158158
if: ${{ contains(inputs.test_type, 'weekly') }}
159-
uses: .github/actions/inductor-xpu-e2e-test
159+
uses: ./.github/actions/inductor-xpu-e2e-test
160160
with:
161161
env_prepare: true
162162
suite: huggingface
@@ -165,7 +165,7 @@ jobs:
165165
scenario: accuracy,performance
166166
- name: Nightly Torchbench BF16 Training Test
167167
if: ${{ contains(inputs.test_type, 'weekly') }}
168-
uses: .github/actions/inductor-xpu-e2e-test
168+
uses: ./.github/actions/inductor-xpu-e2e-test
169169
with:
170170
env_prepare: true
171171
suite: torchbench
@@ -174,7 +174,7 @@ jobs:
174174
scenario: accuracy,performance
175175
- name: Nightly Timm_models FP16 Training Test
176176
if: ${{ contains(inputs.test_type, 'weekly') }}
177-
uses: .github/actions/inductor-xpu-e2e-test
177+
uses: ./.github/actions/inductor-xpu-e2e-test
178178
with:
179179
env_prepare: true
180180
suite: timm_models
@@ -183,7 +183,7 @@ jobs:
183183
scenario: accuracy,performance
184184
- name: Nightly PT2E Full Test
185185
if: ${{ contains(inputs.test_type, 'weekly') }}
186-
uses: .github/actions/pt2e
186+
uses: ./.github/actions/pt2e
187187
with:
188188
env_prepare: true
189189
dt: float32,int8
@@ -192,7 +192,7 @@ jobs:
192192
# On-demand launch
193193
- name: OnDemand Test (${{ inputs.suite }} ${{ inputs.dt }} ${{ inputs.mode }} ${{ inputs.scenario }})
194194
if: ${{ contains(inputs.test_type, 'ondemand') && inputs.suite != 'pt2e' }}
195-
uses: .github/actions/inductor-xpu-e2e-test
195+
uses: ./.github/actions/inductor-xpu-e2e-test
196196
with:
197197
env_prepare: true
198198
suite: ${{ inputs.suite }}
@@ -201,7 +201,7 @@ jobs:
201201
scenario: ${{ inputs.scenario }}
202202
- name: OnDemand PT2E Test (${{ inputs.suite }} ${{ inputs.dt }} ${{ inputs.mode }} ${{ inputs.scenario }})
203203
if: ${{ contains(inputs.test_type, 'ondemand') && contains(inputs.suite, 'pt2e') }}
204-
uses: .github/actions/pt2e
204+
uses: ./.github/actions/pt2e
205205
with:
206206
env_prepare: true
207207
dt: ${{ inputs.dt }}
@@ -271,7 +271,7 @@ jobs:
271271
run: |
272272
pip install pandas requests
273273
if [ "${{ inputs.suite }}" != 'pt2e' ];then
274-
bash .github/scripts/e2e_summary.sh ./target ./baseline >> ${GITHUB_STEP_SUMMARY}
274+
bash ./.github/scripts/e2e_summary.sh ./target ./baseline >> ${GITHUB_STEP_SUMMARY}
275275
exit_label=$(awk 'BEGIN{sum=0}{if($2>0){sum++}}END{print sum}' /tmp/tmp-result.txt)
276276
if [ ${exit_label} -ne 0 ];then
277277
grep -E "(Real failed|to passed|Warning timeout).*: [1-9]|Summary for" /tmp/tmp-*.txt |grep -E "failed|passed|timeout" -B 1

.github/workflows/nightly_ondemand.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
needs: [Conditions-Filter]
109109
name: linux
110110
secrets: inherit
111-
uses: .github/workflows/_linux_build.yml
111+
uses: ./.github/workflows/_linux_build.yml
112112
with:
113113
runner: pvc_rolling
114114
test_type: ${{ needs.Conditions-Filter.outputs.test_type }}
@@ -122,7 +122,7 @@ jobs:
122122
if: ${{ github.event_name == 'schedule' || contains(inputs.ut, 'p') }}
123123
name: linux
124124
needs: [Conditions-Filter, Linux-Nightly-Ondemand-Build]
125-
uses: .github/workflows/_linux_ut.yml
125+
uses: ./.github/workflows/_linux_ut.yml
126126
with:
127127
runner: linux.idc.xpu
128128
test_type: ${{ needs.Conditions-Filter.outputs.test_type }}
@@ -137,7 +137,7 @@ jobs:
137137
name: linux
138138
permissions: write-all
139139
needs: [Conditions-Filter, Linux-Nightly-Ondemand-Build]
140-
uses: .github/workflows/_linux_e2e.yml
140+
uses: ./.github/workflows/_linux_e2e.yml
141141
with:
142142
runner: pvc_rolling
143143
test_type: ${{ needs.Conditions-Filter.outputs.test_type }}
@@ -155,7 +155,7 @@ jobs:
155155
name: linux-nightly-ondemand-rolling / Op_microbench
156156
permissions: write-all
157157
needs: [Conditions-Filter, Linux-Nightly-Ondemand-Build]
158-
uses: .github/workflows/_linux_op_benchmark.yml
158+
uses: ./.github/workflows/_linux_op_benchmark.yml
159159
with:
160160
runner: pvc_rolling
161161
test_type: ${{ needs.Conditions-Filter.outputs.test_type }}
@@ -167,7 +167,7 @@ jobs:
167167
Windows-Nightly-Ondemand-UT-Tests:
168168
if: ${{ github.event_name == 'schedule' }}
169169
name: Windows-nightly-ondemand
170-
uses: .github/workflows/_windows_ut.yml
170+
uses: ./.github/workflows/_windows_ut.yml
171171
with:
172172
ut: ${{ github.event_name == 'schedule' && 'op_extended,torch_xpu' || inputs.ut }}
173173
python: ${{ github.event_name == 'schedule' && '3.10' || '3.10' }}

.github/workflows/pull.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
if: ${{ !contains(needs.conditions-filter.outputs.disabled_tests, 'disable_all')}}
9898
needs: [conditions-filter]
9999
secrets: inherit
100-
uses: .github/workflows/_linux_build.yml
100+
uses: ./.github/workflows/_linux_build.yml
101101
with:
102102
runner: pvc_rolling
103103
test_type: build-cicd
@@ -107,7 +107,7 @@ jobs:
107107
linux-ut:
108108
name: linux
109109
needs: [conditions-filter, linux-build]
110-
uses: .github/workflows/_linux_ut.yml
110+
uses: ./.github/workflows/_linux_ut.yml
111111
with:
112112
runner: linux.idc.xpu
113113
test_type: build-cicd
@@ -120,7 +120,7 @@ jobs:
120120
name: linux
121121
permissions: write-all
122122
needs: [conditions-filter, linux-build]
123-
uses: .github/workflows/_linux_e2e.yml
123+
uses: ./.github/workflows/_linux_e2e.yml
124124
with:
125125
runner: pvc_rolling
126126
test_type: build-cicd
@@ -130,7 +130,7 @@ jobs:
130130
name: windows
131131
if: ${{ !(contains(needs.conditions-filter.outputs.disabled_tests, 'disable_all') || contains(needs.conditions-filter.outputs.disabled_tests, 'disable_win')) }}
132132
needs: [conditions-filter]
133-
uses: .github/workflows/_windows_ut.yml
133+
uses: ./.github/workflows/_windows_ut.yml
134134
with:
135135
ut: op_extended,torch_xpu
136136
runner: Windows_CI

0 commit comments

Comments
 (0)