diff --git a/.github/workflows/benchmark_torch_compile_nightly.yml b/.github/workflows/benchmark_torch_compile_nightly.yml index 0afb1ada89..65859b80d5 100644 --- a/.github/workflows/benchmark_torch_compile_nightly.yml +++ b/.github/workflows/benchmark_torch_compile_nightly.yml @@ -47,12 +47,11 @@ jobs: sudo apt-get install -y apache2-utils pip install -r benchmarks/requirements-ab.txt - name: Benchmark gpu nightly - if: ${{ matrix.hardware == 'gpu' }} run: python benchmarks/auto_benchmark.py --input benchmarks/benchmark_config_torch_compile_gpu.yaml --skip false --nightly True - name: Save benchmark artifacts uses: actions/upload-artifact@v2 with: - name: nightly ${{ matrix.hardware }} torch compile artifact + name: nightly gpu torch compile artifact path: /tmp/ts_benchmark - name: Download benchmark artifacts for auto validation uses: dawidd6/action-download-artifact@v2 @@ -61,13 +60,13 @@ jobs: workflow_conclusion: success if_no_artifact_found: ignore path: /tmp/ts_artifacts - name: ${{ matrix.hardware }}_torch_compile_benchmark_validation + name: gpu_torch_compile_benchmark_validation - name: Validate Benchmark result - run: python benchmarks/validate_report.py --input-artifacts-dir /tmp/ts_artifacts/${{ matrix.hardware }}_torch_compile_benchmark_validation + run: python benchmarks/validate_report.py --input-artifacts-dir /tmp/ts_artifacts/gpu_torch_compile_benchmark_validation - name: Update benchmark artifacts for auto validation - run: python benchmarks/utils/update_artifacts.py --output /tmp/ts_artifacts/${{ matrix.hardware }}_torch_compile_benchmark_validation + run: python benchmarks/utils/update_artifacts.py --output /tmp/ts_artifacts/gpu_torch_compile_benchmark_validation - name: Upload the updated benchmark artifacts for auto validation uses: actions/upload-artifact@v2 with: - name: ${{ matrix.hardware }}_torch_compile_benchmark_validation + name: gpu_torch_compile_benchmark_validation path: /tmp/ts_artifacts