Skip to content

Commit 3b6e776

Browse files
committed
Disable Driver 5010 tests for now
1 parent 4f93204 commit 3b6e776

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

.github/actions/compile-models/action.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ runs:
7272
PLATFORM="METEORLAKE"
7373
elif [[ "${{ inputs.npu-platform }}" == "NPU.4000" ]]; then
7474
PLATFORM="LUNARLAKE"
75+
elif [[ "${{ inputs.npu-platform }}" == "NPU.5010" ]]; then
76+
PLATFORM="PANTHERLAKE"
7577
else
7678
PLATFORM="not_valid_platform"
7779
fi

.github/workflows/job_tests_compilation_linux.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,22 @@ jobs:
4949
strategy:
5050
fail-fast: false
5151
matrix:
52+
npu-platform:
53+
- NPU.3720
54+
- NPU.4000
55+
- NPU.5010
56+
compiler-mode:
57+
- ${{ inputs.compiler-type }}
5258
include:
5359
- npu-platform: NPU.3720
5460
models-config: ./validation/public_models_3720_${{ inputs.compiler-type }}.json
5561
- npu-platform: NPU.4000
5662
models-config: ./validation/public_models_4000_${{ inputs.compiler-type }}.json
5763
- npu-platform: NPU.5010
5864
models-config: ./validation/public_models_5010_${{ inputs.compiler-type }}.json
65+
exclude:
66+
- npu-platform: NPU.5010
67+
compiler-mode: DRIVER
5968
steps:
6069
- name: Checkout
6170
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1

0 commit comments

Comments
 (0)