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
2 changes: 1 addition & 1 deletion .github/workflows/build-manywheel-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: linux.2xlarge
strategy:
matrix:
rocm_version: ["4.0.1", "4.1"]
rocm_version: ["4.0.1", "4.1", "4.2"]
env:
GPU_ARCH_TYPE: rocm
GPU_ARCH_VERSION: ${{ matrix.rocm_version }}
Expand Down
3 changes: 3 additions & 0 deletions common/install_miopen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@ if [[ ${ROCM_VERSION} == 4.0.1 ]]; then
elif [[ ${ROCM_VERSION} == 4.1 ]]; then
MIOPEN_CMAKE_DB_FLAGS="-DMIOPEN_EMBED_DB=gfx803_36;gfx803_64;gfx900_56;gfx900_64;gfx906_60;gfx906_64;gfx90878"
MIOPEN_BRANCH="rocm-4.1.x-staging"
elif [[ ${ROCM_VERSION} == 4.2 ]]; then
MIOPEN_CMAKE_DB_FLAGS="-DMIOPEN_EMBED_DB=gfx803_36;gfx803_64;gfx900_56;gfx900_64;gfx906_60;gfx906_64;gfx90878"
MIOPEN_BRANCH="rocm-4.2.x"
else
echo "Unhandled ROCM_VERSION ${ROCM_VERSION}"
exit 1
Expand Down
2 changes: 1 addition & 1 deletion cron/update_s3_htmls.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ set -e

# Upload for all CUDA/cpu versions if not given one to use
if [[ -z "$CUDA_VERSIONS" ]]; then
export CUDA_VERSIONS=('cpu' 'cu92' 'cu100' 'cu101' 'cu102' 'cu110' 'rocm3.7' 'rocm3.8' 'rocm3.9' 'rocm3.10' 'rocm4.0.1' 'rocm4.1')
export CUDA_VERSIONS=('cpu' 'cu92' 'cu100' 'cu101' 'cu102' 'cu110' 'rocm4.0.1' 'rocm4.1' 'rocm4.2')
fi

if [[ -z "$HTML_NAME" ]]; then
Expand Down
4 changes: 2 additions & 2 deletions manywheel/build_all_docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ for cuda_version in 11.3 11.1 10.2; do
GPU_ARCH_TYPE=cuda GPU_ARCH_VERSION="${cuda_version}" "${TOPDIR}/manywheel/build_docker.sh"
done

for rocm_version in 4.0.1 4.1; do
GPU_ARCH_TYPE=cuda GPU_ARCH_VERSION="${cuda_version}" "${TOPDIR}/manywheel/build_docker.sh"
for rocm_version in 4.0.1 4.1 4.2; do
GPU_ARCH_TYPE=rocm GPU_ARCH_VERSION="${rocm_version}" "${TOPDIR}/manywheel/build_docker.sh"
done