Skip to content
Open
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_linux_jax_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ on:
type: choice
options:
- gfx101X-dgpu
- gfx103X-dgpu
- gfx103X-all
- gfx110X-all
- gfx1150
- gfx1151
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_portable_linux_pytorch_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ on:
type: choice
options:
- gfx101X-dgpu
- gfx103X-dgpu
- gfx103X-all
- gfx110X-all
- gfx1150
- gfx1151
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_windows_pytorch_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ on:
type: choice
options:
- gfx101X-dgpu
- gfx103X-dgpu
- gfx103X-all
- gfx110X-all
- gfx1150
- gfx1151
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/copy_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
type: choice
options:
- gfx101X-dgpu
- gfx103X-dgpu
- gfx103X-all
- gfx110X-all
- gfx1150
- gfx1151
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_portable_linux_jax_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ on:
type: choice
options:
- gfx101X-dgpu
- gfx103X-dgpu
- gfx103X-all
- gfx110X-all
- gfx1150
- gfx1151
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ on:
type: choice
options:
- gfx101X-dgpu
- gfx103X-dgpu
- gfx103X-all
- gfx110X-all
- gfx1150
- gfx1151
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_windows_pytorch_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ on:
type: choice
options:
- gfx101X-dgpu
- gfx103X-dgpu
- gfx103X-all
- gfx110X-all
- gfx1150
- gfx1151
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_linux_jax_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ on:
type: choice
options:
- gfx101X-dgpu
- gfx103X-dgpu
- gfx103X-all
- gfx110X-all
- gfx1150
- gfx1151
Expand Down
4 changes: 2 additions & 2 deletions build_tools/github_actions/amdgpu_family_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion build_tools/github_actions/new_amdgpu_family_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"amdgpu_nightly": [
"gfx90X-dcgpu",
"gfx101X-dgpu",
"gfx103X-dgpu",
"gfx103X-all",
"gfx1150",
"gfx1152",
"gfx1153",
Expand Down
2 changes: 1 addition & 1 deletion build_tools/github_actions/tests/configure_ci_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
4 changes: 2 additions & 2 deletions build_tools/tests/setup_venv_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = '<a href="relpath/to/wherever/gfx103X-dgpu">gfx103X-dgpu</a><br><a href="/relpath/gfx120X-all">gfx120X-all</a>'
html_snippet = '<a href="relpath/to/wherever/gfx103X-all">gfx103X-all</a><br><a href="/relpath/gfx120X-all">gfx120X-all</a>'
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 = "<a>gfx940</a><br><a>gfx1030</a>"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def main() -> None:

SUBFOLDERS = [
"gfx101X-dgpu",
"gfx103X-dgpu",
"gfx103X-all",
"gfx110X-all",
"gfx1150",
"gfx1151",
Expand Down
Loading