Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .github/workflows/full-sweep-1k1k-scheduler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,3 +142,36 @@ jobs:
secrets: inherit
with:
exp-name: "gptoss_1k1k"

calc-success-rate:
needs: [benchmark-dsr1, benchmark-gptoss, benchmark-gb200]
if: ${{ always() }}
runs-on: ubuntu-latest

env:
RESULTS_DIR: "results/"
STATS_FILENAME: "run_stats"
GITHUB_TOKEN: ${{ secrets.REPO_PAT }}

steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.REPO_PAT }}
fetch-depth: 0

- name: Download results artifacts
uses: actions/download-artifact@v4
with:
path: ${{ env.RESULTS_DIR }}
pattern: results_*

- name: Install python dependencies
run: pip install PyGithub

- name: Calculate success rate
run: python3 utils/calc_success_rate.py $STATS_FILENAME

- uses: actions/upload-artifact@v4
with:
name: "run-stats"
path: ${{ env.STATS_FILENAME }}.json
33 changes: 33 additions & 0 deletions .github/workflows/full-sweep-1k8k-scheduler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,3 +97,36 @@ jobs:
secrets: inherit
with:
exp-name: "gptoss_1k8k"

calc-success-rate:
needs: [benchmark-dsr1, benchmark-gptoss]
if: ${{ always() }}
runs-on: ubuntu-latest

env:
RESULTS_DIR: "results/"
STATS_FILENAME: "run_stats"
GITHUB_TOKEN: ${{ secrets.REPO_PAT }}

steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.REPO_PAT }}
fetch-depth: 0

- name: Download results artifacts
uses: actions/download-artifact@v4
with:
path: ${{ env.RESULTS_DIR }}
pattern: results_*

- name: Install python dependencies
run: pip install PyGithub

- name: Calculate success rate
run: python3 utils/calc_success_rate.py $STATS_FILENAME

- uses: actions/upload-artifact@v4
with:
name: "run-stats"
path: ${{ env.STATS_FILENAME }}.json
33 changes: 33 additions & 0 deletions .github/workflows/full-sweep-8k1k-scheduler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,3 +142,36 @@ jobs:
secrets: inherit
with:
exp-name: "gptoss_8k1k"

calc-success-rate:
needs: [benchmark-dsr1, benchmark-gptoss, benchmark-gb200]
if: ${{ always() }}
runs-on: ubuntu-latest

env:
RESULTS_DIR: "results/"
STATS_FILENAME: "run_stats"
GITHUB_TOKEN: ${{ secrets.REPO_PAT }}

steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.REPO_PAT }}
fetch-depth: 0

- name: Download results artifacts
uses: actions/download-artifact@v4
with:
path: ${{ env.RESULTS_DIR }}
pattern: results_*

- name: Install python dependencies
run: pip install PyGithub

- name: Calculate success rate
run: python3 utils/calc_success_rate.py $STATS_FILENAME

- uses: actions/upload-artifact@v4
with:
name: "run-stats"
path: ${{ env.STATS_FILENAME }}.json
Loading