Skip to content

Commit 752349f

Browse files
committed
Neuron SDK Release 2.21.0
1 parent e1b74d5 commit 752349f

File tree

158 files changed

+6054
-1674
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

158 files changed

+6054
-1674
lines changed

conf.py

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

196196
#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>"
197197

198-
top_banner_message="Neuron 2.21.0 Beta 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>"
198+
top_banner_message="Neuron 2.21.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>"
199199

200200
html_theme = "sphinx_book_theme"
201201
html_theme_options = {

containers/tutorials/k8s-prerequisite.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,23 @@ This template file has a few important config settings -
4444
* The template installs the EFA driver. Please note that the libfabric version should match between the AMI and the workload containers.
4545
* It uses the `EKS optimized accelerated AMI <https://docs.aws.amazon.com/eks/latest/userguide/eks-optimized-ami.html#gpu-ami>`__ which has the necessary neuron components installed. The template uses AMI for Kubernetes version 1.25. Please update to appropriate version.
4646
* The template adds trn1.32xlarge nodes to the cluster. Please update to the desired instance type.
47+
* Trn2 instance types use a default LNC (Logical NeuronCore Configuration) setting of `2`, if you want to change it to `1`, update the UserData section of the launch template to a new LNC setting as shown below, and deploy the new/updated version of launch template.
48+
49+
.. code-block:: bash
50+
51+
--==BOUNDARY==
52+
Content-Type: text/x-shellscript; charset="us-ascii"
53+
54+
#!/bin/bash
55+
set -ex
56+
config_dir=/opt/aws/neuron
57+
config_file=${config_dir}/logical_nc_config
58+
[ -d "$config_dir" ] || mkdir -p "$config_dir"
59+
[ -f "$config_file" ] || touch "$config_file"
60+
if ! grep -q "^NEURON_LOGICAL_NC_CONFIG=1$" "$config_file" 2>/dev/null; then
61+
printf "NEURON_LOGICAL_NC_CONFIG=1" >> "$config_file"
62+
fi
63+
--==BOUNDARY==--
4764
4865
Finally, run the following command to create cloud formation stack:
4966

dlami/index.rst

Lines changed: 52 additions & 86 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ to easily get started on single Neuron instance. Below sections describe the sup
1717

1818
Neuron Multi Framework DLAMI
1919
----------------------------
20-
Neuron Deep Learning AMI (DLAMI) is a multi-framework DLAMI that supports multiple Neuron framework/libraries. Each DLAMI is pre-installed with Neuron drivers and support all Neuron instance types. Each virtual environment that corresponds to a specific Neuron framework/library
21-
comes pre-installed with all the Neuron libraries including Neuron compiler and Neuron run-time needed for you to easily get started.
20+
Neuron Deep Learning AMI (DLAMI) is a multi-framework DLAMI that supports multiple Neuron framework/libraries. Each DLAMI is pre-installed with Neuron drivers and support all Neuron instance types. Each virtual environment that corresponds to a specific Neuron framework/library
21+
comes pre-installed with all the Neuron libraries including Neuron compiler and Neuron run-time needed for you to easily get started.
2222

2323

2424
Multi Framework DLAMIs supported
@@ -31,14 +31,14 @@ Multi Framework DLAMIs supported
3131
:class: table-smaller-font-size
3232

3333
* - Operating System
34-
- Neuron Instances Supported
34+
- Neuron Instances Supported
3535
- DLAMI Name
3636

3737
* - Ubuntu 22.04
38-
- Inf1, Inf2, Trn1, Trn1n
38+
- Inf2, Trn1, Trn1n, Trn2
3939
- Deep Learning AMI Neuron (Ubuntu 22.04)
4040
* - Amazon Linux 2023
41-
- Inf1, Inf2, Trn1, Trn1n
41+
- Inf2, Trn1, Trn1n, Trn2
4242
- Deep Learning AMI Neuron (Amazon Linux 2023)
4343

4444

@@ -53,38 +53,38 @@ Virtual Environments pre-installed
5353
:class: table-smaller-font-size
5454

5555
* - Neuron Framework/Libraries supported
56-
- Virtual Environment
56+
- Virtual Environment
5757

58-
* - PyTorch Neuron 2.1 (Torch NeuronX , NeuronX Distributed)
59-
- /opt/aws_neuronx_venv_pytorch_2_1
58+
* - PyTorch 2.5 Torch NeuronX, NxD Core
59+
- /opt/aws_neuronx_venv_pytorch_2_5
6060

61-
* - PyTorch Neuron 1.13.1 (Torch NeuronX , NeuronX Distributed)
62-
- /opt/aws_neuronx_venv_pytorch_1_13
61+
* - PyTorch 2.5 NxD Training, Torch NeuronX
62+
- /opt/aws_neuronx_venv_pytorch_2_5_nxd_training
6363

64-
* - Transformers NeuronX (PyTorch 2.1)
65-
- /opt/aws_neuronx_venv_transformers_neuronx
64+
* - PyTorch 2.5 NxD Inference, Torch NeuronX
65+
- /opt/aws_neuronx_venv_pytorch_2_5_nxd_inference
6666

67-
* - Tensorflow Neuron 2.10 (Tensorflow NeuronX)
67+
* - JAX 0.4 NeuronX
68+
- /opt/aws_neuronx_venv_jax_0_4
69+
70+
* - Tensorflow 2.10 NeuronX
6871
- /opt/aws_neuronx_venv_tensorflow_2_10
6972

70-
* - PyTorch Neuron 1.13.1 (Inf1) (Torch Neuron)
71-
- /opt/aws_neuron_venv_pytorch_1_13_inf1
73+
* - Transformers NeuronX (PyTorch 2.5)
74+
- /opt/aws_neuronx_venv_pytorch_2_5_transformers
7275

73-
* - Tensorflow 2.10 (Inf1) (Tensorflow Neuron)
76+
* - Tensorflow 2.10 Neuron (Inf1)
7477
- /opt/aws_neuron_venv_tensorflow_2_10_inf1
7578

76-
77-
You can easily get started with the multi-framework DLAMI through AWS console by following this :ref:`setup guide <setup-ubuntu22-multi-framework-dlami>` . If you are looking to
78-
use the Neuron DLAMI in your cloud automation flows , Neuron also supports :ref:`SSM parameters <ssm-parameter-neuron-dlami>` to easily retrieve the latest DLAMI id.
79-
79+
You can easily get started with the multi-framework DLAMI through AWS console by following this :ref:`setup guide <setup-ubuntu22-multi-framework-dlami>`. If you are looking to
80+
use the Neuron DLAMI in your cloud automation flows, Neuron also supports :ref:`SSM parameters <ssm-parameter-neuron-dlami>` to easily retrieve the latest DLAMI id.
8081

8182

8283
Neuron Single Framework DLAMI
8384
-----------------------------
8485

85-
Neuron supports single framework DLAMIs that correspond to a single framework version (ex:- PyTorch 1.13). Each DLAMI is pre-installed with Neuron drivers and supports all Neuron instance types. Each virtual environment corresponding to a specific
86-
Neuron framework/library comes pre-installed with all the relevant Neuron libraries including Neuron compiler and Neuron run-time.
87-
86+
Neuron supports single framework DLAMIs that correspond to a single framework version (ex:- TensorFlow 2.10). Each DLAMI is pre-installed with Neuron drivers and supports all Neuron instance types. Each virtual environment corresponding to a specific
87+
Neuron framework/library comes pre-installed with all the relevant Neuron libraries including Neuron compiler and Neuron run-time.
8888

8989

9090
Single Framework DLAMIs supported
@@ -96,32 +96,19 @@ Single Framework DLAMIs supported
9696
:class: table-smaller-font-size
9797

9898
* - Framework
99-
- Operating System
99+
- Operating System
100100
- Neuron Instances Supported
101101
- DLAMI Name
102102

103-
* - PyTorch 2.1
104-
- Ubuntu 22.04
105-
- Inf2, Trn1, Trn1n
106-
- Deep Learning AMI Neuron PyTorch 2.1 (Ubuntu 22.04)
107-
108-
* - PyTorch 1.13
103+
* - Tensorflow 2.10
109104
- Ubuntu 22.04
110-
- Inf1, Inf2, Trn1, Trn1n
111-
- Deep Learning AMI Neuron PyTorch 1.13 (Ubuntu 22.04)
112-
113-
* - PyTorch 1.13
114-
- Ubuntu 20.04
115-
- Inf1, Inf2, Trn1, Trn1n
116-
- Deep Learning AMI Neuron PyTorch 1.13 (Ubuntu 20.04)
105+
- Inf1, Inf2, Trn1, Trn1n, Trn2
106+
- Deep Learning AMI Neuron TensorFlow 2.10 (Ubuntu 22.04)
117107

118108
* - Tensorflow 2.10
119109
- Ubuntu 20.04
120-
- Inf2, Trn1, Trn1n
121-
- Deep Learning AMI Neuron TensorFlow 2.10 (Ubuntu 20.04)
122-
123-
124-
110+
- Inf2, Trn1, Trn1n
111+
- Deep Learning AMI Neuron TensorFlow 2.10 (Ubuntu 20.04)
125112

126113

127114
Virtual Environments pre-installed
@@ -137,35 +124,20 @@ Virtual Environments pre-installed
137124
- Neuron Libraries supported
138125
- Virtual Environment
139126

140-
* - Deep Learning AMI Neuron PyTorch 2.1 (Ubuntu 22.04)
141-
- torch-neuronx, neuronx-distributed
142-
- /opt/aws_neuron_venv_pytorch
143-
144-
* - Deep Learning AMI Neuron PyTorch 1.13 (Ubuntu 22.04)
145-
- torch-neuronx, neuronx-distributed
146-
- /opt/aws_neuron_venv_pytorch
147-
148-
* - Deep Learning AMI Neuron PyTorch 1.13 (Ubuntu 22.04)
149-
- torch-neuron
150-
- /opt/aws_neuron_venv_pytorch_inf1
151-
152-
* - Deep Learning AMI Neuron PyTorch 1.13 (Ubuntu 20.04)
153-
- torch-neuronx, neuronx-distributed
154-
- /opt/aws_neuron_venv_pytorch
155-
156-
* - Deep Learning AMI Neuron PyTorch 1.13 (Ubuntu 20.04)
157-
- torch-neuron
158-
- /opt/aws_neuron_venv_pytorch_inf1
159-
160-
* - Deep Learning AMI Neuron TensorFlow 2.10 (Ubuntu 20.04)
127+
* - Deep Learning AMI Neuron TensorFlow 2.10 (Ubuntu 22.04)
161128
- tensorflow-neuronx
162-
- /opt/aws_neuron_venv_tensorflow
163-
164-
You can easily get started with the single framework DLAMI through AWS console by following one of the corresponding setup guides . If you are looking to
165-
use the Neuron DLAMI in your cloud automation flows , Neuron also supports :ref:`SSM parameters <ssm-parameter-neuron-dlami>` to easily retrieve the latest DLAMI id.
129+
- /opt/aws_neuronx_venv_tensorflow_2_10
166130

131+
* - Deep Learning AMI Neuron TensorFlow 2.10 (Ubuntu 20.04)
132+
- tensorflow-neuronx
133+
- /opt/aws_neuron_venv_tensorflow_2_10
167134

135+
* - Deep Learning AMI Neuron TensorFlow 2.10 (Ubuntu 22.04)
136+
- tensorflow-neuron (Inf1)
137+
- /opt/aws_neuron_venv_tensorflow_2_10_inf1
168138

139+
You can easily get started with the single framework DLAMI through AWS console by following one of the corresponding setup guides . If you are looking to
140+
use the Neuron DLAMI in your cloud automation flows , Neuron also supports :ref:`SSM parameters <ssm-parameter-neuron-dlami>` to easily retrieve the latest DLAMI id.
169141

170142
Neuron Base DLAMI
171143
-----------------
@@ -182,15 +154,15 @@ Base DLAMIs supported
182154
:class: table-smaller-font-size
183155

184156
* - Operating System
185-
- Neuron Instances Supported
157+
- Neuron Instances Supported
186158
- DLAMI Name
187159

188160
* - Ubuntu 22.04
189-
- Inf1, Inf2, Trn1, Trn1n
161+
- Inf1, Inf2, Trn1, Trn1n
190162
- Deep Learning Base Neuron AMI (Ubuntu 22.04)
191163

192164
* - Ubuntu 20.04
193-
- Inf1, Inf2, Trn1, Trn1n
165+
- Inf1, Inf2, Trn1, Trn1n
194166
- Deep Learning Base Neuron AMI (Ubuntu 20.04)
195167

196168

@@ -205,9 +177,9 @@ In the future releases, we will add support for finding the DLAMI id using SSM p
205177

206178

207179
Finding specific DLAMI image id with the latest neuron release
208-
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
180+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
209181

210-
You can find the DLAMI that supports latest Neuron SDK by using the SSM get-parameter.
182+
You can find the DLAMI that supports latest Neuron SDK by using the SSM get-parameter.
211183

212184

213185
.. code-block::
@@ -226,7 +198,7 @@ The SSM parameter prefix for each DLAMI can be seen below
226198
SSM Parameter Prefix
227199
""""""""""""""""""""
228200
.. list-table::
229-
:widths: 20 39
201+
:widths: 20 39
230202
:header-rows: 1
231203
:align: left
232204
:class: table-smaller-font-size
@@ -236,18 +208,12 @@ SSM Parameter Prefix
236208

237209
* - Deep Learning AMI Neuron (Ubuntu 22.04)
238210
- /aws/service/neuron/dlami/multi-framework/ubuntu-22.04
239-
211+
240212
* - Deep Learning AMI Neuron (Amazon Linux 2023)
241213
- /aws/service/neuron/dlami/multi-framework/amazon-linux-2023
242214

243-
* - Deep Learning AMI Neuron PyTorch 2.1 (Ubuntu 22.04)
244-
- /aws/service/neuron/dlami/pytorch-2.1/ubuntu-22.04
245-
246-
* - Deep Learning AMI Neuron PyTorch 1.13 (Ubuntu 22.04)
247-
- /aws/service/neuron/dlami/pytorch-1.13/ubuntu-22.04
248-
249-
* - Deep Learning AMI Neuron PyTorch 1.13 (Ubuntu 20.04)
250-
- /aws/service/neuron/dlami/pytorch-1.13/ubuntu-20.04
215+
* - Deep Learning AMI Neuron TensorFlow 2.10 (Ubuntu 22.04)
216+
- /aws/service/neuron/dlami/tensorflow-2.10/ubuntu-22.04
251217

252218
* - Deep Learning AMI Neuron TensorFlow 2.10 (Ubuntu 20.04)
253219
- /aws/service/neuron/dlami/tensorflow-2.10/ubuntu-20.04
@@ -273,7 +239,7 @@ For example to find the latest DLAMI id for Multi-Framework DLAMI (Ubuntu 22) yo
273239
You can find all available parameters supported in Neuron DLAMis via CLI
274240

275241
.. code-block::
276-
242+
277243
aws ssm get-parameters-by-path \
278244
--region us-east-1 \
279245
--path /aws/service/neuron \
@@ -288,14 +254,14 @@ Use SSM Parameter to launch instance directly via CLI
288254
"""""""""""""""""""""""""""""""""""""""""""""""""""""
289255

290256
You can use CLI to find the latest DLAMI id and also launch the instance simulataneuosly.
291-
Below code snippet shows an example of launching inf2 instance using multi-framework DLAMI
257+
Below code snippet shows an example of launching inf2 instance using multi-framework DLAMI
292258

293259

294260
.. code-block::
295261
296262
aws ec2 run-instances \
297263
--region us-east-1 \
298-
--image-id resolve:ssm:/aws/service/neuron/dlami/pytorch-1.13/amazon-linux-2/latest/image_id \
264+
--image-id resolve:ssm:/aws/service/neuron/dlami/tensorflow-2.10/ubuntu-22.04/latest/image_id \
299265
--count 1 \
300266
--instance-type inf2.48xlarge \
301267
--key-name <my-key-pair> \
@@ -307,7 +273,7 @@ Use SSM alias in EC2 launch templates
307273
"""""""""""""""""""""""""""""""""""""
308274

309275

310-
SSM Parameters can also be used directly in launch templates. So, you can update your Auto Scaling groups to use new AMI IDs without needing to create new launch templates or new versions of launch templates each time an AMI ID changes.
276+
SSM Parameters can also be used directly in launch templates. So, you can update your Auto Scaling groups to use new AMI IDs without needing to create new launch templates or new versions of launch templates each time an AMI ID changes.
311277
Ref: https://docs.aws.amazon.com/autoscaling/ec2/userguide/using-systems-manager-parameters.html
312278

313279

frameworks/mxnet-neuron/setup/mxnet-install-prev-al2023.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ This section will assist you to install previous Neuron releases.
1212

1313
.. tab-set::
1414

15+
.. tab-item:: Neuron 2.20.0
16+
17+
.. program-output:: python3 src/helperscripts/n2-helper.py --install-type=install --category=compiler_framework --framework=mxnet --framework-version=1.8.0 --neuron-version=2.20.0 --file=src/helperscripts/n2-manifest.json --os=amazonlinux2023 --instance=inf1 --ami=non-dlami
18+
1519
.. tab-item:: Neuron 2.19.0
1620

1721
.. program-output:: python3 src/helperscripts/n2-helper.py --install-type=install --category=compiler_framework --framework=mxnet --framework-version=1.8.0 --neuron-version=2.19.0 --file=src/helperscripts/n2-manifest.json --os=amazonlinux2023 --instance=inf1 --ami=non-dlami
1822

1923
.. tab-item:: Neuron 2.18.0
2024

2125
.. program-output:: python3 src/helperscripts/n2-helper.py --install-type=install --category=compiler_framework --framework=mxnet --framework-version=1.8.0 --neuron-version=2.18.0 --file=src/helperscripts/n2-manifest.json --os=amazonlinux2023 --instance=inf1 --ami=non-dlami
22-
23-
.. tab-item:: Neuron 2.17.0
24-
25-
.. program-output:: python3 src/helperscripts/n2-helper.py --install-type=install --category=compiler_framework --framework=mxnet --framework-version=1.8.0 --neuron-version=2.17.0 --file=src/helperscripts/n2-manifest.json --os=amazonlinux2023 --instance=inf1 --ami=non-dlami

frameworks/mxnet-neuron/setup/mxnet-install-prev-u20.rst

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,13 @@ This section will assist you to install previous Neuron releases.
1212

1313
.. tab-set::
1414

15+
.. tab-item:: Neuron 2.20.0
16+
.. program-output:: python3 src/helperscripts/n2-helper.py --install-type=install --category=compiler_framework --framework=mxnet --framework-version=1.8.0 --neuron-version=2.20.0 --file=src/helperscripts/n2-manifest.json --os=ubuntu20 --instance=inf1 --ami=non-dlami
17+
1518
.. tab-item:: Neuron 2.19.0
1619

1720
.. program-output:: python3 src/helperscripts/n2-helper.py --install-type=install --category=compiler_framework --framework=mxnet --framework-version=1.8.0 --neuron-version=2.19.0 --file=src/helperscripts/n2-manifest.json --os=ubuntu20 --instance=inf1 --ami=non-dlami
1821

1922
.. tab-item:: Neuron 2.18.0
2023

2124
.. program-output:: python3 src/helperscripts/n2-helper.py --install-type=install --category=compiler_framework --framework=mxnet --framework-version=1.8.0 --neuron-version=2.18.0 --file=src/helperscripts/n2-manifest.json --os=ubuntu20 --instance=inf1 --ami=non-dlami
22-
23-
24-
.. tab-item:: Neuron 2.17.0
25-
26-
.. program-output:: python3 src/helperscripts/n2-helper.py --install-type=install --category=compiler_framework --framework=mxnet --framework-version=1.8.0 --neuron-version=2.17.0 --file=src/helperscripts/n2-manifest.json --os=ubuntu20 --instance=inf1 --ami=non-dlami
27-
28-
29-
.. tab-item:: Neuron 2.16.0
30-
31-
.. program-output:: python3 src/helperscripts/n2-helper.py --install-type=install --category=compiler_framework --framework=mxnet --framework-version=1.8.0 --neuron-version=2.16.0 --file=src/helperscripts/n2-manifest.json --os=ubuntu20 --instance=inf1 --ami=non-dlami

frameworks/mxnet-neuron/setup/mxnet-install-prev-u22.rst

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,14 @@ This section will assist you to install previous Neuron releases.
1212

1313
.. tab-set::
1414

15+
.. tab-item:: Neuron 2.20.0
16+
17+
.. program-output:: python3 src/helperscripts/n2-helper.py --install-type=install --category=compiler_framework --framework=mxnet --framework-version=1.8.0 --neuron-version=2.20.0 --file=src/helperscripts/n2-manifest.json --os=ubuntu22 --instance=inf1 --ami=non-dlami
18+
1519
.. tab-item:: Neuron 2.19.0
1620

1721
.. program-output:: python3 src/helperscripts/n2-helper.py --install-type=install --category=compiler_framework --framework=mxnet --framework-version=1.8.0 --neuron-version=2.19.0 --file=src/helperscripts/n2-manifest.json --os=ubuntu22 --instance=inf1 --ami=non-dlami
1822

1923
.. tab-item:: Neuron 2.18.0
2024

2125
.. program-output:: python3 src/helperscripts/n2-helper.py --install-type=install --category=compiler_framework --framework=mxnet --framework-version=1.8.0 --neuron-version=2.18.0 --file=src/helperscripts/n2-manifest.json --os=ubuntu22 --instance=inf1 --ami=non-dlami
22-
23-
.. tab-item:: Neuron 2.17.0
24-
25-
.. program-output:: python3 src/helperscripts/n2-helper.py --install-type=install --category=compiler_framework --framework=mxnet --framework-version=1.8.0 --neuron-version=2.17.0 --file=src/helperscripts/n2-manifest.json --os=ubuntu22 --instance=inf1 --ami=non-dlami
26-
27-
.. tab-item:: Neuron 2.16.0
28-
29-
.. program-output:: python3 src/helperscripts/n2-helper.py --install-type=install --category=compiler_framework --framework=mxnet --framework-version=1.8.0 --neuron-version=2.16.0 --file=src/helperscripts/n2-manifest.json --os=ubuntu22 --instance=inf1 --ami=non-dlami

frameworks/tensorflow/tensorflow-neuron/setup/tensorflow-install-prev-al2023.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ This section will assist you to install previous Neuron releases.
1111

1212
.. tab-set::
1313

14+
.. tab-item:: Neuron 2.20.0
15+
16+
.. program-output:: python3 src/helperscripts/n2-helper.py --install-type=install --category=compiler_framework --framework=tensorflow --framework-version=2.10.1 --neuron-version=2.20.0 --file=src/helperscripts/n2-manifest.json --os=amazonlinux2023 --instance=inf1 --ami=non-dlami
17+
1418
.. tab-item:: Neuron 2.19.0
1519

1620
.. program-output:: python3 src/helperscripts/n2-helper.py --install-type=install --category=compiler_framework --framework=tensorflow --framework-version=2.10.1 --neuron-version=2.19.0 --file=src/helperscripts/n2-manifest.json --os=amazonlinux2023 --instance=inf1 --ami=non-dlami
1721

1822
.. tab-item:: Neuron 2.18.0
1923

2024
.. program-output:: python3 src/helperscripts/n2-helper.py --install-type=install --category=compiler_framework --framework=tensorflow --framework-version=2.10.1 --neuron-version=2.18.0 --file=src/helperscripts/n2-manifest.json --os=amazonlinux2023 --instance=inf1 --ami=non-dlami
21-
22-
.. tab-item:: Neuron 2.17.0
23-
24-
.. program-output:: python3 src/helperscripts/n2-helper.py --install-type=install --category=compiler_framework --framework=tensorflow --framework-version=2.10.1 --neuron-version=2.17.0 --file=src/helperscripts/n2-manifest.json --os=amazonlinux2023 --instance=inf1 --ami=non-dlami

0 commit comments

Comments
 (0)