@@ -35,18 +35,24 @@ permissions: read-all
35
35
36
36
jobs :
37
37
macos :
38
- name : macOS
39
38
runs-on : macos-14
40
39
strategy :
41
40
matrix :
42
- compiler : [
43
- {CC: clang, CXX: clang++},
44
- {CC: gcc-14, CXX: g++-14}
45
- ]
46
- config : [
47
- {CMAKE_BUILD_TYPE: Debug, ACL_WITH_ASSERTS: '1'},
48
- {CMAKE_BUILD_TYPE: Release, ACL_WITH_ASSERTS: '0'}
49
- ]
41
+ compiler : [{ CC: clang, CXX: clang++ }, { CC: gcc-14, CXX: g++-14 }]
42
+ config :
43
+ [
44
+ {
45
+ CMAKE_BUILD_TYPE : Debug,
46
+ ACL_WITH_ASSERTS : ' 1' ,
47
+ IGNORED_TEST_FAILS : ' cpu-primitives-deconvolution-cpp|test_benchdnn_modeC_lnorm_smoke_cpu|test_benchdnn_modeC_brgemm_smoke_cpu'
48
+ },
49
+ {
50
+ CMAKE_BUILD_TYPE : Release,
51
+ ACL_WITH_ASSERTS : ' 0' ,
52
+ IGNORED_TEST_FAILS : ' cpu-primitives-deconvolution-cpp|test_benchdnn_modeC_lnorm_smoke_cpu'
53
+ }
54
+ ]
55
+ name : macOS (${{ matrix.compiler.CC }}, ${{ matrix.config.CMAKE_BUILD_TYPE }})
50
56
steps :
51
57
- name : Get number of CPU cores
52
58
uses : SimenB/github-actions-cpu-cores@97ba232459a8e02ff6121db9362b09661c875ab8 # v2.0.0
85
91
CC : ${{ matrix.compiler.CC }}
86
92
CXX : ${{ matrix.compiler.CXX }}
87
93
- name : Configure oneDNN
88
- run : cmake -B${{ github.workspace }}/oneDNN/build -S${{ github.workspace }}/oneDNN -DDNNL_AARCH64_USE_ACL=ON -DONEDNN_BUILD_GRAPH=0 -DONEDNN_WERROR=OFF -DDNNL_BUILD_FOR_CI=ON -DCMAKE_BUILD_TYPE=${{ matrix.config.CMAKE_BUILD_TYPE }}
94
+ run : cmake -B${{ github.workspace }}/oneDNN/build -S${{ github.workspace }}/oneDNN -DDNNL_AARCH64_USE_ACL=ON -DONEDNN_BUILD_GRAPH=0 -DONEDNN_WERROR=OFF -DDNNL_BUILD_FOR_CI=ON -DONEDNN_TEST_SET=SMOKE - DCMAKE_BUILD_TYPE=${{ matrix.config.CMAKE_BUILD_TYPE }}
89
95
working-directory : ${{ github.workspace }}/oneDNN
90
96
env :
91
97
DYLD_LIBRARY_PATH : ${{ github.workspace }}/ComputeLibrary/lib
@@ -98,3 +104,11 @@ jobs:
98
104
env :
99
105
DYLD_LIBRARY_PATH : ${{ github.workspace }}/ComputeLibrary/lib
100
106
ACL_ROOT_DIR : ${{ github.workspace }}/ComputeLibrary
107
+ # Only run smoke tests for clang. We only test gcc for build.
108
+ # Failure list currently depends on config. Exclude current failures.
109
+ - if : matrix.compiler.CC == 'clang'
110
+ name : Run oneDNN smoke tests
111
+ run : ctest --test-dir ${{ github.workspace }}/oneDNN/build -j${{ steps.cpu-cores.outputs.count }} -E '${{ matrix.config.IGNORED_TEST_FAILS }}'
112
+ working-directory : ${{ github.workspace }}/oneDNN
113
+ env :
114
+ DYLD_LIBRARY_PATH : ${{ github.workspace }}/ComputeLibrary/lib
0 commit comments