Skip to content

Commit

Permalink
reland "only use apple-m1 target for macos (#354)" (#357)
Browse files Browse the repository at this point in the history
* Revert "Revert "only use apple-m1 target for macos (#354)" (#355)"

This reverts commit 933c6d5.

* sign treehashes
  • Loading branch information
IanButterworth authored Jun 9, 2024
1 parent 933c6d5 commit b8414d8
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 17 deletions.
Binary file modified pipelines/main/launch_signed_jobs.yml.signature
Binary file not shown.
Binary file modified pipelines/main/launch_upload_jobs.yml.signature
Binary file not shown.
2 changes: 1 addition & 1 deletion pipelines/scheduled/coverage/coverage.yml.signature
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Salted__.U�&�.^G!:p�[k��0��S���,���,r���Md�'4\��W^�7�Q��������DdP!:yQ����S�]
Salted__wK~�p��ә�;w oy��i�Ey�^�/�|�g.���F��0�|]�nTX"��Yf�����fLҹ��{�ǘwy����2jzo�rӅ
2 changes: 1 addition & 1 deletion pipelines/scheduled/launch_signed_jobs.yml.signature
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Salted__2��|A^-]��0�����"�k��LȲrHf,z�Ň/��-H"B�E�>�V;��6�� �*��ה�ť��������a3�NO�C���OÁ
Salted__��FyOLO�A%���ײ��O�ou �.��sl�(o͉,i&?�9O�l�1-�<�T�Q�^�K�B��J&�}6 A淽4�c2�Q�
Binary file modified pipelines/scheduled/launch_upload_jobs.yml.signature
Binary file not shown.
42 changes: 27 additions & 15 deletions utilities/build_envs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ if buildkite-agent meta-data exists BUILDKITE_JULIA_BRANCH; then
fi

# Determine JULIA_CPU_TARGETS for different architectures
JUlIA_CPU_TARGETS=()
JULIA_CPU_TARGETS=()
case "${ARCH?}" in
x86_64)
JULIA_CPU_TARGETS+=(
Expand Down Expand Up @@ -54,20 +54,32 @@ case "${ARCH?}" in
)
;;
aarch64)
JULIA_CPU_TARGETS+=(
# Absolute base aarch64 feature set
"generic"
# Cortex A57, Example: NVIDIA Jetson TX1, Jetson Nano
"cortex-a57"
# Cavium ThunderX2T99, a common server architecture
"thunderx2t99"
# NVidia Carmel, e.g. Jetson AGX Xavier; serves as a baseline for later architectures
"carmel,clone_all"
# Apple M1
"apple-m1,base(3)"
# Vector-length-agnostic common denominator between Neoverse V1 and V2, recent Arm server architectures
"neoverse-512tvb,base(3)"
)
case "${OS?}" in
macos)
JULIA_CPU_TARGETS+=(
# Absolute base aarch64 feature set
"generic"
# Apple M1
"apple-m1,clone_all"
)
;;
*)
JULIA_CPU_TARGETS+=(
# Absolute base aarch64 feature set
"generic"
# Cortex A57, Example: NVIDIA Jetson TX1, Jetson Nano
"cortex-a57"
# Cavium ThunderX2T99, a common server architecture
"thunderx2t99"
# NVidia Carmel, e.g. Jetson AGX Xavier; serves as a baseline for later architectures
"carmel,clone_all"
# Apple M1
"apple-m1,base(3)"
# Vector-length-agnostic common denominator between Neoverse V1 and V2, recent Arm server architectures
"neoverse-512tvb,base(3)"
)
;;
esac
;;
powerpc64le)
JULIA_CPU_TARGETS+=(
Expand Down

0 comments on commit b8414d8

Please sign in to comment.