@@ -212,29 +212,6 @@ jobs:
212212 Copy-ChildrenByPattern "lib\hipdnn_plugins\engines" "*rocke_client*"
213213 Copy-PathIfExists "lib\hipdnn_plugins\engines\hip_kernel_provider"
214214
215- - name : Verify patched ROCm SDK
216- shell : pwsh
217- run : |
218- $requiredPaths = @(
219- (Join-Path $env:ROCM_SDK_PATH "lib\cmake\hip\hip-config.cmake"),
220- (Join-Path $env:ROCM_SDK_PATH "lib\cmake\hipdnn_backend\hipdnn_backendConfig.cmake")
221- )
222- foreach ($path in $requiredPaths) {
223- if (-not (Test-Path $path)) { throw "Missing expected ROCm SDK file: $path" }
224- }
225-
226- $checks = @(
227- @{ Directory = "bin"; Pattern = "hipdnn_backend*" },
228- @{ Directory = "lib\hipdnn_plugins\engines"; Pattern = "*miopen_plugin*" },
229- @{ Directory = "lib\hipdnn_plugins\engines"; Pattern = "*hipblaslt_plugin*" },
230- @{ Directory = "lib\hipdnn_plugins\engines"; Pattern = "*hip_kernel_provider*" }
231- )
232- foreach ($check in $checks) {
233- $directory = Join-Path $env:ROCM_SDK_PATH $check.Directory
234- $match = Get-ChildItem -Path $directory -Filter $check.Pattern -File -ErrorAction SilentlyContinue | Select-Object -First 1
235- if (-not $match) { throw "Missing expected ROCm SDK file matching $($check.Pattern) in $directory" }
236- }
237-
238215 - name : Package patched ROCm SDK artifact
239216 shell : pwsh
240217 run : |
@@ -393,16 +370,6 @@ jobs:
393370 copy_children_by_pattern "lib/hipdnn_plugins/engines" "*rocke_client*"
394371 copy_path "lib/hipdnn_plugins/engines/hip_kernel_provider"
395372
396- - name : Verify patched ROCm SDK
397- run : |
398- set -euo pipefail
399- test -f "$ROCM_SDK_PATH/lib/cmake/hip/hip-config.cmake"
400- test -f "$ROCM_SDK_PATH/lib/cmake/hipdnn_backend/hipdnn_backendConfig.cmake"
401- test -f "$ROCM_SDK_PATH/lib/libhipdnn_backend.so"
402- test -f "$ROCM_SDK_PATH/lib/hipdnn_plugins/engines/libmiopen_plugin.so"
403- test -f "$ROCM_SDK_PATH/lib/hipdnn_plugins/engines/libhipblaslt_plugin.so"
404- test -f "$ROCM_SDK_PATH/lib/hipdnn_plugins/engines/libhip_kernel_provider.so"
405-
406373 - name : Package patched ROCm SDK artifact
407374 run : |
408375 set -euo pipefail
0 commit comments