Skip to content

Commit 0e7152d

Browse files
committed
feat: support target=x86_64_v3 for more vectorization
1 parent db80abd commit 0e7152d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

containers/debian/Dockerfile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,13 @@ EOF
226226
ARG jobs=1
227227
RUN <<EOF
228228
set -e
229-
declare -A target=(["linux/amd64"]="x86_64_v2" ["linux/arm64"]="aarch64")
229+
declare -A target=(
230+
["linux/amd64"]="x86_64_v2"
231+
["linux/amd64/v2"]="x86_64_v2"
232+
["linux/amd64/v3"]="x86_64_v3"
233+
["linux/amd64/v4"]="x86_64_v4"
234+
["linux/arm64"]="aarch64"
235+
)
230236
target=${target[${TARGETPLATFORM}]}
231237
spack config --scope site add "packages:all:require:[target=${target}]"
232238
spack config --scope site add "packages:all:target:[${target}]"

0 commit comments

Comments
 (0)