Add historical ROCm changelog #305

This commit is contained in:
Peter Park
2025-03-20 13:57:37 -04:00
committed by GitHub
parent fa9bf4b286
commit 062383e52b
5 changed files with 6160 additions and 4 deletions

3
.gitignore vendored
View File

@@ -15,7 +15,6 @@ _readthedocs/
__pycache__/ __pycache__/
# avoid duplicating contributing.md due to conf.py # avoid duplicating contributing.md due to conf.py
docs/CHANGELOG.md
docs/contribute/index.md docs/contribute/index.md
docs/about/release-notes.md docs/about/release-notes.md
docs/about/changelog.md docs/release/changelog.md

View File

@@ -12,6 +12,5 @@ config:
MD041: false MD041: false
MD051: false MD051: false
ignores: ignores:
- CHANGELOG.md - "{,docs/}{RELEASE,release,CHANGELOG,changelog}.md"
- "{,docs/}{RELEASE,release}.md"
- tools/autotag/templates/**/*.md - tools/autotag/templates/**/*.md

6154
CHANGELOG.md Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -32,6 +32,9 @@ The release notes provide a summary of notable changes since the previous ROCm r
If youre using Radeon™ PRO or Radeon GPUs in a workstation setting with a display connected, see the [Use ROCm on Radeon GPUs](https://rocm.docs.amd.com/projects/radeon/en/latest/docs/compatibility/native_linux/native_linux_compatibility.html) If youre using Radeon™ PRO or Radeon GPUs in a workstation setting with a display connected, see the [Use ROCm on Radeon GPUs](https://rocm.docs.amd.com/projects/radeon/en/latest/docs/compatibility/native_linux/native_linux_compatibility.html)
documentation to verify compatibility and system requirements. documentation to verify compatibility and system requirements.
``` ```
For a historical overview of ROCm component updates, see the {doc}`ROCm consolidated changelog </release/changelog>`.
## Release highlights ## Release highlights
The following are notable new features and improvements in ROCm 6.4.0. For changes to individual components, see The following are notable new features and improvements in ROCm 6.4.0. For changes to individual components, see

View File

@@ -10,6 +10,7 @@ import sys
from pathlib import Path from pathlib import Path
shutil.copy2("../RELEASE.md", "./about/release-notes.md") shutil.copy2("../RELEASE.md", "./about/release-notes.md")
shutil.copy2("../CHANGELOG.md", "./release/changelog.md")
os.system("mkdir -p ../_readthedocs/html/downloads") 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") os.system("cp compatibility/compatibility-matrix-historical-6.0.csv ../_readthedocs/html/downloads/compatibility-matrix-historical-6.0.csv")