Skip to content

Commit 85970c0

Browse files
authored
ci: aarch64: don't run performance tests on cobalt (#2687)
1 parent 2e88298 commit 85970c0

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/ci-aarch64.yml

+6-7
Original file line numberDiff line numberDiff line change
@@ -174,15 +174,14 @@ jobs:
174174

175175
## Performance test steps ##
176176
- name: Checkout oneDNN base
177-
if: ${{ github.event_name == 'pull_request' && matrix.config.build == 'Release' }}
177+
if: ${{ github.event_name == 'pull_request' && matrix.config.build == 'Release' && matrix.config.name != 'cb100' }}
178178
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
179179
with:
180180
ref: ${{ github.base_ref }}
181181
path: oneDNN_base
182182

183-
# TODO :: Create separate pipeline to cache oneDNN base
184183
- name: Configure oneDNN base
185-
if: ${{ github.event_name == 'pull_request' && matrix.config.build == 'Release' }}
184+
if: ${{ github.event_name == 'pull_request' && matrix.config.build == 'Release' && matrix.config.name != 'cb100' }}
186185
run: ${{ github.workspace }}/oneDNN/.github/automation/aarch64/build.sh
187186
working-directory: ${{ github.workspace }}/oneDNN_base
188187
env:
@@ -196,29 +195,29 @@ jobs:
196195
ONEDNN_THREADING: ${{ matrix.config.threading }}
197196

198197
- name: Build oneDNN base
199-
if: ${{ github.event_name == 'pull_request' && matrix.config.build == 'Release' }}
198+
if: ${{ github.event_name == 'pull_request' && matrix.config.build == 'Release' && matrix.config.name != 'cb100' }}
200199
run: ${{ github.workspace }}/oneDNN/.github/automation/aarch64/build.sh
201200
working-directory: ${{ github.workspace }}/oneDNN_base
202201
env:
203202
ONEDNN_ACTION: build
204203

205204
- name: Run performance tests
206205
shell: bash
207-
if: ${{ github.event_name == 'pull_request' && matrix.config.build == 'Release' }}
206+
if: ${{ github.event_name == 'pull_request' && matrix.config.build == 'Release' && matrix.config.name != 'cb100' }}
208207
run: |
209208
OMP_NUM_THREADS=4 bash ${{ github.workspace }}/oneDNN/.github/automation/performance/bench_performance.sh ${{ github.workspace }}/oneDNN_base/build/tests/benchdnn/benchdnn ${{ github.workspace }}/oneDNN/build/tests/benchdnn/benchdnn base.txt new.txt
210209
OMP_NUM_THREADS=16 bash ${{ github.workspace }}/oneDNN/.github/automation/performance/bench_performance.sh ${{ github.workspace }}/oneDNN_base/build/tests/benchdnn/benchdnn ${{ github.workspace }}/oneDNN/build/tests/benchdnn/benchdnn base.txt new.txt
211210
env:
212211
DYLD_LIBRARY_PATH: ${{ github.workspace }}/ComputeLibrary/build
213212

214213
- name: Compare performance test results
215-
if: ${{ github.event_name == 'pull_request' && matrix.config.build == 'Release' }}
214+
if: ${{ github.event_name == 'pull_request' && matrix.config.build == 'Release' && matrix.config.name != 'cb100' }}
216215
id: performance-test
217216
continue-on-error: true
218217
run: python ${{ github.workspace }}/oneDNN/.github/automation/performance/benchdnn_comparison.py base.txt new.txt
219218

220219
- name: Check performance test failure
221-
if: ${{ github.event_name == 'pull_request' && matrix.config.build == 'Release' && steps.performance-test.outputs.pass != 'True' }}
220+
if: ${{ steps.performance-test.outputs.pass != 'True' && github.event_name == 'pull_request' && matrix.config.build == 'Release' && matrix.config.name != 'cb100' }}
222221
run: echo "::warning file=.github/workflows/ci-aarch64.yml,line=1,col=1::${{ steps.performance-test.outputs.message }}"
223222

224223
# This job adds a check named "CI AArch64" that represents overall

0 commit comments

Comments
 (0)