Skip to content

Commit 012c018

Browse files
authored
Neuron SDK Release 2.19.1 (#925)
1 parent 3e71fde commit 012c018

File tree

5 files changed

+89
-9
lines changed

5 files changed

+89
-9
lines changed

conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@
146146

147147
#top_banner_message="<span>&#9888;</span><a class='reference internal' style='color:white;' href='https://awsdocs-neuron.readthedocs-hosted.com/en/latest/general/setup/setup-troubleshooting.html#gpg-key-update'> Neuron repository GPG key for Ubuntu installation has expired, see instructions how to update! </a>"
148148

149-
top_banner_message="Neuron 2.19.0 is released! check <a class='reference internal' style='color:white;' href='https://awsdocs-neuron.readthedocs-hosted.com/en/latest/release-notes/index.html#latest-neuron-release'> What's New </a> and <a class='reference internal' style='color:white;' href='https://awsdocs-neuron.readthedocs-hosted.com/en/latest/general/announcements/index.html'> Announcements </a>"
149+
top_banner_message="Neuron 2.19.1 is released! check <a class='reference internal' style='color:white;' href='https://awsdocs-neuron.readthedocs-hosted.com/en/latest/release-notes/index.html#latest-neuron-release'> What's New </a> and <a class='reference internal' style='color:white;' href='https://awsdocs-neuron.readthedocs-hosted.com/en/latest/general/announcements/index.html'> Announcements </a>"
150150

151151
html_theme = "sphinx_book_theme"
152152
html_theme_options = {

release-notes/index.rst

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,14 @@ What's New
1010
.. _latest-neuron-release:
1111
.. _neuron-2.19.0-whatsnew:
1212

13+
Neuron 2.19.1 (07/19/2024)
14+
---------------------------
15+
16+
This release (Neuron 2.19.1) addresses an issue with the Neuron Persistent Cache that was introduced in the previous release, Neuron 2.19. The issue resulted in a cache-miss scenario when attempting to load a previously compiled Neuron Executable File Format (NEFF) from a different path or Python environment than the one used for the initial Neuron SDK installation and NEFF compilation. This release resolves the cache-miss problem, ensuring that NEFFs can be loaded correctly regardless of the path or Python environment used to install the Neuron SDK, as long as they were compiled using the same Neuron SDK version.
17+
18+
19+
20+
1321
Neuron 2.19.0 (07/03/2024)
1422
---------------------------
1523
.. contents:: Table of contents
@@ -353,12 +361,12 @@ Release Artifacts
353361
Trn1 packages
354362
^^^^^^^^^^^^^^
355363

356-
.. program-output:: python3 src/helperscripts/n2-helper.py --list=packages --instance=trn1 --file=src/helperscripts/n2-manifest.json --neuron-version=2.19.0
364+
.. program-output:: python3 src/helperscripts/n2-helper.py --list=packages --instance=trn1 --file=src/helperscripts/n2-manifest.json --neuron-version=2.19.1
357365

358366
Inf2 packages
359367
^^^^^^^^^^^^^^
360368

361-
.. program-output:: python3 src/helperscripts/n2-helper.py --list=packages --instance=inf2 --file=src/helperscripts/n2-manifest.json --neuron-version=2.19.0
369+
.. program-output:: python3 src/helperscripts/n2-helper.py --list=packages --instance=inf2 --file=src/helperscripts/n2-manifest.json --neuron-version=2.19.1
362370

363371
Inf1 packages
364372
^^^^^^^^^^^^^^
@@ -407,4 +415,4 @@ Previous Releases
407415

408416
* :ref:`prev-rn`
409417
* :ref:`pre-release-content`
410-
* :ref:`prev-n1-rn`
418+
* :ref:`prev-n1-rn`

release-notes/prev/content.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,22 @@ Previous Releases Artifacts (Neuron 2.x)
77
:local:
88
:depth: 1
99

10+
11+
Neuron 2.19.0 (07/03/2024)
12+
---------------------------
13+
14+
Trn1 packages
15+
^^^^^^^^^^^^^
16+
.. program-output:: python3 src/helperscripts/n2-helper.py --list=packages --instance=trn1 --file=src/helperscripts/n2-manifest.json --neuron-version=2.19.0
17+
18+
Inf2 packages
19+
^^^^^^^^^^^^^
20+
.. program-output:: python3 src/helperscripts/n2-helper.py --list=packages --instance=inf2 --file=src/helperscripts/n2-manifest.json --neuron-version=2.19.0
21+
22+
Inf1 packages
23+
^^^^^^^^^^^^^
24+
.. program-output:: python3 src/helperscripts/n2-helper.py --list=packages --instance=inf1 --file=src/helperscripts/n2-manifest.json --neuron-version=2.19.0
25+
1026
Neuron 2.18.2 (04/25/2024)
1127
---------------------------
1228

src/helperscripts/n2-manifest.json

Lines changed: 51 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
{"repo_type":"rpm", "repo_url":"https://yum.repos.neuron.amazonaws.com/"},
55
{"repo_type":"deb", "repo_url":"https://apt.repos.neuron.amazonaws.com/"}
66
],
7-
"manifest_date": "07/03/2024",
8-
"manifest_version": "2.19.0",
7+
"manifest_date": "07/19/2024",
8+
"manifest_version": "2.19.1",
99
"latest_release": [
1010
{"instance":"inf1", "version":"2.19.0"},
11-
{"instance":"trn1", "version":"2.19.0"},
12-
{"instance":"inf2", "version":"2.19.0"},
13-
{"instance":"trn1n", "version":"2.19.0"}
11+
{"instance":"trn1", "version":"2.19.1"},
12+
{"instance":"inf2", "version":"2.19.1"},
13+
{"instance":"trn1n", "version":"2.19.1"}
1414
],
1515
"os_properties": [
1616
{"os":"ubuntu18", "default_python_version":"3.7"},
@@ -86,6 +86,52 @@
8686
{"name":"neuronx_distributed","component":"Neuron Distributed","category":"na","package_type":"os","use_cases":["inference","training"],"pin_major":"false"}
8787
],
8888
"neuron_releases": [
89+
{"neuron_version":"2.19.1", "packages": [
90+
{"name":"aws-neuronx-collectives","version":"2.21.46.0","supported_instances":["trn1","inf2"],"supported_python_versions":[]},
91+
{"name":"aws-neuronx-dkms","version":"2.17.17.0","supported_instances":["inf1","trn1","inf2"],"supported_python_versions":[]},
92+
{"name":"aws-neuronx-gpsimd-customop-lib","version":"0.11.4.0","supported_instances":["trn1","inf2"],"supported_python_versions":[]},
93+
{"name":"aws-neuronx-gpsimd-tools","version":"0.11.3.0","supported_instances":["trn1","inf2"],"supported_python_versions":[]},
94+
{"name":"aws-neuronx-k8-plugin","version":"2.21.14.0","supported_instances":["inf1","trn1","inf2"],"supported_python_versions":[]},
95+
{"name":"aws-neuronx-k8-scheduler","version":"2.21.14.0","supported_instances":["inf1","trn1","inf2"],"supported_python_versions":[]},
96+
{"name":"aws-neuronx-oci-hook","version":"2.4.4.0","supported_instances":["inf1","trn1","inf2"],"supported_python_versions":[]},
97+
{"name":"aws-neuronx-runtime-discovery","version":"2.9","supported_instances":["trn1","inf2"],"supported_python_versions":["3.8","3.9","3.10"]},
98+
{"name":"aws-neuronx-runtime-lib","version":"2.21.41.0","supported_instances":["trn1","inf2"],"supported_python_versions":[]},
99+
{"name":"aws-neuronx-tools","version":"2.18.3.0","supported_instances":["inf1","trn1","inf2"],"supported_python_versions":[]},
100+
{"name":"dmlc_nnvm","version":"1.19.1.0","supported_instances":["inf1"],"supported_python_versions":["3.8","3.9","3.10"]},
101+
{"name":"dmlc_topi","version":"1.19.1.0","supported_instances":["inf1"],"supported_python_versions":["3.8","3.9","3.10"]},
102+
{"name":"dmlc_tvm","version":"1.19.1.0","supported_instances":["inf1"],"supported_python_versions":["3.8","3.9","3.10"]},
103+
{"name":"inferentia_hwm","version":"1.17.1.0","supported_instances":["inf1"],"supported_python_versions":["3.8","3.9","3.10"]},
104+
{"name":"libneuronxla","version":"2.0.2335","supported_instances":["trn1","inf2"],"supported_python_versions":["3.8","3.9","3.10"]},
105+
{"name":"libneuronxla","version":"0.5.1795","supported_instances":["trn1","inf2"],"supported_python_versions":["3.8","3.9","3.10"]},
106+
{"name":"mx_neuron","version":"1.8.0.2.4.147.0","supported_instances":["inf1"],"supported_python_versions":["3.8","3.9","3.10"]},
107+
{"name":"mxnet_neuron","version":"1.5.1.1.10.0.0","supported_instances":["inf1"],"supported_python_versions":["3.8","3.9","3.10"]},
108+
{"name":"neuron-cc","version":"1.23.5.0","supported_instances":["inf1"],"supported_python_versions":["3.8","3.9","3.10"]},
109+
{"name":"neuronperf","version":"1.8.93.0","supported_instances":["inf1"],"supported_python_versions":["3.8","3.9","3.10"]},
110+
{"name":"neuronx-cc","version":"2.14.227.0","supported_instances":["trn1","inf2"],"supported_python_versions":["3.8","3.9","3.10"]},
111+
{"name":"neuronx_distributed","version":"0.8.0","supported_instances":["trn1","inf2"],"supported_python_versions":["3.8","3.9","3.10"]},
112+
{"name":"tensorboard-plugin-neuronx","version":"2.6.63.0","supported_instances":["trn1","inf2"],"supported_python_versions":[]},
113+
{"name":"tensorflow-model-server-neuronx","version":"2.10.1.2.11.4.0","supported_instances":["inf1","trn1","inf2"],"supported_python_versions":[]},
114+
{"name":"tensorflow-model-server-neuronx","version":"2.8.4.2.11.4.0","supported_instances":["inf1","trn1","inf2"],"supported_python_versions":[]},
115+
{"name":"tensorflow-model-server-neuronx","version":"2.9.3.2.11.4.0","supported_instances":["inf1","trn1","inf2"],"supported_python_versions":[]},
116+
{"name":"tensorflow-neuron","version":"2.10.1.2.11.4.0","supported_instances":["inf1"],"supported_python_versions":["3.8","3.9","3.10"]},
117+
{"name":"tensorflow-neuron","version":"2.7.4.2.11.4.0","supported_instances":["inf1"],"supported_python_versions":["3.8","3.9","3.10"]},
118+
{"name":"tensorflow-neuron","version":"2.8.4.2.11.4.0","supported_instances":["inf1"],"supported_python_versions":["3.8","3.9","3.10"]},
119+
{"name":"tensorflow-neuron","version":"2.9.3.2.11.4.0","supported_instances":["inf1"],"supported_python_versions":["3.8","3.9","3.10"]},
120+
{"name":"tensorflow-neuronx","version":"2.10.1.2.1.0","supported_instances":["trn1","inf2"],"supported_python_versions":["3.8","3.9","3.10"]},
121+
{"name":"tensorflow-neuronx","version":"2.8.4.2.1.0","supported_instances":["trn1","inf2"],"supported_python_versions":["3.8","3.9","3.10"]},
122+
{"name":"tensorflow-neuronx","version":"2.9.3.2.1.0","supported_instances":["trn1","inf2"],"supported_python_versions":["3.8","3.9","3.10"]},
123+
{"name":"torch-neuron","version":"1.10.2.2.10.12.0","supported_instances":["inf1"],"supported_python_versions":["3.8","3.9","3.10"]},
124+
{"name":"torch-neuron","version":"1.11.0.2.10.12.0","supported_instances":["inf1"],"supported_python_versions":["3.8","3.9","3.10"]},
125+
{"name":"torch-neuron","version":"1.12.1.2.10.12.0","supported_instances":["inf1"],"supported_python_versions":["3.8","3.9","3.10"]},
126+
{"name":"torch-neuron","version":"1.13.1.2.10.12.0","supported_instances":["inf1"],"supported_python_versions":["3.8","3.9","3.10"]},
127+
{"name":"torch-neuron","version":"1.9.1.2.10.12.0","supported_instances":["inf1"],"supported_python_versions":["3.8","3.9","3.10"]},
128+
{"name":"torch-neuronx","version":"1.13.1.1.15.0","supported_instances":["trn1","inf2"],"supported_python_versions":["3.8","3.9","3.10"]},
129+
{"name":"torch-neuronx","version":"2.1.2.2.2.0","supported_instances":["trn1","inf2"],"supported_python_versions":["3.8","3.9","3.10"]},
130+
{"name":"torch_xla","version":"1.13.1+torchneuronf","supported_instances":["trn1","inf2"],"supported_python_versions":["3.8","3.9","3.10"]},
131+
{"name":"torch_xla","version":"2.1.3","supported_instances":["trn1","inf2"],"supported_python_versions":["3.8","3.9","3.10"]},
132+
{"name":"transformers-neuronx","version":"0.11.351","supported_instances":["trn1","inf2"],"supported_python_versions":["3.8","3.9","3.10"]},
133+
{"name":"efa-installer","version":"na","supported_instances":["trn1"],"supported_python_versions":[]}
134+
]},
89135
{"neuron_version":"2.19.0", "packages": [
90136
{"name":"aws-neuronx-collectives","version":"2.21.46.0","supported_instances":["trn1","inf2"],"supported_python_versions":[]},
91137
{"name":"aws-neuronx-dkms","version":"2.17.17.0","supported_instances":["inf1","trn1","inf2"],"supported_python_versions":[]},

static/robots.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
User-agent: *
22

3+
Disallow: /en/v2.19.1/
4+
5+
Disallow: /en/v2.19.0/
6+
7+
Disallow: /en/v2.18.2/
8+
9+
Disallow: /en/v2.18.1/
10+
11+
Disallow: /en/v2.18.0/
12+
313
Disallow: /en/v2.17.0/
414

515
Disallow: /en/v2.16.1/

0 commit comments

Comments
 (0)