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
31 changes: 31 additions & 0 deletions .github/workflows/build-doc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: PR build check for Docusaurus site

on:
push:
branches:
- main
# Review gh actions docs if you want to further define triggers, paths, etc
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on

defaults:
run:
working-directory: ./website

jobs:
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn
cache-dependency-path: website/yarn.lock

- name: Install dependencies
run: yarn install --frozen-lockfile

- name: Build website
run: yarn build
2 changes: 1 addition & 1 deletion website/docs/workloads/mlperf/mlperf-profiles.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Runs the MLPerf benchmark workload to test GPU performance.
| BatchSize | Optional. BatchSize for the datachunks in training model. | 40 |
| 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 |
| ContainerName | Optional. Name for docker model. |language_model |
| DataPath | Optional. Folder name for training data. /mlperftraining0/{DataPath} |mlperf-training-data-bert.1.0.0|
| DataPath | Optional. Folder name for training data. /mlperftraining0/\{DataPath} |mlperf-training-data-bert.1.0.0|
| GPUNum | Optional. Number of GPUs to stress. |8 |
| 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|
| PackageName | Required. Packname for mlperf training. | |
Expand Down
2 changes: 1 addition & 1 deletion website/docs/workloads/mlperf/mlperf.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ GPU components for which the MLPerf workload is designed to test.
* Orin
* Xavier NX

* **Supported Config Files for MlPerf Bert Training (config_{nodes}x{gpus per node}x{local batch size}x{gradien accumulation}.sh)**
* **Supported Config Files for MlPerf Bert Training (config_\{nodes}x\{gpus per node}x\{local batch size}x\{gradien accumulation}.sh)**
* config_A30_1x2x224x14.sh
* config_DGXA100_1x4x56x2.sh
* config_DGXA100_1x8x56x1.sh
Expand Down