We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f93204 commit 234d374Copy full SHA for 234d374
.github/actions/compile-models/action.yml
@@ -72,6 +72,8 @@ runs:
72
PLATFORM="METEORLAKE"
73
elif [[ "${{ inputs.npu-platform }}" == "NPU.4000" ]]; then
74
PLATFORM="LUNARLAKE"
75
+ elif [[ "${{ inputs.npu-platform }}" == "NPU.5010" ]]; then
76
+ PLATFORM="PANTHERLAKE"
77
else
78
PLATFORM="not_valid_platform"
79
fi
.github/workflows/job_tests_compilation_linux.yml
@@ -56,6 +56,7 @@ jobs:
56
models-config: ./validation/public_models_4000_${{ inputs.compiler-type }}.json
57
- npu-platform: NPU.5010
58
models-config: ./validation/public_models_5010_${{ inputs.compiler-type }}.json
59
+ if: ${{ !(matrix.npu-platform == 'NPU.5010' && inputs.compiler-type == 'DRIVER') }}
60
steps:
61
- name: Checkout
62
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
0 commit comments