diff --git a/.github/workflows/build_linux_jax_wheels.yml b/.github/workflows/build_linux_jax_wheels.yml index f6efe17fc1..c01d3e016a 100644 --- a/.github/workflows/build_linux_jax_wheels.yml +++ b/.github/workflows/build_linux_jax_wheels.yml @@ -55,7 +55,7 @@ on: type: choice options: - gfx101X-dgpu - - gfx103X-dgpu + - gfx103X-all - gfx110X-all - gfx1150 - gfx1151 diff --git a/.github/workflows/build_portable_linux_pytorch_wheels.yml b/.github/workflows/build_portable_linux_pytorch_wheels.yml index ed8cab8ca1..04332ca74d 100644 --- a/.github/workflows/build_portable_linux_pytorch_wheels.yml +++ b/.github/workflows/build_portable_linux_pytorch_wheels.yml @@ -56,7 +56,7 @@ on: type: choice options: - gfx101X-dgpu - - gfx103X-dgpu + - gfx103X-all - gfx110X-all - gfx1150 - gfx1151 diff --git a/.github/workflows/build_windows_pytorch_wheels.yml b/.github/workflows/build_windows_pytorch_wheels.yml index 0a58c7c354..0a9b176242 100644 --- a/.github/workflows/build_windows_pytorch_wheels.yml +++ b/.github/workflows/build_windows_pytorch_wheels.yml @@ -56,7 +56,7 @@ on: type: choice options: - gfx101X-dgpu - - gfx103X-dgpu + - gfx103X-all - gfx110X-all - gfx1150 - gfx1151 diff --git a/.github/workflows/copy_release.yml b/.github/workflows/copy_release.yml index f1f5a3f1bc..277f6a3974 100644 --- a/.github/workflows/copy_release.yml +++ b/.github/workflows/copy_release.yml @@ -13,7 +13,7 @@ on: type: choice options: - gfx101X-dgpu - - gfx103X-dgpu + - gfx103X-all - gfx110X-all - gfx1150 - gfx1151 diff --git a/.github/workflows/release_portable_linux_jax_wheels.yml b/.github/workflows/release_portable_linux_jax_wheels.yml index 7ea89263a7..036e64d2ca 100644 --- a/.github/workflows/release_portable_linux_jax_wheels.yml +++ b/.github/workflows/release_portable_linux_jax_wheels.yml @@ -44,7 +44,7 @@ on: type: choice options: - gfx101X-dgpu - - gfx103X-dgpu + - gfx103X-all - gfx110X-all - gfx1150 - gfx1151 diff --git a/.github/workflows/release_portable_linux_pytorch_wheels.yml b/.github/workflows/release_portable_linux_pytorch_wheels.yml index aea73b0231..f0d28708db 100644 --- a/.github/workflows/release_portable_linux_pytorch_wheels.yml +++ b/.github/workflows/release_portable_linux_pytorch_wheels.yml @@ -41,7 +41,7 @@ on: type: choice options: - gfx101X-dgpu - - gfx103X-dgpu + - gfx103X-all - gfx110X-all - gfx1150 - gfx1151 diff --git a/.github/workflows/release_windows_pytorch_wheels.yml b/.github/workflows/release_windows_pytorch_wheels.yml index c875fcd345..178d2ff24d 100644 --- a/.github/workflows/release_windows_pytorch_wheels.yml +++ b/.github/workflows/release_windows_pytorch_wheels.yml @@ -41,7 +41,7 @@ on: type: choice options: - gfx101X-dgpu - - gfx103X-dgpu + - gfx103X-all - gfx110X-all - gfx1150 - gfx1151 diff --git a/.github/workflows/test_linux_jax_wheels.yml b/.github/workflows/test_linux_jax_wheels.yml index 5d87dfad30..5f763dce49 100644 --- a/.github/workflows/test_linux_jax_wheels.yml +++ b/.github/workflows/test_linux_jax_wheels.yml @@ -65,7 +65,7 @@ on: type: choice options: - gfx101X-dgpu - - gfx103X-dgpu + - gfx103X-all - gfx110X-all - gfx1150 - gfx1151 diff --git a/build_tools/github_actions/amdgpu_family_matrix.py b/build_tools/github_actions/amdgpu_family_matrix.py index 9c18ca4619..b89cb58430 100644 --- a/build_tools/github_actions/amdgpu_family_matrix.py +++ b/build_tools/github_actions/amdgpu_family_matrix.py @@ -253,7 +253,7 @@ "gfx103x": { "linux": { "test-runs-on": "linux-gfx1030-gpu-rocm", - "family": "gfx103X-dgpu", + "family": "gfx103X-all", "fetch-gfx-targets": ["gfx1030"], "build_variants": ["release"], "sanity_check_only_for_family": True, @@ -262,7 +262,7 @@ # TODO(#3200): Re-enable machine once it is stable # Label is "windows-gfx1030-gpu-rocm" "test-runs-on": "", - "family": "gfx103X-dgpu", + "family": "gfx103X-all", "fetch-gfx-targets": [], "build_variants": ["release"], "sanity_check_only_for_family": True, diff --git a/build_tools/github_actions/new_amdgpu_family_matrix.py b/build_tools/github_actions/new_amdgpu_family_matrix.py index a3e286b59c..17dfcdf67d 100644 --- a/build_tools/github_actions/new_amdgpu_family_matrix.py +++ b/build_tools/github_actions/new_amdgpu_family_matrix.py @@ -68,7 +68,7 @@ "amdgpu_nightly": [ "gfx90X-dcgpu", "gfx101X-dgpu", - "gfx103X-dgpu", + "gfx103X-all", "gfx1150", "gfx1152", "gfx1153", diff --git a/build_tools/github_actions/tests/configure_ci_test.py b/build_tools/github_actions/tests/configure_ci_test.py index a543c08d55..6c3f4b2cf6 100644 --- a/build_tools/github_actions/tests/configure_ci_test.py +++ b/build_tools/github_actions/tests/configure_ci_test.py @@ -66,7 +66,7 @@ def test_valid_linux_workflow_dispatch_matrix_generator(self): any("gfx94X-dcgpu" == entry["family"] for entry in linux_target_output) ) self.assertTrue( - any("gfx103X-dgpu" == entry["family"] for entry in linux_target_output) + any("gfx103X-all" == entry["family"] for entry in linux_target_output) ) self.assertGreaterEqual(len(linux_target_output), 2) self.assert_target_output_is_valid( diff --git a/build_tools/tests/setup_venv_test.py b/build_tools/tests/setup_venv_test.py index 159a8c60a0..70303efd7c 100755 --- a/build_tools/tests/setup_venv_test.py +++ b/build_tools/tests/setup_venv_test.py @@ -173,9 +173,9 @@ def test_index_url_and_find_links(self, mock_run, mock_find_python): class GfxRegexPatternTest(unittest.TestCase): def test_valid_match(self): - html_snippet = 'gfx103X-dgpu
gfx120X-all' + html_snippet = 'gfx103X-all
gfx120X-all' matches = re.findall(GFX_TARGET_REGEX, html_snippet) - self.assertEqual(["gfx103X-dgpu", "gfx120X-all"], matches) + self.assertEqual(["gfx103X-all", "gfx120X-all"], matches) def test_match_without_suffix(self): html_snippet = "gfx940
gfx1030" diff --git a/build_tools/third_party/s3_management/update_dependencies.py b/build_tools/third_party/s3_management/update_dependencies.py index e9f25d73b5..854eab6ee1 100644 --- a/build_tools/third_party/s3_management/update_dependencies.py +++ b/build_tools/third_party/s3_management/update_dependencies.py @@ -206,7 +206,7 @@ def main() -> None: SUBFOLDERS = [ "gfx101X-dgpu", - "gfx103X-dgpu", + "gfx103X-all", "gfx110X-all", "gfx1150", "gfx1151",