From a9462914a5b6d023b41c71c302b8d9a1e38d2aba Mon Sep 17 00:00:00 2001 From: amd-hsivasun Date: Wed, 29 Oct 2025 21:18:41 +0000 Subject: [PATCH 1/4] [Ex CI] Enable rocWMMA Azure Pipeline --- .azuredevops/rocwmma.yml | 45 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .azuredevops/rocwmma.yml diff --git a/.azuredevops/rocwmma.yml b/.azuredevops/rocwmma.yml new file mode 100644 index 00000000000..f455cdf6ca1 --- /dev/null +++ b/.azuredevops/rocwmma.yml @@ -0,0 +1,45 @@ +variables: +- group: common +- template: /.azuredevops/variables-global.yml@pipelines_repo + +parameters: +- name: pipelinesRepoRef + type: string + default: refs/heads/develop +- name: triggerDownstreamJobs + type: boolean + default: true + +resources: + repositories: + - repository: pipelines_repo + type: github + endpoint: ROCm + name: ROCm/ROCm + ref: ${{ parameters.pipelinesRepoRef }} + +trigger: + batch: true + branches: + include: + - develop + - release-staging/rocm-rel-7.* + paths: + exclude: + - projects/rocwmma/.githooks + - projects/rocwmma/.github + - projects/rocwmma/.jenkins + - projects/rocwmma/docs + - 'projects/rocwmma/.*.y*ml' + - 'projects/rocwmma/*.md' + +pr: none + +stages: +- stage: rocwmma + jobs: + - template: ${{ variables.CI_COMPONENT_PATH }}/rocWMMA.yml@pipelines_repo + parameters: + sparseCheckoutDir: projects/rocwmma + triggerDownstreamJobs: ${{ parameters.triggerDownstreamJobs }} +- template: templates/report-summary-check-wrapper.yml \ No newline at end of file From 8321a744047f660df8c6ade361e23d75dd6e8462 Mon Sep 17 00:00:00 2001 From: amd-hsivasun Date: Wed, 29 Oct 2025 17:46:38 -0400 Subject: [PATCH 2/4] Update rocwmma.yml --- .azuredevops/rocwmma.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.azuredevops/rocwmma.yml b/.azuredevops/rocwmma.yml index f455cdf6ca1..7d432e04d6c 100644 --- a/.azuredevops/rocwmma.yml +++ b/.azuredevops/rocwmma.yml @@ -42,4 +42,4 @@ stages: parameters: sparseCheckoutDir: projects/rocwmma triggerDownstreamJobs: ${{ parameters.triggerDownstreamJobs }} -- template: templates/report-summary-check-wrapper.yml \ No newline at end of file +- template: templates/report-summary-check-wrapper.yml From 35aa237649e624220289fdbca26342e247a98c5e Mon Sep 17 00:00:00 2001 From: amd-hsivasun Date: Wed, 29 Oct 2025 17:49:01 -0400 Subject: [PATCH 3/4] Add rocwmma pipeline ID --- .github/scripts/azure_resolve_subtree_deps.py | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/scripts/azure_resolve_subtree_deps.py b/.github/scripts/azure_resolve_subtree_deps.py index 0d9eabafa43..6b812b02763 100644 --- a/.github/scripts/azure_resolve_subtree_deps.py +++ b/.github/scripts/azure_resolve_subtree_deps.py @@ -109,6 +109,7 @@ def main(argv=None) -> None: "projects/hipsparselt": 309, "projects/miopen": 320, "shared/origami": 364, + "projects/rocwmma": 369, } args = parse_arguments(argv) From e8f9fa8b9c2e1c523b1254b79337a93866a242e7 Mon Sep 17 00:00:00 2001 From: amd-hsivasun Date: Thu, 30 Oct 2025 13:24:25 -0400 Subject: [PATCH 4/4] Update pipelineID to production pipeline --- .github/scripts/azure_resolve_subtree_deps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/azure_resolve_subtree_deps.py b/.github/scripts/azure_resolve_subtree_deps.py index 6b812b02763..17767b925bc 100644 --- a/.github/scripts/azure_resolve_subtree_deps.py +++ b/.github/scripts/azure_resolve_subtree_deps.py @@ -109,7 +109,7 @@ def main(argv=None) -> None: "projects/hipsparselt": 309, "projects/miopen": 320, "shared/origami": 364, - "projects/rocwmma": 369, + "projects/rocwmma": 370, } args = parse_arguments(argv)