-
Notifications
You must be signed in to change notification settings - Fork 3.1k
301 lines (274 loc) · 11.3 KB
/
linux_riscv.yml
File metadata and controls
301 lines (274 loc) · 11.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
name: Linux RISC-V (Ubuntu 22.04, Python 3.10)
on:
schedule:
# at 00:00 on Wednesday and Saturday
- cron: '0 0 * * 3,6'
workflow_dispatch:
inputs:
target-branch:
description: 'Target branch for the build; taken from event context by default'
type: string
required: false
testFilterType:
description: 'Filter for google tests {SMOKE | CONCISE | NIGHTLY}'
required: true
default: 'CONCISE'
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
merge_group:
paths:
- '.github/workflows/linux_riscv.yml'
- 'src/plugins/intel_cpu/src/emitters/plugin/aarch64/**'
- 'src/plugins/intel_cpu/src/emitters/plugin/riscv64/**'
- 'src/plugins/intel_cpu/src/emitters/plugin/x64/**'
- 'src/plugins/intel_cpu/src/emitters/snippets/riscv64/**'
- 'src/plugins/intel_cpu/src/nodes/executors/aarch64/**'
- 'src/plugins/intel_cpu/src/nodes/kernels/riscv64/**'
- 'src/plugins/intel_cpu/tests/functional/custom/single_layer_tests/classes/activation.*'
- 'src/plugins/intel_cpu/tests/functional/custom/single_layer_tests/classes/comparison.*'
- 'src/plugins/intel_cpu/tests/functional/custom/single_layer_tests/classes/eltwise.*'
- 'src/plugins/intel_cpu/tests/functional/custom/single_layer_tests/classes/logical.*'
- 'src/plugins/intel_cpu/tests/functional/custom/single_layer_tests/instances/common/activation.*'
- 'src/plugins/intel_cpu/tests/functional/custom/single_layer_tests/instances/common/comparison.*'
- 'src/plugins/intel_cpu/tests/functional/custom/single_layer_tests/instances/common/eltwise.*'
- 'src/plugins/intel_cpu/tests/functional/custom/single_layer_tests/instances/common/logical.*'
- 'src/plugins/intel_cpu/tests/functional/custom/single_layer_tests/instances/riscv64/**'
- 'src/plugins/intel_cpu/thirdparty/xbyak_riscv/**'
concurrency:
# github.ref is not unique in post-commit
group: ${{ github.event_name == 'push' && github.run_id || github.ref }}-linux-riscv-cpu
cancel-in-progress: true
permissions: read-all
env:
TARGET_BRANCH: ${{ inputs.target-branch || github.base_ref || github.event.merge_group.base_ref || github.ref }}
RISCV_TOOLCHAIN_ROOT: /opt/riscv
RISCV_CONCISE_GTEST_FILTER: '*ActivationLayer*:*EltwiseLayer*:*LogicalLayer*:*ComparisonLayer*:*SelectLayer*:*MatMulLayerCPUTest*:*ExtremumLayerCPUTest*:smoke_Snippets*'
RISCV_NIGHTLY_GTEST_FILTER: '*ActivationLayer*:*EltwiseLayer*:*LogicalLayer*:*ComparisonLayer*:*SelectLayer*:*MatMulLayerCPUTest*:*ExtremumLayerCPUTest*:smoke_Snippets*:smoke_CompareWithRefs*'
jobs:
Smart_CI:
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false || github.run_attempt > 1
outputs:
affected_components: "${{ steps.smart_ci.outputs.affected_components }}"
changed_components: "${{ steps.smart_ci.outputs.changed_components }}"
skip_workflow: "${{ steps.smart_ci.outputs.skip_workflow }}"
target_branch: ${{ steps.set_target_branch.outputs.target_branch }}
steps:
- name: checkout action
uses: ababushk/checkout@dd591a6a2ac25618db4eda86e7e0d938f88cf01b # cherry_pick_retries
timeout-minutes: 15
with:
sparse-checkout: .github/actions/smart-ci
- name: Get affected components
id: smart_ci
uses: ./.github/actions/smart-ci
with:
repository: ${{ github.repository }}
pr: ${{ github.event.number }}
commit_sha: ${{ github.sha }}
ref_name: ${{ github.ref_name }}
component_pattern: "category: (.*)"
repo_token: ${{ secrets.GITHUB_TOKEN }}
skip_when_only_listed_labels_set: 'docs,GPU,NPU'
skip_when_only_listed_files_changed: '*.md,*.rst,*.png,*.jpg,*.svg,*/layer_tests_summary/*,*/conformance/*'
- name: Get target branch
id: set_target_branch
run: |
echo "target_branch=${TARGET_BRANCH#refs/heads/}" >> $GITHUB_OUTPUT
shell: bash
Docker:
needs: Smart_CI
runs-on: aks-linux-4-cores-16gb-docker-build
if: "!needs.smart_ci.outputs.skip_workflow"
container:
image: openvinogithubactions.azurecr.io/docker_build:0.2
volumes:
- /mount:/mount
outputs:
images: "${{ steps.handle_docker.outputs.images }}"
steps:
- name: Checkout
uses: ababushk/checkout@dd591a6a2ac25618db4eda86e7e0d938f88cf01b # cherry_pick_retries
timeout-minutes: 15
- uses: ./.github/actions/handle_docker
id: handle_docker
with:
images: |
ov_build/ubuntu_22_04_riscv
ov_test/ubuntu_22_04_riscv_xuantie
registry: 'openvinogithubactions.azurecr.io'
dockerfiles_root_dir: '.github/dockerfiles'
changed_components: ${{ needs.smart_ci.outputs.changed_components }}
Build:
name: Build (RVV 1.0)
needs: [Smart_CI, Docker]
timeout-minutes: 150
defaults:
run:
shell: bash
runs-on: aks-linux-16-cores-32gb
container:
image: ${{ fromJSON(needs.docker.outputs.images).ov_build.ubuntu_22_04_riscv }}
volumes:
- /mount:/mount
- ${{ github.workspace }}:${{ github.workspace }}
env:
CMAKE_BUILD_TYPE: 'Release'
CMAKE_GENERATOR: 'Ninja'
CMAKE_CXX_COMPILER_LAUNCHER: ccache
CMAKE_C_COMPILER_LAUNCHER: ccache
OPENVINO_REPO: ${{ github.workspace }}/openvino
BUILD_DIR: ${{ github.workspace }}/build
INSTALL_DIR: ${{ github.workspace }}/openvino_install
INSTALL_TEST_DIR: ${{ github.workspace }}/tests_install
CCACHE_REMOTE_DIR: /mount/caches/ccache/ubuntu22_riscv64/gnu/${{ needs.Smart_CI.outputs.target_branch }}
CCACHE_DIR: ${{ github.workspace }}/ccache
CCACHE_TEMPDIR: ${{ github.workspace }}/ccache_temp
CCACHE_MAXSIZE: 2G
steps:
- name: Clone OpenVINO
uses: ababushk/checkout@dd591a6a2ac25618db4eda86e7e0d938f88cf01b # cherry_pick_retries
timeout-minutes: 15
with:
path: ${{ env.OPENVINO_REPO }}
submodules: 'true'
#
# Print system info
#
- name: System info
uses: ./openvino/.github/actions/system_info
- name: Setup ccache
id: ccache_restore
uses: ./openvino/.github/actions/cache
with:
save-always: ${{ github.event_name == 'push' && 'true' || 'false' }}
cleanup-always: ${{ github.event_name == 'push' && 'true' || 'false' }}
cache-size: 10
max-cache-size: 50
cache-path: ${{ env.CCACHE_REMOTE_DIR }}
path: ${{ env.CCACHE_DIR }}
key: ${{ runner.os }}-${{ runner.arch }}-ccache-${{ github.sha }}
restore-keys: |
${{ runner.os }}-${{ runner.arch }}-ccache
#
# Build
#
- name: Clean ccache stats
run: ccache --zero-stats
- name: CMake - Configure
run: >
cmake -G "${{ env.CMAKE_GENERATOR }}"
-DENABLE_INTEL_GPU=OFF
-DENABLE_INTEL_NPU=OFF
-DENABLE_SAMPLES=OFF
-DENABLE_NCC_STYLE=OFF
-DENABLE_PYTHON=OFF
-DENABLE_TESTS=ON
-DENABLE_STRICT_DEPENDENCIES=OFF
-DCMAKE_VERBOSE_MAKEFILE=ON
-DENABLE_WHEEL=OFF
-DCMAKE_COMPILE_WARNING_AS_ERROR=OFF
-DCMAKE_TOOLCHAIN_FILE=${OPENVINO_REPO}/cmake/toolchains/riscv64.linux.toolchain.cmake
-S ${OPENVINO_REPO}
-B ${BUILD_DIR}
- name: Cmake - Build
run: cmake --build ${BUILD_DIR} --parallel $(nproc)
- name: Show ccache stats and cleanup
run: |
ccache --show-stats
ccache --cleanup
- name: Cmake install - OpenVINO
run: |
cmake --install . --config ${{ env.CMAKE_BUILD_TYPE }} --prefix ${{ env.INSTALL_DIR }}
cmake --install . --config ${{ env.CMAKE_BUILD_TYPE }} --prefix ${{ env.INSTALL_TEST_DIR }} --component tests
working-directory: ${{ env.BUILD_DIR }}
- name: Pack openvino_package
run: tar -cvf - * | pigz > ${{ env.BUILD_DIR }}/openvino_package.tar.gz
working-directory: ${{ env.INSTALL_DIR }}
- name: Pack openvino_tests
run: tar -cvf - * | pigz > ${{ env.BUILD_DIR }}/openvino_tests.tar.gz
working-directory: ${{ env.INSTALL_TEST_DIR }}
- name: Upload openvino package
if: ${{ always() }}
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
with:
name: openvino_package
path: ${{ env.BUILD_DIR }}/openvino_package.tar.gz
if-no-files-found: 'error'
- name: Upload openvino tests package
if: ${{ always() }}
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
with:
name: openvino_tests
path: ${{ env.BUILD_DIR }}/openvino_tests.tar.gz
if-no-files-found: 'error'
CPU_Functional_Tests:
name: CPU functional tests
timeout-minutes: 30
needs: [Smart_CI, Docker, Build]
runs-on: aks-linux-4-cores-16gb
container:
image: ${{ fromJSON(needs.docker.outputs.images).ov_test.ubuntu_22_04_riscv_xuantie }}
volumes:
- ${{ github.workspace }}:${{ github.workspace }}
defaults:
run:
shell: bash
env:
INSTALL_DIR: ${{ github.workspace }}/install
INSTALL_TEST_DIR: ${{ github.workspace }}/install/tests
steps:
- name: Download OpenVINO artifacts (package)
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
with:
name: openvino_package
path: ${{ env.INSTALL_DIR }}
- name: Download OpenVINO artifacts (tests)
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
with:
name: openvino_tests
path: ${{ env.INSTALL_DIR }}
- name: Extract OpenVINO packages and tests
run: |
pigz -dc openvino_package.tar.gz | tar -xvf - -C ${INSTALL_DIR}
pigz -dc openvino_tests.tar.gz | tar -xvf - -C ${INSTALL_DIR}
working-directory: ${{ env.INSTALL_DIR }}
- name: Intel CPU plugin func tests (parallel)
env:
TEST_FILTER_TYPE: ${{ github.event_name == 'schedule' && 'NIGHTLY' || inputs.testFilterType || 'CONCISE' }}
run: |
source "${INSTALL_DIR}/setupvars.sh"
case "${TEST_FILTER_TYPE}" in
SMOKE)
GTEST_FILTER="${RISCV_SMOKE_GTEST_FILTER}"
;;
NIGHTLY)
GTEST_FILTER="${RISCV_NIGHTLY_GTEST_FILTER}"
;;
*)
GTEST_FILTER="${RISCV_CONCISE_GTEST_FILTER}"
;;
esac
"${RISCV_TOOLCHAIN_ROOT}"/bin/qemu-riscv64 \
-cpu rv64,x-v=true,vlen=256 \
"${INSTALL_TEST_DIR}"/ov_cpu_func_tests \
--gtest_print_time=1 \
--gtest_filter="${GTEST_FILTER}"
timeout-minutes: ${{ (inputs.testFilterType == 'CONCISE' || (!inputs.testFilterType && github.event_name != 'schedule')) && 25 || 125 }}
Overall_Status:
name: ci/gha_overall_status_linux_riscv
needs: [Smart_CI, Build, CPU_Functional_Tests]
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- name: Check status of all jobs
if: >-
${{
contains(needs.*.result, 'failure') ||
contains(needs.*.result, 'cancelled')
}}
run: exit 1