Compare commits

...

7 Commits

Author SHA1 Message Date
923822be65 updates 2025-10-01 20:12:21 -07:00
3662a0178a <Replace this line with a title. Use 1 line only, 67 chars or less>
Summary:

Test Plan:

Reviewers:

Subscribers:

Tasks:

Tags:
2025-10-01 19:46:46 -07:00
7255fa2bb1 Change test workflow from Linux to ROCm 2025-10-01 10:46:10 -07:00
c2608e2b47 Remove comment about H100 A100 runners 2025-09-30 14:07:57 -07:00
19fec2087f Update operator_microbenchmark workflow
Removed pull request triggers and B200 runner configurations.
2025-09-30 13:55:19 -07:00
1bd7e2504a Add b200 2025-09-29 14:24:47 -07:00
fbf67f6821 Add rocm flow to CI 2025-09-29 13:28:15 -07:00

View File

@ -73,3 +73,28 @@ jobs:
test-matrix: ${{ needs.opmicrobenchmark-build-b200.outputs.test-matrix }}
aws-role-to-assume: arn:aws:iam::308535385114:role/gha_workflow_s3_and_ecr_read_only
secrets: inherit
# ROCM MI300 runner
opmicrobenchmark-build-rocm:
if: github.repository_owner == 'pytorch'
name: opmicrobenchmark-build-rocm
uses: ./.github/workflows/_linux-build.yml
with:
build-environment: linux-jammy-rocm-py3_10
docker-image-name: ci-image:pytorch-linux-jammy-rocm-n-py3-benchmarks
test-matrix: |
{ include: [
{ config: "operator_microbenchmark_test", shard: 1, num_shards: 1, runner: "linux.rocm.gpu.gfx942.1" },
]}
secrets: inherit
opmicrobenchmark-test-rocm:
name: opmicrobenchmark-test-rocm
uses: ./.github/workflows/_rocm-test.yml
needs: opmicrobenchmark-build-rocm
with:
timeout-minutes: 500
build-environment: linux-jammy-rocm-py3_10
docker-image: ${{ needs.opmicrobenchmark-build-rocm.outputs.docker-image }}
test-matrix: ${{ needs.opmicrobenchmark-build-rocm.outputs.test-matrix }}
secrets: inherit