Skip to content

Commit 7700f6e

Browse files
Merge pull request #3328 from ndingle-arm/armpl-26.01.1
Update ArmPL guide for 26.01.1 release
2 parents 09f168f + 921c314 commit 7700f6e

1 file changed

Lines changed: 15 additions & 16 deletions

File tree

content/install-guides/armpl.md

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -83,33 +83,33 @@ For more information, see [Get started with Arm Performance Libraries](https://d
8383
[Download](https://developer.arm.com/downloads/-/arm-performance-libraries) the appropriate package for your macOS distribution.
8484

8585
{{% notice Note %}}
86-
The following commands use Arm Performance Libraries version 26.01. The same commands work with other versions. Replace the file used in these steps with the file for your version of choice. To find the latest version, see [Arm Performance Libraries downloads](https://developer.arm.com/downloads/-/arm-performance-libraries).
86+
The following commands use Arm Performance Libraries version 26.01.1. The same commands work with other versions. Replace the file used in these steps with the file for your version of choice. To find the latest version, see [Arm Performance Libraries downloads](https://developer.arm.com/downloads/-/arm-performance-libraries).
8787
{{% /notice %}}
8888

8989
In a terminal, run the following command to download the macOS package:
9090
```console
91-
wget https://developer.arm.com/-/cdn-downloads/permalink/Arm-Performance-Libraries/Version_26.01/arm-performance-libraries_26.01_macOS.tgz
91+
wget https://developer.arm.com/-/cdn-downloads/permalink/Arm-Performance-Libraries/Version_26.01.1/arm-performance-libraries_26.01.1_macOS.tgz
9292
```
9393

9494
Use tar to extract the file:
9595
```console
96-
tar zxvf arm-performance-libraries_26.01_macOS.tgz
96+
tar zxvf arm-performance-libraries_26.01.1_macOS.tgz
9797
```
9898

9999
The output is similar to:
100100
```console
101-
armpl_26.01_flang-21.dmg
101+
armpl_26.01.1_flang-21.dmg
102102
```
103103

104104
Mount the disk image by running the following command from a terminal:
105105
```console
106-
hdiutil attach armpl_26.01_flang-21.dmg
106+
hdiutil attach armpl_26.01.1_flang-21.dmg
107107
```
108108

109109
Now run the installation script as a superuser:
110110

111111
```console
112-
/Volumes/armpl_26.01_flang-21_installer/armpl_26.01_flang-21_install.sh -y
112+
/Volumes/armpl_26.01.1_flang-21_installer/armpl_26.01.1_flang-21_install.sh -y
113113
```
114114

115115
Using this command, you automatically accept the End User License Agreement and install packages to the `/opt/arm` directory. If you want to change the installation directory location, use the `--install_dir=` option with the script and provide the desired directory location.
@@ -141,25 +141,25 @@ Download the appropriate package for your Linux distribution. The `deb`-based in
141141
The following instructions are for `deb`-based installers for GCC users.
142142

143143
{{% notice Note %}}
144-
The following commands use Arm Performance Libraries version 26.01. The same commands work with other versions. Replace the file used in these steps with the file for your version of choice. To find the latest version, see [Arm Performance Libraries downloads](https://developer.arm.com/downloads/-/arm-performance-libraries).
144+
The following commands use Arm Performance Libraries version 26.01.1. The same commands work with other versions. Replace the file used in these steps with the file for your version of choice. To find the latest version, see [Arm Performance Libraries downloads](https://developer.arm.com/downloads/-/arm-performance-libraries).
145145
{{% /notice %}}
146146

147147
In a terminal, run the following command to download the Debian package:
148148

149149
```console
150-
wget https://developer.arm.com/-/cdn-downloads/permalink/Arm-Performance-Libraries/Version_26.01/arm-performance-libraries_26.01_deb_gcc.tar
150+
wget https://developer.arm.com/-/cdn-downloads/permalink/Arm-Performance-Libraries/Version_26.01.1/arm-performance-libraries_26.01.1_deb_gcc.tar
151151
```
152152

153153
Use `tar` to extract the file and then change directory:
154154

155155
```console
156-
tar xf arm-performance-libraries_26.01_deb_gcc.tar
156+
tar xf arm-performance-libraries_26.01.1_deb_gcc.tar
157157
```
158158

159159
Run the installation script as a super user:
160160

161161
```console
162-
sudo ./arm-performance-libraries_26.01_deb/arm-performance-libraries_26.01_deb.sh --accept
162+
sudo ./arm-performance-libraries_26.01.1_deb/arm-performance-libraries_26.01.1_deb.sh --accept
163163
```
164164

165165
Using the `--accept` switch, you automatically accept the End User License Agreement and the packages are installed to the `/opt/arm` directory.
@@ -168,14 +168,13 @@ If you want to change the installation directory location, use the `--install-to
168168

169169
### Download and install Arm Performance Libraries using system packages
170170

171-
Arm Performance Libraries are available to install using Linux system package managers. The following instructions are for the Ubuntu system package manager `apt` command.
171+
Arm Performance Libraries are available to install using Linux system package managers. The following instructions are for the Ubuntu 24.04 system package manager `apt` command.
172172

173173
Add the Arm Performance Libraries `apt` package repository to your system:
174174

175175
```bash
176-
. /etc/os-release
177-
curl "https://developer.arm.com/packages/arm-toolchains:${NAME,,}-${VERSION_ID/%.*/}/${VERSION_CODENAME}/Release.key" | sudo tee /etc/apt/trusted.gpg.d/developer-arm-com.asc
178-
echo "deb https://developer.arm.com/packages/arm-toolchains:${NAME,,}-${VERSION_ID/%.*/}/${VERSION_CODENAME}/ ./" | sudo tee /etc/apt/sources.list.d/developer-arm-com.list
176+
curl -O https://developer.arm.com/packages/arm-toolchains/ubuntu/pool/arm-toolchains-repository_2-1~noble_all.deb
177+
sudo dpkg -i arm-toolchains-repository_2-1~noble_all.deb
179178
sudo apt update
180179
```
181180

@@ -214,13 +213,13 @@ module avail
214213
The output is similar to:
215214

216215
```output
217-
armpl/26.01.0_gcc
216+
armpl/26.01.1_gcc
218217
```
219218

220219
Load the appropriate module:
221220

222221
```console
223-
module load armpl/26.01.0_gcc
222+
module load armpl/26.01.1_gcc
224223
```
225224

226225
To get started with Arm Performance Libraries on Linux, compile and test the examples in the `/opt/arm/<armpl_dir>/examples/` directory, or `<install_dir>/<armpl_dir>/examples/` if you installed to a different location.

0 commit comments

Comments
 (0)