mirror of
https://github.com/ROCm/ROCm.git
synced 2026-02-03 10:55:05 -05:00
* ROCProfiler deprecation notice udpated * Initial changes updated * Component table updated * Changelog for HIP, LLVM-Project, ROCProfiler-SDK, ROCdbgapi, ROCgdb added * Missed changelogs from script added * Update RELEASE.md Added ROCm object tooling * Update RELEASE.md fix link format * Update RELEASE.md Add HIPIFY ChangeLog * Updates from editor correct headers for amd-smi correct deprecation spelling * Jeff's component feedback updated Co-authored-by: spolifroni-amd <Sandra.Polifroni@amd.com> Co-authored-by: Jeffrey Novotny <jnovotny@amd.com> * Review feedback * Minor fixes * Reference link and review feedback * Sandra's review feedback incorporated Co-authored-by: spolifroni-amd <Sandra.Polifroni@amd.com> * Component table ref fixed * Sandra's feedback added * Component table updated * Shorten SMI changelogs * Jeff's feedback incorporated * Swati's feedback incorporated * Release highlight added * Release highlight added * ROCm System profiler changelog and new highlights added * Jeff's component feedback updated Co-authored-by: Jeffrey Novotny <jnovotny@amd.com> * RDC changelog from Swati added Co-authored-by: Swati Rawat <120587655+SwRaw@users.noreply.github.com> * Documentation updates for HIP doc added * OS support updated * RDC change added * Add ROCm SMI deprecation and doc updates to RELEASE (#7) * Compatibility table updated * Leo's initial review feedback incorporated * Table error fixed * Apply suggestions from code review * Leo's feedback incorporated 2nd round Co-authored-by: Leo Paoletti <164940351+lpaoletti@users.noreply.github.com> * Added CK changes and fixed the MIGraphX link (#8) * Added CK changes and fixed the MIGraphX link * Update RELEASE.md Co-authored-by: John Afaganis <john.afaganis@gmail.com> * Update RELEASE.md Co-authored-by: John Afaganis <john.afaganis@gmail.com> * Update RELEASE.md Co-authored-by: Pratik Basyal <pratik.basyal@amd.com> * Update RELEASE.md Co-authored-by: Pratik Basyal <pratik.basyal@amd.com> * Update RELEASE.md Co-authored-by: Pratik Basyal <pratik.basyal@amd.com> * Update RELEASE.md Co-authored-by: Pratik Basyal <pratik.basyal@amd.com> * Update RELEASE.md Co-authored-by: John Afaganis <john.afaganis@gmail.com> * Update RELEASE.md Co-authored-by: Pratik Basyal <pratik.basyal@amd.com> * Update RELEASE.md Co-authored-by: Pratik Basyal <pratik.basyal@amd.com> * Update RELEASE.md Co-authored-by: John Afaganis <john.afaganis@gmail.com> * Update RELEASE.md Co-authored-by: John Afaganis <john.afaganis@gmail.com> * Updates from editor * Update RELEASE.md Co-authored-by: John Afaganis <john.afaganis@gmail.com> * Update RELEASE.md Co-authored-by: John Afaganis <john.afaganis@gmail.com> * Update RELEASE.md Co-authored-by: John Afaganis <john.afaganis@gmail.com> * Update RELEASE.md Co-authored-by: John Afaganis <john.afaganis@gmail.com> * Update RELEASE.md Co-authored-by: John Afaganis <john.afaganis@gmail.com> * Updates from editor --------- Co-authored-by: John Afaganis <john.afaganis@gmail.com> Co-authored-by: Pratik Basyal <pratik.basyal@amd.com> * update ROCm SMI deprecation notice (#9) * Release feedback added * ROCr runtime updated * Update RELEASE.md * Update RELEASE.md * Update RELEASE.md * Update RELEASE.md * Heading updated * Use temp preview URLs for CPX release note --------- Co-authored-by: randyh62 <42045079+randyh62@users.noreply.github.com> Co-authored-by: spolifroni-amd <Sandra.Polifroni@amd.com> Co-authored-by: Jeffrey Novotny <jnovotny@amd.com> Co-authored-by: Peter Park <peter.park@amd.com> Co-authored-by: Swati Rawat <120587655+SwRaw@users.noreply.github.com> Co-authored-by: Leo Paoletti <164940351+lpaoletti@users.noreply.github.com> Co-authored-by: John Afaganis <john.afaganis@gmail.com>
125 lines
5.6 KiB
Python
125 lines
5.6 KiB
Python
# Configuration file for the Sphinx documentation builder.
|
|
#
|
|
# This file only contains a selection of the most common options. For a full
|
|
# list see the documentation:
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html
|
|
|
|
import os
|
|
import shutil
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
shutil.copy2("../RELEASE.md", "./about/release-notes.md")
|
|
|
|
os.system("mkdir -p ../_readthedocs/html/downloads")
|
|
os.system("cp compatibility/compatibility-matrix-historical-6.0.csv ../_readthedocs/html/downloads/compatibility-matrix-historical-6.0.csv")
|
|
|
|
latex_engine = "xelatex"
|
|
latex_elements = {
|
|
"fontpkg": r"""
|
|
\usepackage{tgtermes}
|
|
\usepackage{tgheros}
|
|
\renewcommand\ttdefault{txtt}
|
|
"""
|
|
}
|
|
|
|
html_baseurl = os.environ.get("READTHEDOCS_CANONICAL_URL", "rocm.docs.amd.com")
|
|
html_context = {}
|
|
if os.environ.get("READTHEDOCS", "") == "True":
|
|
html_context["READTHEDOCS"] = True
|
|
|
|
# configurations for PDF output by Read the Docs
|
|
project = "ROCm Documentation"
|
|
author = "Advanced Micro Devices, Inc."
|
|
copyright = "Copyright (c) 2025 Advanced Micro Devices, Inc. All rights reserved."
|
|
version = "6.4.0"
|
|
release = "6.4.0"
|
|
setting_all_article_info = True
|
|
all_article_info_os = ["linux", "windows"]
|
|
all_article_info_author = ""
|
|
|
|
# pages with specific settings
|
|
article_pages = [
|
|
{"file": "about/release-notes", "os": ["linux"], "date": "2025-03-26"},
|
|
{"file": "compatibility/compatibility-matrix", "os": ["linux"]},
|
|
{"file": "compatibility/ml-compatibility/pytorch-compatibility", "os": ["linux"]},
|
|
{"file": "compatibility/ml-compatibility/tensorflow-compatibility", "os": ["linux"]},
|
|
{"file": "compatibility/ml-compatibility/jax-compatibility", "os": ["linux"]},
|
|
{"file": "how-to/deep-learning-rocm", "os": ["linux"]},
|
|
|
|
{"file": "how-to/rocm-for-ai/index", "os": ["linux"]},
|
|
|
|
{"file": "how-to/rocm-for-ai/training/index", "os": ["linux"]},
|
|
{"file": "how-to/rocm-for-ai/training/train-a-model", "os": ["linux"]},
|
|
{"file": "how-to/rocm-for-ai/training/prerequisite-system-validation", "os": ["linux"]},
|
|
{"file": "how-to/rocm-for-ai/training/benchmark-docker/megatron-lm", "os": ["linux"]},
|
|
{"file": "how-to/rocm-for-ai/training/benchmark-docker/pytorch-training", "os": ["linux"]},
|
|
{"file": "how-to/rocm-for-ai/training/scale-model-training", "os": ["linux"]},
|
|
|
|
{"file": "how-to/rocm-for-ai/fine-tuning/index", "os": ["linux"]},
|
|
{"file": "how-to/rocm-for-ai/fine-tuning/overview", "os": ["linux"]},
|
|
{"file": "how-to/rocm-for-ai/fine-tuning/fine-tuning-and-inference", "os": ["linux"]},
|
|
{"file": "how-to/rocm-for-ai/fine-tuning/single-gpu-fine-tuning-and-inference", "os": ["linux"]},
|
|
{"file": "how-to/rocm-for-ai/fine-tuning/multi-gpu-fine-tuning-and-inference", "os": ["linux"]},
|
|
|
|
{"file": "how-to/rocm-for-ai/inference/index", "os": ["linux"]},
|
|
{"file": "how-to/rocm-for-ai/inference/install", "os": ["linux"]},
|
|
{"file": "how-to/rocm-for-ai/inference/hugging-face-models", "os": ["linux"]},
|
|
{"file": "how-to/rocm-for-ai/inference/llm-inference-frameworks", "os": ["linux"]},
|
|
{"file": "how-to/rocm-for-ai/inference/vllm-benchmark", "os": ["linux"]},
|
|
{"file": "how-to/rocm-for-ai/inference/deploy-your-model", "os": ["linux"]},
|
|
|
|
{"file": "how-to/rocm-for-ai/inference-optimization/index", "os": ["linux"]},
|
|
{"file": "how-to/rocm-for-ai/inference-optimization/model-quantization", "os": ["linux"]},
|
|
{"file": "how-to/rocm-for-ai/inference-optimization/model-acceleration-libraries", "os": ["linux"]},
|
|
{"file": "how-to/rocm-for-ai/inference-optimization/optimizing-with-composable-kernel", "os": ["linux"]},
|
|
{"file": "how-to/rocm-for-ai/inference-optimization/optimizing-triton-kernel", "os": ["linux"]},
|
|
{"file": "how-to/rocm-for-ai/inference-optimization/profiling-and-debugging", "os": ["linux"]},
|
|
{"file": "how-to/rocm-for-ai/inference-optimization/workload", "os": ["linux"]},
|
|
|
|
{"file": "how-to/system-optimization/index", "os": ["linux"]},
|
|
{"file": "how-to/system-optimization/mi300x", "os": ["linux"]},
|
|
{"file": "how-to/system-optimization/mi200", "os": ["linux"]},
|
|
{"file": "how-to/system-optimization/mi100", "os": ["linux"]},
|
|
{"file": "how-to/system-optimization/w6000-v620", "os": ["linux"]},
|
|
{"file": "how-to/tuning-guides/mi300x/index", "os": ["linux"]},
|
|
{"file": "how-to/tuning-guides/mi300x/system", "os": ["linux"]},
|
|
{"file": "how-to/tuning-guides/mi300x/workload", "os": ["linux"]},
|
|
{"file": "how-to/system-debugging", "os": ["linux"]},
|
|
{"file": "how-to/gpu-enabled-mpi", "os": ["linux"]},
|
|
]
|
|
|
|
external_toc_path = "./sphinx/_toc.yml"
|
|
|
|
# Add the _extensions directory to Python's search path
|
|
sys.path.append(str(Path(__file__).parent / 'extension'))
|
|
|
|
extensions = ["rocm_docs", "sphinx_reredirects", "sphinx_sitemap", "sphinxcontrib.datatemplates", "version-ref"]
|
|
|
|
compatibility_matrix_file = str(Path(__file__).parent / 'compatibility/compatibility-matrix-historical-6.0.csv')
|
|
|
|
external_projects_current_project = "rocm"
|
|
|
|
# Uncomment if facing rate limit exceed issue with local build
|
|
# external_projects_remote_repository = ""
|
|
|
|
html_baseurl = os.environ.get("READTHEDOCS_CANONICAL_URL", "https://rocm-stg.amd.com/")
|
|
html_context = {}
|
|
if os.environ.get("READTHEDOCS", "") == "True":
|
|
html_context["READTHEDOCS"] = True
|
|
|
|
html_theme = "rocm_docs_theme"
|
|
html_theme_options = {"flavor": "rocm-docs-home"}
|
|
|
|
html_static_path = ["sphinx/static/css", "extension/how-to/rocm-for-ai/inference"]
|
|
html_css_files = ["rocm_custom.css", "rocm_rn.css", "vllm-benchmark.css"]
|
|
html_js_files = ["vllm-benchmark.js"]
|
|
|
|
html_title = "ROCm Documentation"
|
|
|
|
html_theme_options = {"link_main_doc": False}
|
|
|
|
redirects = {"reference/openmp/openmp": "../../about/compatibility/openmp.html"}
|
|
|
|
numfig = False
|