@@ -174,15 +174,14 @@ jobs:
174
174
175
175
# # Performance test steps ##
176
176
- 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' }}
178
178
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
179
179
with :
180
180
ref : ${{ github.base_ref }}
181
181
path : oneDNN_base
182
182
183
- # TODO :: Create separate pipeline to cache oneDNN base
184
183
- 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' }}
186
185
run : ${{ github.workspace }}/oneDNN/.github/automation/aarch64/build.sh
187
186
working-directory : ${{ github.workspace }}/oneDNN_base
188
187
env :
@@ -196,29 +195,29 @@ jobs:
196
195
ONEDNN_THREADING : ${{ matrix.config.threading }}
197
196
198
197
- 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' }}
200
199
run : ${{ github.workspace }}/oneDNN/.github/automation/aarch64/build.sh
201
200
working-directory : ${{ github.workspace }}/oneDNN_base
202
201
env :
203
202
ONEDNN_ACTION : build
204
203
205
204
- name : Run performance tests
206
205
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' }}
208
207
run : |
209
208
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
210
209
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
211
210
env :
212
211
DYLD_LIBRARY_PATH : ${{ github.workspace }}/ComputeLibrary/build
213
212
214
213
- 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' }}
216
215
id : performance-test
217
216
continue-on-error : true
218
217
run : python ${{ github.workspace }}/oneDNN/.github/automation/performance/benchdnn_comparison.py base.txt new.txt
219
218
220
219
- 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 ' }}
222
221
run : echo "::warning file=.github/workflows/ci-aarch64.yml,line=1,col=1::${{ steps.performance-test.outputs.message }}"
223
222
224
223
# This job adds a check named "CI AArch64" that represents overall
0 commit comments