Skip to content

Commit 26244fe

Browse files
authored
Merge branch 'master' into mvafin/pt_fe/where_cond
2 parents 5a17d72 + 5509273 commit 26244fe

File tree

211 files changed

+7141
-857
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

211 files changed

+7141
-857
lines changed

.github/workflows/dev_cpu_linux_snippets_libxsmm.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -225,13 +225,13 @@ jobs:
225225
INSTALL_TEST_DIR: ${{ github.workspace }}/install/tests
226226
steps:
227227
- name: Download OpenVINO package
228-
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
228+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
229229
with:
230230
name: openvino_package
231231
path: ${{ env.INSTALL_DIR }}
232232

233233
- name: Download OpenVINO tests package
234-
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
234+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
235235
with:
236236
name: openvino_tests
237237
path: ${{ env.INSTALL_TEST_DIR }}
@@ -283,13 +283,13 @@ jobs:
283283
PARALLEL_TEST_SCRIPT: ${{ github.workspace }}/install/tests/functional_test_utils/layer_tests_summary/run_parallel.py
284284
steps:
285285
- name: Download OpenVINO package
286-
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
286+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
287287
with:
288288
name: openvino_package
289289
path: ${{ env.INSTALL_DIR }}
290290

291291
- name: Download OpenVINO tests package
292-
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
292+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
293293
with:
294294
name: openvino_tests
295295
path: ${{ env.INSTALL_TEST_DIR }}

.github/workflows/fedora_29.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ jobs:
131131

132132
steps:
133133
- name: Download OpenVINO RPM packages
134-
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
134+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
135135
with:
136136
name: openvino_rpm_packages
137137
path: ${{ env.RPM_PACKAGES_DIR }}

.github/workflows/job_build_linux.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,11 @@ on:
6060
description: 'Target branch for the build; taken from GitHub context by default'
6161
type: string
6262
required: false
63+
use_latest_onednn:
64+
description: 'Whether to use the latest OneDNN'
65+
type: boolean
66+
required: false
67+
default: true
6368

6469
permissions: read-all
6570

@@ -135,7 +140,7 @@ jobs:
135140

136141
# Ticket: 139627
137142
- name: Checkout the latest OneDNN for GPU in nightly
138-
if: ${{ inputs.event-name == 'schedule' && inputs.os == 'ubuntu_22_04' }} # GPU tests are enabled only on U22
143+
if: ${{ inputs.event-name == 'schedule' && inputs.os == 'ubuntu_22_04' && inputs.use_latest_onednn }} # GPU tests are enabled only on U22
139144
working-directory: ${{ env.OPENVINO_REPO }}/src/plugins/intel_gpu/thirdparty/onednn_gpu
140145
run: |
141146
git fetch origin

.github/workflows/job_cpu_functional_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@ jobs:
5454
submodules: 'false'
5555

5656
- name: Download OpenVINO artifacts (package)
57-
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
57+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
5858
with:
5959
name: openvino_package
6060
path: ${{ env.INSTALL_DIR }}
6161

6262
- name: Download OpenVINO artifacts (tests)
63-
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
63+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
6464
with:
6565
name: openvino_tests
6666
path: ${{ env.INSTALL_DIR }}

.github/workflows/job_cxx_unit_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@ jobs:
5858
SETUPVARS: ${{ github.workspace }}/install/${{ contains(inputs.runner, 'win') && 'setupvars.ps1' || 'setupvars.sh' }}
5959
steps:
6060
- name: Download OpenVINO artifacts (package)
61-
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
61+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
6262
with:
6363
name: openvino_package
6464
path: ${{ env.INSTALL_DIR }}
6565

6666
- name: Download OpenVINO artifacts (tests)
67-
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
67+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
6868
with:
6969
name: openvino_tests
7070
path: ${{ env.INSTALL_DIR }}

.github/workflows/job_debian_packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
sed -i -E 's|http://(archive\|security).ubuntu.com/ubuntu|http://azure.archive.ubuntu.com/ubuntu|g' /etc/apt/sources.list
4141
4242
- name: Download OpenVINO debian packages
43-
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
43+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
4444
with:
4545
name: openvino_debian_packages
4646
path: ${{ env.DEBIAN_PACKAGES_DIR }}

.github/workflows/job_gpu_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ jobs:
5555
NODE_EXTRA_CA_CERTS: /usr/local/share/ca-certificates/IntelProxyRootCA-Base64.crt
5656
steps:
5757
- name: Download OpenVINO artifacts (package)
58-
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
58+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
5959
with:
6060
name: openvino_package
6161
path: ${{ env.INSTALL_DIR }}
6262

6363
- name: Download OpenVINO artifacts (tests)
64-
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
64+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
6565
with:
6666
name: openvino_tests
6767
path: ${{ env.INSTALL_DIR }}

.github/workflows/job_jax_layer_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,13 @@ jobs:
6262
submodules: 'false'
6363

6464
- name: Download OpenVINO artifacts (wheels)
65-
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
65+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
6666
with:
6767
name: openvino_wheels
6868
path: ${{ env.INSTALL_DIR }}
6969

7070
- name: Download OpenVINO artifacts (tests)
71-
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
71+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
7272
with:
7373
name: openvino_tests
7474
path: ${{ env.INSTALL_DIR }}

.github/workflows/job_jax_models_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,19 +58,19 @@ jobs:
5858
submodules: 'false'
5959

6060
- name: Download OpenVINO artifacts (wheels)
61-
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
61+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
6262
with:
6363
name: openvino_wheels
6464
path: ${{ env.INSTALL_DIR }}
6565

6666
- name: Download OpenVINO artifacts (tests)
67-
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
67+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
6868
with:
6969
name: openvino_tests
7070
path: ${{ env.INSTALL_DIR }}
7171

7272
- name: Download OpenVINO artifacts (tokenizers_wheel)
73-
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
73+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
7474
with:
7575
name: openvino_tokenizers_wheel
7676
path: ${{ env.INSTALL_DIR }}

.github/workflows/job_keras3_backend.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,13 @@ jobs:
6262
ref: '74fba843ec2ebecb0b844133959b73a368d070bb'
6363

6464
- name: Download OpenVINO artifacts (wheels)
65-
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
65+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
6666
with:
6767
name: openvino_wheels
6868
path: ${{ env.INSTALL_DIR }}
6969

7070
- name: Download OpenVINO artifacts (tokenizers_wheel)
71-
uses: akashchi/download-artifact@d59a9c15fec3fdb7c9adf09464124d00f9c11415
71+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
7272
with:
7373
name: openvino_tokenizers_wheel
7474
path: ${{ env.INSTALL_DIR }}

0 commit comments

Comments
 (0)