Update gen_windows.ps1

This commit is contained in:
likelovewant
2024-05-04 00:08:13 +08:00
committed by GitHub
parent e9ae607ece
commit e6cdf98166

View File

@@ -8,7 +8,10 @@ function amdGPUs {
}
# TODO - load from some common data file for linux + windows build consistency
$GPU_LIST = @(
"gfx803"
"gfx900"
"gfx902"
"gfx904"
"gfx906:xnack-"
"gfx908:xnack-"
"gfx90a:xnack+"
@@ -17,11 +20,17 @@ function amdGPUs {
"gfx941"
"gfx942"
"gfx1010"
"gfx1011"
"gfx1012"
"gfx1030"
"gfx1032"
"gfx1034"
"gfx1035"
"gfx1031"
"gfx1100"
"gfx1101"
"gfx1102"
"gfx1103"
)
$GPU_LIST -join ';'
}
@@ -366,4 +375,4 @@ if ($($args.count) -eq 0) {
write-host "performing $($args[$i])"
& $($args[$i])
}
}
}