Cherry-picked commit with merge conflict #2000
Workflow file for this run
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
| name: Upload test stats while running | ||
| on: | ||
| schedule: | ||
| # Every hour | ||
| - cron: '0 * * * *' | ||
| concurrency: | ||
| group: upload-test-stats-while-running | ||
| cancel-in-progress: true | ||
| jobs: | ||
| upload_test_stats_while_running: | ||
| if: github.repository_owner == 'pytorch' | ||
| name: Upload test stats while running | ||
| runs-on: linux.2xlarge | ||
| steps: | ||
| - name: Checkout PyTorch | ||
| <<<<<<< HEAD | ||
| uses: pytorch/pytorch/.github/actions/checkout-pytorch@release/2.7 | ||
| ======= | ||
| uses: pytorch/pytorch/.github/actions/checkout-pytorch@release/2.8 | ||
| >>>>>>> 5729657180 ([ROCm] Specialized binary elementwise broadcast kernel for mixed dtypes with float/bfloat16/half (#2791)) | ||
| with: | ||
| fetch-depth: 1 | ||
| submodules: false | ||
| - name: Setup Linux | ||
| uses: ./.github/actions/setup-linux | ||
| <<<<<<< HEAD | ||
| - name: Setup miniconda | ||
| uses: pytorch/test-infra/.github/actions/setup-miniconda@release/2.7 | ||
| with: | ||
| python-version: "3.10" | ||
| - name: Install requirements | ||
| run: | | ||
| ${CONDA_RUN} pip install requests==2.32.2 boto3==1.35.42 | ||
| ======= | ||
| - name: Install requirements | ||
| run: | | ||
| python3 -m pip install requests==2.32.2 boto3==1.35.42 | ||
| >>>>>>> 5729657180 ([ROCm] Specialized binary elementwise broadcast kernel for mixed dtypes with float/bfloat16/half (#2791)) | ||
| - name: Upload test stats | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| run: | | ||
| <<<<<<< HEAD | ||
| ${CONDA_RUN} python -m tools.stats.upload_test_stats_running_jobs | ||
| ======= | ||
| python3 -m tools.stats.upload_test_stats_running_jobs | ||
| >>>>>>> 5729657180 ([ROCm] Specialized binary elementwise broadcast kernel for mixed dtypes with float/bfloat16/half (#2791)) | ||