8000 Update base for Update on "[Cutlass] Implement cutlass epilogue visit… · pytorch/pytorch@f0f9842 · GitHub
[go: up one dir, main page]

Skip to content

Commit f0f9842

Browse files
committed
Update base for Update on "[Cutlass] Implement cutlass epilogue visitor python codegen"
This PR implements the second codegen task of CUTLASS EVT: translating inductor epilogue nodes into python code that will be traced by the EVT infra. Details: The implementation uses a simple ops wrapper which only supports add and mul pointwise ops today (to be extended in the future). This ops wrapper generates python code from inner_fn of the epilogue nodes in the format EVT expects. The main caveat is that one of the outputs needs to be named "D" and the accumulator input needs to be named "acc". Reads/writes are named according to the inductor buffer names otherwise. Previously merged: * #150904 * #150903 * #150346 * #150345 * #150344 cc voznesenskym penguinwu EikanWang jgong5 Guobing-Chen XiaobingSuper zhuhaozhe blzheng wenzhe-nrv jiayisunx ipiszy chenyang78 kadeng muchulee8 amjames chauhang aakhundov [ghstack-poisoned]
2 parents ea2fd3e + 99b6c42 commit f0f9842

File tree

103 files changed

+1893
-637
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

103 files changed

+1893
-637
lines changed

.github/ci_commit_pins/xla.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ac9a39f4b768cef09b9d2be8e074be496d7783b6
1+
14256e6040d9e14698a877924456cdd92bfcd01d

.github/scripts/generate_binary_build_matrix.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -394,8 +394,6 @@ def generate_wheels_matrix(
394394
"pytorch_extra_install_requirements": (
395395
PYTORCH_EXTRA_INSTALL_REQUIREMENTS["xpu"]
396396
if gpu_arch_type == "xpu"
397-
else PYTORCH_EXTRA_INSTALL_REQUIREMENTS[CUDA_STABLE]
398-
if os != "linux"
399397
else ""
400398
),
401399
}

.github/workflows/_binary-build-linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ jobs:
185185
fi
186186
187187
- name: Checkout PyTorch to pytorch dir
188-
uses: actions/checkout@v4
188+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
189189
with:
190190
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
191191
submodules: recursive
@@ -213,7 +213,7 @@ jobs:
213213
- name: configure aws credentials
214214
id: aws_creds
215215
if: ${{ steps.filter.outputs.is-test-matrix-empty == 'False' && inputs.build_environment != 'linux-s390x-binary-manywheel' && startsWith(github.event.ref, 'refs/tags/ciflow/') }}
216-
uses: aws-actions/configure-aws-credentials@v4
216+
uses: aws-actions/configure-aws-credentials@ececac1a45f3b08a01d2dd070d28d111c5fe6722 # v4.1.0
217217
with:
218218
role-to-assume: arn:aws:iam::308535385114:role/gha_workflow_s3_and_ecr_read_only
219219
aws-region: us-east-1
@@ -283,7 +283,7 @@ jobs:
283283
# Ensure the working directory gets chowned back to the current user
284284
docker run --rm -v "${RUNNER_TEMP}/artifacts:/v" -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" .
285285
286-
- uses: actions/upload-artifact@v4.4.0
286+
- uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
287287
if: ${{ steps.filter.outputs.is-test-matrix-empty == 'False' }}
288288
with:
289289
name: ${{ inputs.build_name }}

.github/workflows/_binary-test-linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ jobs:
162162
mkdir "${GITHUB_WORKSPACE}"
163163
164164
- name: Checkout PyTorch to pytorch dir
165-
uses: actions/checkout@v4
165+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
166166
with:
167167
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
168168
submodules: recursive
@@ -189,7 +189,7 @@ jobs:
189189
190190
- name: Download Build Artifacts
191191
if: ${{ steps.filter.outputs.is-test-matrix-empty == 'False' }}
192-
uses: actions/download-artifact@v4.1.7
192+
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
193193
with:
194194
name: ${{ inputs.build_name }}
195195
path: "${{ runner.temp }}/artifacts/"
@@ -201,7 +201,7 @@ jobs:
201201
- name: configure aws credentials
202202
id: aws_creds
203203
if: ${{ steps.filter.outputs.is-test-matrix-empty == 'False' && inputs.build_environment != 'linux-s390x-binary-manywheel' && startsWith(github.event.ref, 'refs/tags/ciflow/') }}
204-
uses: aws-actions/configure-aws-credentials@v4
204+
uses: aws-actions/configure-aws-credentials@ececac1a45f3b08a01d2dd070d28d111c5fe6722 # v4.1.0
205205
with:
206206
role-to-assume: arn:aws:iam::308535385114:role/gha_workflow_s3_and_ecr_read_only
207207
aws-region: us-east-1

.github/workflows/_binary-upload.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,14 +95,14 @@ jobs:
9595

9696
- name: Configure AWS credentials(PyTorch account) for nightly
9797
if: ${{ github.event_name == 'push' && github.event.ref == 'refs/heads/nightly' }}
98-
uses: aws-actions/configure-aws-credentials@v4
98+
uses: aws-actions/configure-aws-credentials@ececac1a45f3b08a01d2dd070d28d111c5fe6722 # v4.1.0
9999
with:
100100
role-to-assume: arn:aws:iam::749337293305:role/gha_workflow_nightly_build_wheels
101101
aws-region: us-east-1
102102

103103
- name: Configure AWS credentials(PyTorch account) for RC builds
104104
if: ${{ github.event_name == 'push' && (startsWith(github.event.ref, 'refs/tags/') && !startsWith(github.event.ref, 'refs/tags/ciflow/')) }}
105-
uses: aws-actions/configure-aws-credentials@v4
105+
uses: aws-actions/configure-aws-credentials@ececac1a45f3b08a01d2dd070d28d111c5fe6722 # v4.1.0
106106
with:
107107
role-to-assume: arn:aws:iam::749337293305:role/gha_workflow_test_build_wheels
108108
aws-region: us-east-1
@@ -112,7 +112,7 @@ jobs:
112112
# NB: When the previous build job is skipped, there won't be any artifacts and
113113
# this step will fail. Binary build jobs can only be skipped on CI, not nightly
114114
continue-on-error: true
115-
uses: actions/download-artifact@v4.1.7
115+
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
116116
with:
117117
name: ${{ inputs.build_name }}
118118
path: "${{ runner.temp }}/artifacts/"

.github/workflows/_docs.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102

103103
- name: configure aws credentials
104104
if : ${{ inputs.aws-role-to-assume != '' }}
105-
uses: aws-actions/configure-aws-credentials@v4
105+
uses: aws-actions/configure-aws-credentials@ececac1a45f3b08a01d2dd070d28d111c5fe6722 # v4.1.0
106106
with:
107107
role-to-assume: ${{ inputs.aws-role-to-assume }}
108108
role-session-name: gha-linux-test
@@ -185,14 +185,14 @@ jobs:
185185

186186
- name: configure aws credentials
187187
if : ${{ inputs.upload-aws-role-to-assume != '' }}
188-
uses: aws-actions/configure-aws-credentials@v4
188+
uses: aws-actions/configure-aws-credentials@ececac1a45f3b08a01d2dd070d28d111c5fe6722 # v4.1.0
189189
with:
190190
role-to-assume: ${{ inputs.upload-aws-role-to-assume }}
191191
role-session-name: gha-linux-test
192192
aws-region: us-east-1
193193

194194
- name: Upload Python Docs Preview
195-
uses: seemethere/upload-artifact-s3@v5
195+
uses: seemethere/upload-artifact-s3@baba72d0712b404f646cebe0730933554ebce96a # v5.1.0
196196
if: ${{ github.event_name == 'pull_request' && matrix.docs_type == 'python' && steps.build-docs.outcome == 'success' }}
197197
with:
198198
retention-days: 14
@@ -202,7 +202,7 @@ jobs:
202202
s3-prefix: pytorch/pytorch/${{ github.event.pull_request.number }}
203203

204204
- name: Upload C++ Docs Preview
205-
uses: seemethere/upload-artifact-s3@v5
205+
uses: seemethere/upload-artifact-s3@baba72d0712b404f646cebe0730933554ebce96a # v5.1.0
206206
if: ${{ github.event_name == 'pull_request' && matrix.docs_type == 'cpp' && steps.build-docs.outcome == 'success' }}
207207
with:
208208
retention-days: 14
@@ -212,7 +212,7 @@ jobs:
212212
s3-prefix: pytorch/pytorch/${{ github.event.pull_request.number }}/cppdocs
213213

214214
- name: Upload functorch Docs Preview
215-
uses: seemethere/upload-artifact-s3@v5
215+
uses: seemethere/upload-artifact-s3@baba72d0712b404f646cebe0730933554ebce96a # v5.1.0
216216
if: ${{ github.event_name == 'pull_request' && matrix.docs_type == 'functorch' && steps.build-docs.outcome == 'success' }}
217217
with:
218218
retention-days: 14

.github/workflows/_linux-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ jobs:
125125
if: inputs.build-environment != 'linux-s390x-binary-manywheel'
126126

127127
- name: configure aws credentials
128-
uses: aws-actions/configure-aws-credentials@v4
128+
uses: aws-actions/configure-aws-credentials@ececac1a45f3b08a01d2dd070d28d111c5fe6722 # v4.1.0
129129
if: ${{ inputs.aws-role-to-assume != '' && inputs.build-environment != 'linux-s390x-binary-manywheel' }}
130130
with:
131131
role-to-assume: ${{ inputs.aws-role-to-assume }}
@@ -286,7 +286,7 @@ jobs:
286286
zip -1 -r artifacts.zip dist/ build/custom_test_artifacts build/lib build/bin .additional_ci_files
287287
288288
- name: Store PyTorch Build Artifacts on S3
289-
uses: seemethere/upload-artifact-s3@v5
289+
uses: seemethere/upload-artifact-s3@baba72d0712b404f646cebe0730933554ebce96a # v5.1.0
290290
if: inputs.build-generates-artifacts && steps.build.outcome != 'skipped' && inputs.build-environment != 'linux-s390x-binary-manywheel'
291291
with:
292292
name: ${{ inputs.build-environment }}
@@ -296,7 +296,7 @@ jobs:
296296
s3-bucket: ${{ inputs.s3-bucket }}
297297

298298
- name: Store PyTorch Build Artifacts for s390x
299-
uses: actions/upload-artifact@v4
299+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
300300
if: inputs.build-generates-artifacts && steps.build.outcome != 'skipped' && inputs.build-environment == 'linux-s390x-binary-manywheel'
301301
with:
302302
name: ${{ inputs.build-environment }}

.github/workflows/_linux-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999

100100
- name: configure aws credentials
101101
if : ${{ inputs.aws-role-to-assume != '' && inputs.build-environment != 'linux-s390x-binary-manywheel' }}
102-
uses: aws-actions/configure-aws-credentials@v4
102+
uses: aws-actions/configure-aws-credentials@ececac1a45f3b08a01d2dd070d28d111c5fe6722 # v4.1.0
103103
with:
104104
role-to-assume: ${{ inputs.aws-role-to-assume }}
105105
role-session-name: gha-linux-test
@@ -408,7 +408,7 @@ jobs:
408408
find . -iname "core.[1-9]*" -exec docker exec "${DOCKER_CONTAINER_ID}" sh -c "gdb python {} -ex 'bt' -ex 'q'" \;
409409
410410
- name: Store Core dumps on S3
411-
uses: seemethere/upload-artifact-s3@v5
411+
uses: seemethere/upload-artifact-s3@baba72d0712b404f646cebe0730933554ebce96a # v5.1.0
412412
if: failure()
413413
with:
414414
name: coredumps-${{ matrix.config }}-${{ matrix.shard }}-${{ matrix.num_shards }}-${{ matrix.runner }}

.github/workflows/_mac-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
pip-requirements-file: .github/requirements/pip-requirements-${{ runner.os }}.txt
9090

9191
- name: Install sccache (only for non-forked PRs, and pushes to trunk)
92-
uses: nick-fields/retry@v3.0.0
92+
uses: nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e # v3.0.0
9393
if: ${{ github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository }}
9494
with:
9595
timeout_minutes: 5
@@ -171,7 +171,7 @@ jobs:
171171
zip -1 -r artifacts.zip dist/ build/.ninja_log build/compile_commands.json .additional_ci_files
172172
173173
- name: Store PyTorch Build Artifacts on GHA
174-
uses: actions/upload-artifact@v4
174+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
175175
if: inputs.build-generates-artifacts && steps.build.outcome != 'skipped'
176176
with:
177177
name: ${{ env.BUILD_ENVIRONMENT }}
@@ -180,7 +180,7 @@ jobs:
180180
path: artifacts.zip
181181

182182
- name: Upload sccache stats to GHA
183-
uses: actions/upload-artifact@v4
183+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
184184
# Only if sccache is installed, see above
185185
if: ${{ (github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository) && steps.build.outcome != 'skipped' }}
186186
with:

.github/workflows/_mac-test-mps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
sysctl machdep.cpu.brand_string kern.osproductversion
6767
6868
- name: Checkout PyTorch
69-
uses: actions/checkout@v4
69+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
7070
with:
7171
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
7272
show-progress: false

.github/workflows/_rocm-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979

8080
- name: configure aws credentials
8181
id: aws_creds
82-
uses: aws-actions/configure-aws-credentials@v4
82+
uses: aws-actions/configure-aws-credentials@ececac1a45f3b08a01d2dd070d28d111c5fe6722 # v4.1.0
8383
with:
8484
role-to-assume: arn:aws:iam::308535385114:role/gha_workflow_s3_and_ecr_read_only
8585
aws-region: us-east-1
@@ -88,7 +88,7 @@ jobs:
8888
- name: Login to Amazon ECR
8989
id: login-ecr
9090
continue-on-error: true
91-
uses: aws-actions/amazon-ecr-login@v2
91+
uses: aws-actions/amazon-ecr-login@062b18b96a7aff071d4dc91bc00c4c1a7945b076 # v2.0.1
9292

9393
- name: Calculate docker image
9494
id: calculate-docker-image
@@ -285,7 +285,7 @@ jobs:
285285
find . -iname "core.[1-9]*" -exec docker exec "${CONTAINER_NAME}" sh -c "gdb python {} -ex 'bt' -ex 'q'" \;
286286
287287
- name: Store Core dumps on GitHub
288-
uses: actions/upload-artifact@v4
288+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
289289
if: failure()
290290
with:
291291
name: coredumps-${{ matrix.config }}-${{ matrix.shard }}-${{ matrix.num_shards }}-${{ matrix.runner }}
@@ -294,7 +294,7 @@ jobs:
294294
path: ./**/core.[1-9]*
295295

296296
- name: Authenticate with AWS
297-
uses: aws-actions/configure-aws-credentials@v4
297+
uses: aws-actions/configure-aws-credentials@ececac1a45f3b08a01d2dd070d28d111c5fe6722 # v4.1.0
298298
with:
299299
role-to-assume: arn:aws:iam::308535385114:role/gha_workflow_upload-benchmark-results
300300
# The max duration enforced by the server side

.github/workflows/_win-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ jobs:
173173
# Upload to github so that people can click and download artifacts
174174
- name: Upload artifacts to s3
175175
if: steps.build.outcome != 'skipped'
176-
uses: seemethere/upload-artifact-s3@v5
176+
uses: seemethere/upload-artifact-s3@baba72d0712b404f646cebe0730933554ebce96a # v5.1.0
177177
with:
178178
retention-days: 14
179179
if-no-files-found: error

.github/workflows/_win-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696

9797
# TODO: Move to a requirements.txt file for windows
9898
- name: Install pip dependencies
99-
uses: nick-fields/retry@v3.0.0
99+
uses: nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e # v3.0.0
100100
with:
101101
shell: bash
102102
timeout_minutes: 5
@@ -117,7 +117,7 @@ jobs:
117117
echo "monitor-script-pid=${!}" >> "${GITHUB_OUTPUT}"
118118
119119
- name: Download PyTorch Build Artifacts
120-
uses: seemethere/download-artifact-s3@v4
120+
uses: seemethere/download-artifact-s3@1da556a7aa0a088e3153970611f6c432d58e80e6 # v4.2.0
121121
with:
122122
name: ${{ inputs.build-environment }}
123123
path: C:\${{ github.run_id }}\build-results

.github/workflows/_xpu-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,14 +73,14 @@ jobs:
7373

7474
- name: configure aws credentials
7575
id: aws_creds
76-
uses: aws-actions/configure-aws-credentials@v4
76+
uses: aws-actions/configure-aws-credentials@ececac1a45f3b08a01d2dd070d28d111c5fe6722 # v4.1.0
7777
with:
7878
role-to-assume: arn:aws:iam::308535385114:role/gha_workflow_s3_and_ecr_read_only
7979
aws-region: us-east-1
8080

8181
- name: Login to Amazon ECR
8282
id: login-ecr
83-
uses: aws-actions/amazon-ecr-login@v2
83+
uses: aws-actions/amazon-ecr-login@062b18b96a7aff071d4dc91bc00c4c1a7945b076 # v2.0.1
8484

8585
- name: Calculate docker image
8686
id: calculate-docker-image
@@ -297,7 +297,7 @@ jobs:
297297
docker stop "${{ env.CONTAINER_NAME }}"
298298
299299
- name: Store Core dumps on GitHub
300-
uses: actions/upload-artifact@v4
300+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
301301
if: failure()
302302
with:
303303
name: coredumps-${{ matrix.config }}-${{ matrix.shard }}-${{ matrix.num_shards }}-${{ matrix.runner }}

.github/workflows/assigntome-docathon.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
issues: write
1313
steps:
1414
- name: Check for "/assigntome" in comment
15-
uses: actions/github-script@v7
15+
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
1616
env:
1717
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1818
with:

.github/workflows/auto_request_review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- name: Request review based on files changes and/or groups the author belongs to
1717
# v0.7.0
18-
uses: necojackarc/auto-request-review@e08cdffa277d50854744de3f76230260e61c67f4
18+
uses: necojackarc/auto-request-review@e08cdffa277d50854744de3f76230260e61c67f4 # v0.7.0
1919
with:
2020
token: ${{ secrets.GITHUB_TOKEN }}
2121

.github/workflows/build-magma-linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,20 +37,20 @@ jobs:
3737
cuda_version: ["128", "126", "124", "118"]
3838
steps:
3939
- name: Checkout PyTorch
40-
uses: actions/checkout@v4
40+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4141
- name: Build Magma Cuda
4242
working-directory: .ci/magma
4343
run: |
4444
# Produces artifacts under magma/output/linux-64/magma-cuda*.bz2
4545
make magma-cuda${{ matrix.cuda_version }}
4646
- name: Save as artifact
47-
uses: actions/upload-artifact@v4
47+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
4848
with:
4949
path: .ci/magma/output/linux-64/magma-cuda*.bz2
5050
name: artifact_${{ matrix.cuda_version }}
5151
- name: Configure AWS credentials(PyTorch account)
5252
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
53-
uses: aws-actions/configure-aws-credentials@v4
53+
uses: aws-actions/configure-aws-credentials@ececac1a45f3b08a01d2dd070d28d111c5fe6722 # v4.1.0
5454
with:
5555
role-to-assume: arn:aws:iam::308535385114:role/gha_workflow_s3_ossci_linux_windows_read_write
5656
aws-region: us-east-1

.github/workflows/build-magma-rocm-linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,20 +37,20 @@ jobs:
3737
rocm_version: ["64", "63"]
3838
steps:
3939
- name: Checkout PyTorch
40-
uses: actions/checkout@v4
40+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4141
- name: Build Magma Rocm
4242
working-directory: .ci/magma-rocm
4343
run: |
4444
# Produces artifacts under magma-rocm/output/linux-64/magma-rocm*.bz2
4545
make magma-rocm${{ matrix.rocm_version }}
4646
- name: Save as artifact
47-
uses: actions/upload-artifact@v4
47+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
4848
with:
4949
path: .ci/magma-rocm/output/linux-64/magma-rocm*.bz2
5050
name: artifact_${{ matrix.rocm_version }}
5151
- name: Configure AWS credentials(PyTorch account)
5252
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
53-
uses: aws-actions/configure-aws-credentials@v4
53+
uses: aws-actions/configure-aws-credentials@ececac1a45f3b08a01d2dd070d28d111c5fe6722 # v4.1.0
5454
with:
5555
role-to-assume: arn:aws:iam::308535385114:role/gha_workflow_s3_ossci_linux_windows_read_write
5656
aws-region: us-east-1

0 commit comments

Comments
 (0)
0