mkdocs.yml 2.15 KB
Newer Older
yangzhong's avatar
yangzhong committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
site_name: MLPerf Inference Documentation
repo_url: https://github.com/mlcommons/inference
theme:
  name: material
  logo: img/logo_v2.svg
  favicon: img/logo_v2.svg
  palette:
    primary: deep purple
    accent: green
  features:
    - content.tabs.link
    - content.code.copy
    - navigation.expand
    - navigation.sections
    - navigation.indexes
    - navigation.instant
    - navigation.tabs
    - navigation.tabs.sticky
    - navigation.top
    - toc.follow
nav:
  - Home:
    - index.md
    - Image Classification:
      - ResNet50: benchmarks/image_classification/resnet50.md
    - Text to Image:
      - Stable Diffusion:
        - Run Commands: benchmarks/text_to_image/sdxl.md
        - Reproducibility:
          - SCC24: benchmarks/text_to_image/reproducibility/scc24.md
    - Object Detection:
      - RetinaNet: benchmarks/object_detection/retinanet.md
    - Medical Imaging:
      - 3d-unet: benchmarks/medical_imaging/3d-unet.md
    - Language Processing:
      - Bert-Large:
        - Run Commands: benchmarks/language/bert.md
        - Reproducibility:
          - IndySCC24: benchmarks/language/reproducibility/indyscc24-bert.md
      - GPT-J: benchmarks/language/gpt-j.md
      - LLAMA2-70B: benchmarks/language/llama2-70b.md
      - LLAMA3-405B: benchmarks/language/llama3_1-405b.md
      - MIXTRAL-8x7B: benchmarks/language/mixtral-8x7b.md
    - Recommendation:
      - DLRM-v2: benchmarks/recommendation/dlrm-v2.md
    - Graph Neural Networks:
      - R-GAT: benchmarks/graph/rgat.md
  - Install CM:
    - install/index.md
  - Submission:
    - Submission Generation: submission/index.md
  - Release Notes:
    - What's New: changelog/index.md
    - Changelog: changelog/changelog.md

markdown_extensions:
  - pymdownx.tasklist:
      custom_checkbox: true
  - pymdownx.details
  - admonition
  - attr_list
  - def_list
  - footnotes
  - pymdownx.superfences:
      custom_fences:
        - name: mermaid
          class: mermaid
          format: !!python/name:pymdownx.superfences.fence_code_format
  - pymdownx.tabbed:
      alternate_style: true
plugins:
  - search
  - macros
  - site-urls
  - redirects:
      redirect_maps:
        'benchmarks/index.md': 'index.md'