Skip to content
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

Result Submission #23

Closed
wants to merge 62 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
62 commits
Select commit Hold shift + click to select a range
6678c20
Results on test system
arjunsuresh Sep 23, 2024
18f0711
Added doc files
arjunsuresh Sep 24, 2024
b43c773
Added doc files
arjunsuresh Sep 24, 2024
f5b20ef
Added publish file
arjunsuresh Sep 24, 2024
694d4a4
Added mkdocs.yml file
arjunsuresh Sep 24, 2024
225e089
Support generic result repositories
arjunsuresh Sep 24, 2024
b3ef023
Fixes for SCC24 results
arjunsuresh Sep 24, 2024
e230efd
Fixes for SCC24 results
arjunsuresh Sep 24, 2024
a9a8224
Added submission checker gh action
arjunsuresh Sep 24, 2024
a527ebd
Use v4.1 version for scc24
arjunsuresh Sep 24, 2024
0409c0b
Results on system test
arjunsuresh Sep 24, 2024
03ebd45
Restrict CLA check to MLC
arjunsuresh Sep 24, 2024
fe5b4b8
Fix submission checker version
arjunsuresh Sep 24, 2024
0322cef
Merge branch 'GATEOverflow:mlperf-inference-results-scc24' into mlper…
arjunsuresh Sep 24, 2024
6807964
Added results updater GH action
arjunsuresh Sep 24, 2024
98ab48c
Updated results summary
Sep 24, 2024
1b1fde4
Merge pull request #1 from arjunsuresh/mlperf-inference-results-scc24
arjunsuresh Sep 24, 2024
df149a9
Updated results summary
Sep 24, 2024
823278f
Update update-results.yml
arjunsuresh Sep 24, 2024
6294cc6
Updated results summary
Sep 24, 2024
e57adcb
Added results updater GH action
arjunsuresh Sep 24, 2024
5fb5f70
Updated results summary
Sep 24, 2024
0ce7f06
Added results updater GH action
arjunsuresh Sep 24, 2024
4c9a193
Updated results summary
Sep 24, 2024
a6b99b2
Use incremental dbversion
arjunsuresh Sep 24, 2024
ec11108
Use incremental dbversion
arjunsuresh Sep 24, 2024
11e0ae1
Updated results summary
Sep 24, 2024
4d816b6
Delete summary_results.json
arjunsuresh Sep 24, 2024
ee86f2b
Updated results summary
Sep 24, 2024
183d0e5
Update update-results.yml
arjunsuresh Sep 24, 2024
56a31e5
Updated results summary
Sep 24, 2024
8f465c6
Update publish.yml
arjunsuresh Sep 24, 2024
aae804f
Updated results summary
Sep 24, 2024
25e0525
Update update-results.yml
arjunsuresh Sep 25, 2024
2fd97ed
Updated results summary
actions-user Sep 25, 2024
a47ff0d
Results from self hosted Github actions - NVIDIARTX4090
arjunsuresh Sep 26, 2024
6076b8c
Updated results summary
actions-user Sep 26, 2024
ab7ccd3
Results from self hosted Github actions - NVIDIARTX4090
arjunsuresh Sep 27, 2024
c5f9fe3
Updated results summary
actions-user Sep 27, 2024
ae75072
Results from self hosted Github actions - NVIDIARTX4090
arjunsuresh Oct 1, 2024
ebfc1c3
Updated results summary
actions-user Oct 1, 2024
7c89029
Results from self hosted Github actions - NVIDIARTX4090
arjunsuresh Oct 3, 2024
5289d2b
Updated results summary
actions-user Oct 3, 2024
b172cbf
Results from self hosted Github actions - NVIDIARTX4090
arjunsuresh Oct 3, 2024
4187cf6
Updated results summary
actions-user Oct 3, 2024
974ba19
Results from self hosted Github actions - NVIDIARTX4090
arjunsuresh Oct 4, 2024
5599f7b
Updated results summary
actions-user Oct 4, 2024
7083e15
Results from self hosted Github actions - NVIDIARTX4090
arjunsuresh Oct 4, 2024
567d6fc
Updated results summary
actions-user Oct 4, 2024
a9f319a
Update update-results.yml
arjunsuresh Oct 4, 2024
905a059
Updated results summary
actions-user Oct 4, 2024
1c7366d
Update mkdocs.yml
arjunsuresh Oct 4, 2024
91f3883
Updated results summary
actions-user Oct 4, 2024
9480cbb
Results from self hosted Github actions - NVIDIARTX4090
arjunsuresh Oct 5, 2024
e7d93a9
Updated results summary
actions-user Oct 5, 2024
fcbfe60
Results from self hosted Github actions - NVIDIARTX4090
arjunsuresh Oct 5, 2024
6bc1d31
Updated results summary
actions-user Oct 5, 2024
a65f26d
Results from self hosted Github actions - NVIDIARTX4090
arjunsuresh Oct 6, 2024
2d2c741
Updated results summary
actions-user Oct 6, 2024
48c472a
Results from self hosted Github actions - NVIDIARTX4090
arjunsuresh Oct 6, 2024
4d509a5
Updated results summary
actions-user Oct 6, 2024
9244a96
Results on system UNM Roadrunners
rysc3 Oct 7, 2024
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
Prev Previous commit
Next Next commit
Added publish file
arjunsuresh committed Sep 24, 2024
commit f5b20ef4abab24b1db69c5f43a18922dfc000e04
32 changes: 32 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Publish visualization site


on:
release:
types: [published]
push:
branches:
- mlperf-inference-results-scc24
- main
- docs

jobs:

publish:
name: Publish the site
runs-on: ubuntu-latest

steps:
- name: Checkout repository normally
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"

- name: Init docs site
run: INFERENCE_RESULTS_VERSION=scc24 bash docinit.sh

- name: Run Mkdocs deploy
run: mkdocs gh-deploy --force