-
Notifications
You must be signed in to change notification settings - Fork 24.8k
Integrated AMD AWS runners into Pytorch CI #153704
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
129 changes: 129 additions & 0 deletions
129
.github/workflows/inductor-perf-test-nightly-x86-zen.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
name: inductor-perf-nightly-x86-zen | ||
|
||
on: | ||
push: | ||
tags: | ||
- ciflow/inductor-perf-test-nightly-x86-zen/* | ||
schedule: | ||
# - cron: 0 7 * * 1-6 | ||
# - cron: 0 7 * * 0 | ||
# Does not perform max_autotune on CPU, so skip the weekly run setup | ||
- cron: 0 7 * * * | ||
# NB: GitHub has an upper limit of 10 inputs here | ||
workflow_dispatch: | ||
inputs: | ||
training: | ||
# CPU for training is not typical, but leave the option open here | ||
description: Run training (off by default)? | ||
required: false | ||
type: boolean | ||
default: false | ||
inference: | ||
description: Run inference (on by default)? | ||
required: false | ||
type: boolean | ||
default: true | ||
default: | ||
description: Run inductor_default? | ||
required: false | ||
type: boolean | ||
default: true | ||
dynamic: | ||
description: Run inductor_dynamic_shapes? | ||
required: false | ||
type: boolean | ||
default: false | ||
cppwrapper: | ||
description: Run inductor_cpp_wrapper? | ||
required: false | ||
type: boolean | ||
default: false | ||
aotinductor: | ||
description: Run aot_inductor for inference? | ||
required: false | ||
type: boolean | ||
default: false | ||
benchmark_configs: | ||
description: The list of configs used the benchmark | ||
required: false | ||
type: string | ||
default: inductor_huggingface_perf_zen_cpu_x86,inductor_timm_perf_zen_cpu_x86,inductor_torchbench_perf_zen_cpu_x86 | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref_name }}-${{ github.ref_type == 'branch' && github.sha }}-${{ github.event_name == 'workflow_dispatch' }}-${{ github.event_name == 'schedule' }} | ||
cancel-in-progress: true | ||
|
||
permissions: read-all | ||
|
||
jobs: | ||
get-label-type: | ||
name: get-label-type | ||
uses: pytorch/pytorch/.github/workflows/_runner-determinator.yml@main | ||
if: ${{ (github.event_name != 'schedule' || github.repository == 'pytorch/pytorch') && github.repository_owner == 'pytorch' }} | ||
with: | ||
triggering_actor: ${{ github.triggering_actor }} | ||
issue_owner: ${{ github.event.pull_request.user.login || github.event.issue.user.login }} | ||
curr_branch: ${{ github.head_ref || github.ref_name }} | ||
curr_ref_type: ${{ github.ref_type }} | ||
opt_out_experiments: lf | ||
|
||
linux-jammy-zen-cpu-py3_9-gcc11-inductor-build: | ||
name: linux-jammy-zen-cpu-py3.9-gcc11-inductor | ||
uses: ./.github/workflows/_linux-build.yml | ||
needs: get-label-type | ||
with: | ||
runner_prefix: "${{ needs.get-label-type.outputs.label-type }}" | ||
build-environment: linux-jammy-py3.9-gcc11-build | ||
docker-image-name: ci-image:pytorch-linux-jammy-py3.9-gcc11-inductor-benchmarks | ||
test-matrix: | | ||
{ include: [ | ||
{ config: "inductor_huggingface_perf_zen_cpu_x86", shard: 1, num_shards: 3, runner: "linux.24xlarge.amd" }, | ||
{ config: "inductor_huggingface_perf_zen_cpu_x86", shard: 2, num_shards: 3, runner: "linux.24xlarge.amd" }, | ||
{ config: "inductor_huggingface_perf_zen_cpu_x86", shard: 3, num_shards: 3, runner: "linux.24xlarge.amd" }, | ||
{ config: "inductor_timm_perf_zen_cpu_x86", shard: 1, num_shards: 5, runner: "linux.24xlarge.amd" }, | ||
charan-ponnada marked this conversation as resolved.
Show resolved
Hide resolved
|
||
{ config: "inductor_timm_perf_zen_cpu_x86", shard: 2, num_shards: 5, runner: "linux.24xlarge.amd" }, | ||
{ config: "inductor_timm_perf_zen_cpu_x86", shard: 3, num_shards: 5, runner: "linux.24xlarge.amd" }, | ||
{ config: "inductor_timm_perf_zen_cpu_x86", shard: 4, num_shards: 5, runner: "linux.24xlarge.amd" }, | ||
{ config: "inductor_timm_perf_zen_cpu_x86", shard: 5, num_shards: 5, runner: "linux.24xlarge.amd" }, | ||
{ config: "inductor_torchbench_perf_zen_cpu_x86", shard: 1, num_shards: 4, runner: "linux.24xlarge.amd" }, | ||
{ config: "inductor_torchbench_perf_zen_cpu_x86", shard: 2, num_shards: 4, runner: "linux.24xlarge.amd" }, | ||
{ config: "inductor_torchbench_perf_zen_cpu_x86", shard: 3, num_shards: 4, runner: "linux.24xlarge.amd" }, | ||
{ config: "inductor_torchbench_perf_zen_cpu_x86", shard: 4, num_shards: 4, runner: "linux.24xlarge.amd" }, | ||
]} | ||
selected-test-configs: ${{ inputs.benchmark_configs }} | ||
secrets: inherit | ||
|
||
linux-jammy-zen-cpu-py3_9-gcc11-inductor-test-nightly: | ||
name: linux-jammy-zen-cpu-py3.9-gcc11-inductor | ||
uses: ./.github/workflows/_linux-test.yml | ||
needs: linux-jammy-zen-cpu-py3_9-gcc11-inductor-build | ||
if: github.event.schedule == '0 7 * * *' | ||
with: | ||
build-environment: linux-jammy-py3.9-gcc11-build | ||
dashboard-tag: training-false-inference-true-default-true-dynamic-true-cppwrapper-true-aotinductor-true | ||
docker-image: ${{ needs.linux-jammy-zen-cpu-py3_9-gcc11-inductor-build.outputs.docker-image }} | ||
test-matrix: ${{ needs.linux-jammy-zen-cpu-py3_9-gcc11-inductor-build.outputs.test-matrix }} | ||
timeout-minutes: 720 | ||
# disable monitor in perf tests | ||
disable-monitor: false | ||
monitor-log-interval: 15 | ||
monitor-data-collect-interval: 4 | ||
secrets: inherit | ||
|
||
|
||
linux-jammy-zen-cpu-py3_9-gcc11-inductor-test: | ||
name: linux-jammy-zen-cpu-py3.9-gcc11-inductor | ||
uses: ./.github/workflows/_linux-test.yml | ||
needs: linux-jammy-zen-cpu-py3_9-gcc11-inductor-build | ||
if: github.event_name == 'workflow_dispatch' | ||
with: | ||
build-environment: linux-jammy-py3.9-gcc11-build | ||
dashboard-tag: training-${{ inputs.training }}-inference-${{ inputs.inference }}-default-${{ inputs.default }}-dynamic-${{ inputs.dynamic }}-cppwrapper-${{ inputs.cppwrapper }}-aotinductor-${{ inputs.aotinductor }} | ||
docker-image: ${{ needs.linux-jammy-zen-cpu-py3_9-gcc11-inductor-build.outputs.docker-image }} | ||
test-matrix: ${{ needs.linux-jammy-zen-cpu-py3_9-gcc11-inductor-build.outputs.test-matrix }} | ||
timeout-minutes: 720 | ||
# disable monitor in perf tests | ||
disable-monitor: false | ||
monitor-log-interval: 15 | ||
monitor-data-collect-interval: 4 | ||
secrets: inherit |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.