Skip to content

Commit 3e1aa15

Browse files
authored
Add PR build check for website (#230)
1 parent 57daf24 commit 3e1aa15

File tree

3 files changed

+33
-2
lines changed

3 files changed

+33
-2
lines changed

.github/workflows/build-doc.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: PR build check for Docusaurus site
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
# Review gh actions docs if you want to further define triggers, paths, etc
8+
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on
9+
10+
defaults:
11+
run:
12+
working-directory: ./website
13+
14+
jobs:
15+
deploy:
16+
name: Deploy to GitHub Pages
17+
runs-on: ubuntu-latest
18+
19+
steps:
20+
- uses: actions/checkout@v2
21+
- uses: actions/setup-node@v3
22+
with:
23+
node-version: 18
24+
cache: yarn
25+
cache-dependency-path: website/yarn.lock
26+
27+
- name: Install dependencies
28+
run: yarn install --frozen-lockfile
29+
30+
- name: Build website
31+
run: yarn build

website/docs/workloads/mlperf/mlperf-profiles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Runs the MLPerf benchmark workload to test GPU performance.
9999
| BatchSize | Optional. BatchSize for the datachunks in training model. | 40 |
100100
| Implementation | Optional. Implementation present for a given model/benchmark. Example for bert [link](https://github.com/mlcommons/training_results_v2.1/tree/main/NVIDIA/benchmarks) | pytorch-22.09 |
101101
| ContainerName | Optional. Name for docker model. |language_model |
102-
| DataPath | Optional. Folder name for training data. /mlperftraining0/{DataPath} |mlperf-training-data-bert.1.0.0|
102+
| DataPath | Optional. Folder name for training data. /mlperftraining0/\{DataPath} |mlperf-training-data-bert.1.0.0|
103103
| GPUNum | Optional. Number of GPUs to stress. |8 |
104104
| ConfigFile | Optional. Configuration for running workload. Visit the implementation for a model for all supported config files. [link](https://github.com/mlcommons/training_results_v2.1/tree/main/NVIDIA/benchmarks). |config_DGXA100_1x8x56x1.sh|
105105
| PackageName | Required. Packname for mlperf training. | |

website/docs/workloads/mlperf/mlperf.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ GPU components for which the MLPerf workload is designed to test.
3333
* Orin
3434
* Xavier NX
3535

36-
* **Supported Config Files for MlPerf Bert Training (config_{nodes}x{gpus per node}x{local batch size}x{gradien accumulation}.sh)**
36+
* **Supported Config Files for MlPerf Bert Training (config_\{nodes}x\{gpus per node}x\{local batch size}x\{gradien accumulation}.sh)**
3737
* config_A30_1x2x224x14.sh
3838
* config_DGXA100_1x4x56x2.sh
3939
* config_DGXA100_1x8x56x1.sh

0 commit comments

Comments
 (0)