Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build_wheels_linux_aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
with-cpu: enable
with-cuda: disable
# Note: if free-threaded python is required add py3.13t here
python-versions: '["3.10"]'
python-versions: '["3.10", "3.12"]'

build:
needs: generate-matrix
Expand Down
3 changes: 2 additions & 1 deletion packaging/env_var_script_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ if [[ ${CU_VERSION:-} == "cu124" ]]; then
fi

# Enable C++ kernels + kleidiai in aarch64 build
if [[ "$(uname -m)" =~ "^(aarch64|arm64)$" ]]; then
MACHINE_HW="$(uname -m)"
if [[ "${MACHINE_HW}" == "aarch64" || "${MACHINE_HW}" == "arm64" ]]; then
echo "Enabling aarch64-specific build"
export USE_CPP=1
export USE_CPU_KERNELS=1
Expand Down
Loading