From e6cdf981661722acd603446984da6eb3dc8dbf9b Mon Sep 17 00:00:00 2001 From: likelovewant Date: Sat, 4 May 2024 00:08:13 +0800 Subject: [PATCH] Update gen_windows.ps1 --- llm/generate/gen_windows.ps1 | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/llm/generate/gen_windows.ps1 b/llm/generate/gen_windows.ps1 index 9bdfb9d3..b6b5b5cf 100644 --- a/llm/generate/gen_windows.ps1 +++ b/llm/generate/gen_windows.ps1 @@ -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]) } -} \ No newline at end of file +}