From 8f54e27e5decf41222f5d744069eb6572dbf275f Mon Sep 17 00:00:00 2001 From: Jeff Daily Date: Mon, 6 Oct 2025 23:29:21 +0000 Subject: [PATCH] [ROCm][CI] rebuild magma binary for gfx1150 gfx1151 (#164782) After #164763 added gfx1150 gfx1151 to list of targets, this PR will trigger rebuild of magma binary for ROCm 7 with the new targets. Pull Request resolved: https://github.com/pytorch/pytorch/pull/164782 Approved by: https://github.com/jeffdaily Co-authored-by: Jeff Daily --- .ci/magma-rocm/Makefile | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.ci/magma-rocm/Makefile b/.ci/magma-rocm/Makefile index da231b20ffa..9fca7ad5446 100644 --- a/.ci/magma-rocm/Makefile +++ b/.ci/magma-rocm/Makefile @@ -5,7 +5,7 @@ DESIRED_ROCM ?= 7.0 DESIRED_ROCM_SHORT = $(subst .,,$(DESIRED_ROCM)) PACKAGE_NAME = magma-rocm # inherit this from underlying docker image, do not pass this env var to docker -#PYTORCH_ROCM_ARCH ?= gfx900;gfx906;gfx908;gfx90a;gfx942;gfx950;gfx1030;gfx1100;gfx1101;gfx1102;gfx1200;gfx1201 +#PYTORCH_ROCM_ARCH ?= gfx900;gfx906;gfx908;gfx90a;gfx942;gfx950;gfx1030;gfx1100;gfx1101;gfx1102;gfx1150;gfx1151;gfx1200;gfx1201 DOCKER_RUN = set -eou pipefail; ${DOCKER_CMD} run --rm -i \ -v $(shell git rev-parse --show-toplevel)/.ci:/builder \ @@ -18,7 +18,6 @@ DOCKER_RUN = set -eou pipefail; ${DOCKER_CMD} run --rm -i \ .PHONY: all all: magma-rocm70 all: magma-rocm64 -all: magma-rocm63 .PHONY: clean: @@ -34,8 +33,3 @@ magma-rocm70: magma-rocm64: DESIRED_ROCM := 6.4 magma-rocm64: $(DOCKER_RUN) - -.PHONY: magma-rocm63 -magma-rocm63: DESIRED_ROCM := 6.3 -magma-rocm63: - $(DOCKER_RUN)