Skip to content
This repository was archived by the owner on Aug 15, 2025. It is now read-only.
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
12 changes: 10 additions & 2 deletions manywheel/build_rocm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,14 @@ elif [[ "$OS_NAME" == *"Ubuntu"* ]]; then
fi

if [[ $ROCM_VERSION == "rocm3.7" ]]; then
TENSILE_LIBRARY_NAME=TensileLibrary.yaml
elif [[ $ROCM_VERSION == "rocm3.8" ]]; then
TENSILE_LIBRARY_NAME=TensileLibrary.dat
fi

# NOTE: Some ROCm versions have identical dependencies.
# To avoid copy/paste mistakes, version condition branches are combined.
if [[ $ROCM_VERSION == "rocm3.7" || $ROCM_VERSION == "rocm3.8" ]]; then
DEPS_LIST=(
"/opt/rocm/miopen/lib/libMIOpen.so.1"
"/opt/rocm/hip/lib/libamdhip64.so.3"
Expand Down Expand Up @@ -109,7 +117,7 @@ DEPS_AUX_SRCLIST=(
"/opt/rocm/rocblas/lib/library/TensileLibrary_gfx900.co"
"/opt/rocm/rocblas/lib/library/TensileLibrary_gfx906.co"
"/opt/rocm/rocblas/lib/library/TensileLibrary_gfx908.co"
"/opt/rocm/rocblas/lib/library/TensileLibrary.yaml"
"/opt/rocm/rocblas/lib/library/$TENSILE_LIBRARY_NAME"
)

DEPS_AUX_DSTLIST=(
Expand All @@ -121,7 +129,7 @@ DEPS_AUX_DSTLIST=(
"lib/library/TensileLibrary_gfx900.co"
"lib/library/TensileLibrary_gfx906.co"
"lib/library/TensileLibrary_gfx908.co"
"lib/library/TensileLibrary.yaml"
"lib/library/$TENSILE_LIBRARY_NAME"
)

else
Expand Down
2 changes: 1 addition & 1 deletion manywheel/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -eou pipefail

for rocm_version in 3.7; do
for rocm_version in 3.7 3.8; do
(
set -x
DOCKER_BUILDKIT=1 docker build \
Expand Down