Skip to content

Commit 6057801

Browse files
committed
Add doc/script updates for 19.0-2 release
1 parent ebe6e69 commit 6057801

14 files changed

+79
-60
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AOMP - V 19.0-0
1+
AOMP - V 19.0-2
22
==============
33

44
This is README.md for https://github.com/ROCm/aomp.
@@ -8,8 +8,8 @@ This is the base repository for AOMP. Use this github repository for
88
documentation, and
99
[examples](https://github.com/ROCm/aomp/tree/master/examples).
1010

11-
The last [release is AOMP 19.0-0](https://github.com/ROCm/aomp/releases).
12-
Currently AOMP 19.0-1 is under development.
11+
The last [release is AOMP 19.0-2](https://github.com/ROCm/aomp/releases).
12+
Currently AOMP 19.0-3 is under development.
1313

1414
Attention Users! Please use this repository for [issues](https://github.com/ROCm/aomp/issues).
1515
Do not put issues in any of the source code repositories.

bin/README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ These are some important environment variables and their default values.
7575
| AOMP_REPOS | $HOME/git/aomp19.0 | The base directory for all AOMP build repositories
7676
| AOMP_STANDALONE_BUILD | 1 | Build all components, do NOT use installed ROCm
7777
| AOMP_VERSION | 19.0 | Clang version.
78-
| AOMP_VERSION_MOD | 1 | This implies the next release will be AOMP_19.0-1.
78+
| AOMP_VERSION_MOD | 3 | This implies the next release will be AOMP_19.0-3.
7979
| AOMP_VERSION_STRING | $AOMP_VERSION-$AOMP_VERSION_MOD |
8080
| AOMP_USE_NINJA | 0 | Use ninja instead of make to build certain components
8181
| GFXLIST | gfx700 gfx701 gfx801 gfx803 | List of AMDGPU gpus to build for
@@ -274,17 +274,17 @@ The install location is defined by the $AOMP environment variable. The value of
274274
That is, the physical installation will be in directory name formed by concatonating the version string to the value of $AOMP.
275275
The "build_project.sh install" script will make a symbolic link from the physical directory to the symbolic directory $AOMP.
276276
The default value for AOMP is $HOME/rocm/aomp.
277-
For example, when building AOMP version 19.0-1 the install scripts will put all files and directories
278-
in $HOME/rocm/aomp_19.0-1 and create a symbolic link as follows:
277+
For example, when building AOMP version 19.0-3 the install scripts will put all files and directories
278+
in $HOME/rocm/aomp_19.0-3 and create a symbolic link as follows:
279279

280280
```
281-
ln -sf ${AOMP}_19.0-1 ${AOMP}
281+
ln -sf ${AOMP}_19.0-3 ${AOMP}
282282
```
283283
All testing for AOMP uses the environment variable AOMP to locate the installation. This makes it easy to switch between versions of AOMP for testing by simply changing the environment variable AOMP. You do NOT need to change the symbolic link.
284-
For example, if the aomp symbolic link currently points to aomp_19.0-1 and you want to test aomp_19.0-0, do this:
284+
For example, if the aomp symbolic link currently points to aomp_19.0-3 and you want to test aomp_19.0-2, do this:
285285

286286
```
287-
export AOMP=$HOME/rocm/aomp_19.0-0
287+
export AOMP=$HOME/rocm/aomp_19.0-2
288288
```
289289

290290
The aomp package installs in /usr/lib/aomp_\<version_string\> and symlinks /usr/lib/aomp to the versioned directory. To test the installed package, set AOMP to /usr/lib/aomp or /usr/lib/aomp_\<version_string\>.

bin/build_aomp_docker_release.sh

+7-7
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
###########################################################
1010

1111
set -e
12-
AOMP_VERSION_STRING=${AOMP_VERSION_STRING:-19.0-0}
12+
AOMP_VERSION_STRING=${AOMP_VERSION_STRING:-19.0-2}
1313
AOMP_VERSION=${AOMP_VERSION:-19.0}
1414
#DOCKERX_HOST=${DOCKERX_HOST:-$HOME/dockerx}
1515
DOCKERX_HOST=$HOME/dockerx
@@ -57,17 +57,17 @@ pip_install_2204="python3 -m pip install --ignore-installed --no-cache-dir barec
5757
# Populate prereq arrays
5858
prereq_array["ubuntu1804"]="apt-get -y update && apt-get install -y git cmake wget vim openssl libssl-dev libelf-dev kmod pciutils gcc g++ pkg-config libpci-dev libnuma-dev libffi-dev git python libopenmpi-dev gawk mesa-common-dev libtool python3 texinfo libbison-dev bison flex libbabeltrace-dev python3-pip libncurses5-dev liblzma-dev python3-setuptools python3-dev libpython3.8-dev libudev-dev libgmp-dev debianutils devscripts cli-common-dev rsync sudo && $pip_install"
5959

60-
prereq_array["ubuntu2004"]="apt-get -y update && apt-get install -y git cmake wget vim openssl libssl-dev libelf-dev kmod pciutils gcc g++ pkg-config libpci-dev libnuma-dev libffi-dev git python libopenmpi-dev gawk mesa-common-dev libtool python3 texinfo libbison-dev bison flex libbabeltrace-dev python3-pip libncurses5-dev liblzma-dev python3-setuptools python3-dev libpython3.8-dev libudev-dev libgmp-dev debianutils devscripts cli-common-dev rsync libsystemd-dev libdw-dev libgtest-dev sudo ccache && $pip_install"
60+
prereq_array["ubuntu2004"]="apt-get -y update && apt-get install -y git cmake wget vim openssl libssl-dev libelf-dev kmod pciutils gcc g++ pkg-config libpci-dev libnuma-dev libffi-dev git python libopenmpi-dev gawk mesa-common-dev libtool python3 texinfo libbison-dev bison flex libbabeltrace-dev python3-pip libncurses5-dev liblzma-dev python3-setuptools python3-dev libpython3.8-dev libudev-dev libgmp-dev debianutils devscripts cli-common-dev rsync libsystemd-dev libdw-dev libgtest-dev sudo ccache libgmp-dev libmpfr-dev && $pip_install"
6161

62-
prereq_array["ubuntu2204"]="apt-get -y update && apt-get install -y git cmake wget vim openssl libssl-dev libelf-dev kmod pciutils gcc g++ pkg-config libpci-dev libnuma-dev libffi-dev git libopenmpi-dev gawk mesa-common-dev libtool python3 texinfo libbison-dev bison flex libbabeltrace-dev python3-pip libncurses5-dev liblzma-dev python3-setuptools python3-dev libpython3.10-dev libudev-dev libgmp-dev debianutils devscripts cli-common-dev rsync libsystemd-dev libdw-dev libgtest-dev libstdc++-12-dev sudo python3-lxml ccache && $pip_install_2204"
62+
prereq_array["ubuntu2204"]="apt-get -y update && apt-get install -y git cmake wget vim openssl libssl-dev libelf-dev kmod pciutils gcc g++ pkg-config libpci-dev libnuma-dev libffi-dev git libopenmpi-dev gawk mesa-common-dev libtool python3 texinfo libbison-dev bison flex libbabeltrace-dev python3-pip libncurses5-dev liblzma-dev python3-setuptools python3-dev libpython3.10-dev libudev-dev libgmp-dev debianutils devscripts cli-common-dev rsync libsystemd-dev libdw-dev libgtest-dev libstdc++-12-dev sudo python3-lxml ccache libgmp-dev libmpfr-dev && $pip_install_2204"
6363

64-
prereq_array["centos7"]="yum install -y gcc-c++ git cmake wget vim openssl-devel elfutils-libelf-devel pciutils-devel numactl-devel libffi-devel mesa-libGL-devel libtool texinfo bison flex ncurses-devel expat-devel xz-devel libbabeltrace-devel gmp-devel rpm-build rsync systemd-devel gtest-devel libpciaccess-devel elfutils-devel ccache libxml2-devel xz-lzma-compat devtoolset-9 devtoolset-9-libatomic-devel devtoolset-9-elfutils-libelf-devel scl-utils && yum remove -y python3*"
64+
prereq_array["centos7"]="yum install -y gcc-c++ git cmake wget vim openssl-devel elfutils-libelf-devel pciutils-devel numactl-devel libffi-devel mesa-libGL-devel libtool texinfo bison flex ncurses-devel expat-devel xz-devel libbabeltrace-devel gmp-devel rpm-build rsync systemd-devel gtest-devel libpciaccess-devel elfutils-devel ccache libxml2-devel xz-lzma-compat devtoolset-9 devtoolset-9-libatomic-devel devtoolset-9-elfutils-libelf-devel scl-utils mpfr-devel && yum remove -y python3*"
6565

66-
prereq_array["centos8"]="yum install -y dnf-plugins-core && yum config-manager --set-enabled PowerTools && yum install -y gcc-c++ git cmake wget vim openssl-devel elfutils-libelf-devel pciutils-devel numactl-devel libffi-devel mesa-libGL-devel libtool texinfo bison flex ncurses-devel expat-devel xz-devel libbabeltrace-devel gmp-devel rpm-build rsync systemd-devel gtest-devel elfutils-devel ccache python38 python38-devel && yum remove -y python36* && $pip_install"
66+
prereq_array["centos8"]="yum install -y dnf-plugins-core && yum config-manager --set-enabled PowerTools && yum install -y gcc-c++ git cmake wget vim openssl-devel elfutils-libelf-devel pciutils-devel numactl-devel libffi-devel mesa-libGL-devel libtool texinfo bison flex ncurses-devel expat-devel xz-devel libbabeltrace-devel gmp-devel rpm-build rsync systemd-devel gtest-devel elfutils-devel ccache python38 python38-devel mpfr-devel && yum remove -y python36* && $pip_install"
6767

68-
prereq_array["centos9"]="yum install -y dnf-plugins-core gcc-c++ git cmake wget vim openssl-devel elfutils-libelf-devel pciutils-devel numactl-devel libffi-devel mesa-libGL-devel libtool texinfo bison flex ncurses-devel expat-devel xz-devel libbabeltrace-devel gmp-devel rpm-build rsync systemd-devel gtest-devel ccache && $pip_install"
68+
prereq_array["centos9"]="yum install -y dnf-plugins-core gcc-c++ git cmake wget vim openssl-devel elfutils-libelf-devel pciutils-devel numactl-devel libffi-devel mesa-libGL-devel libtool texinfo bison flex ncurses-devel expat-devel xz-devel libbabeltrace-devel gmp-devel rpm-build rsync systemd-devel gtest-devel ccache mpfr-devel && $pip_install"
6969

70-
prereq_array["sles15"]="zypper install -y which cmake wget vim libopenssl-devel elfutils libelf-devel git pciutils-devel libffi-devel gcc gcc-c++ libnuma-devel openmpi2-devel Mesa-libGL-devel libquadmath0 libtool texinfo bison flex babeltrace-devel python3 python3-pip python3-devel python3-setuptools makeinfo libexpat-devel xz-devel gmp-devel rpm-build rsync libdrm-devel libX11-devel systemd-devel libdw-devel hwdata unzip ccache; $pip_install"
70+
prereq_array["sles15"]="zypper install -y which cmake wget vim libopenssl-devel elfutils libelf-devel git pciutils-devel libffi-devel gcc gcc-c++ libnuma-devel openmpi2-devel Mesa-libGL-devel libquadmath0 libtool texinfo bison flex babeltrace-devel python3 python3-pip python3-devel python3-setuptools makeinfo libexpat-devel xz-devel gmp-devel rpm-build rsync libdrm-devel libX11-devel systemd-devel libdw-devel hwdata unzip ccache mpfr-devel; $pip_install"
7171

7272
# Some prep
7373
default_os="ubuntu2004 ubuntu2204 centos7 centos8 centos9 sles15"

bin/debian/changelog

+19
Original file line numberDiff line numberDiff line change
@@ -960,5 +960,24 @@ aomp (18.0-1) UNRELEASED; urgency=medium
960960
*
961961
* Fix regressions:
962962
* #616 llvm-addr2line does not work on AOMP-generated binary.
963+
*
964+
* 19.0-2
965+
* Significant runtime features to support zero-copy for CPU-GPU unified shared
966+
* memory. See subsections below.
967+
* Merge of the LLVM upstream relocation of libomptarget into the high level
968+
* "offload" directory. This establishes the long term objective of the LLVM
969+
* community to unify offload support for different offloading programming models.
970+
* The integrated ROCm components (non-compiler) were built from ROCM 6.1.2 sources.
971+
* Significant enhancements to the gpurun utility including: support for multiple
972+
* devices, heterogeneous devices, malloc control inherited from numa-ctl -m -l
973+
* options, and CPU core binding to same numa node as selected GPU. These changes
974+
* preserve gpurun's ability to oversubscribe (run multiple processes per GPU) by
975+
* segmenting a GPUs CUs to different processes. To be fixed in 19.0-3, gpurun
976+
* fails in TPX mode on MI300X.
977+
* Changes in runtime library locations unique to CPU target triple including
978+
* fixes for lib64 in Red Hat package.
979+
* Support for fp16 and bfloat16 reductions.
980+
* Removed long deprecated utilities mygpu, mymcpu, aompcc, aompExtractRegion,
981+
* clang-ocl, and cloc.sh.
963982

964983
-- Greg Rodgers <Gregory.Rodgers@amd.com> Thu, 19 May 2022 23:34:44 -0500

bin/package.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ class Aomp(MakefilePackage):
1212
""" llvm openmp compiler from AMD"""
1313

1414
homepage = "https://github.com/ROCm-Developer-Tools/aomp"
15-
url = "https://github.com/ROCm-Developer-Tools/aomp/releases/download/rel_19.0-0/aomp-19.0-0.tar.gz"
15+
url = "https://github.com/ROCm-Developer-Tools/aomp/releases/download/rel_19.0-2/aomp-19.0-2.tar.gz"
1616

1717
# Fixme: this will be adjusted when spack create is called. When copying over to your own package.py omit this line.
18-
version('19.0-0', sha256='7ea4e218b171585441278f3562d97779006b12bc3b5dc201901f2d757226da84')
18+
version('19.0-2', sha256='7ea4e218b171585441278f3562d97779006b12bc3b5dc201901f2d757226da84')
1919

2020
family = 'compiler'
2121

docs/CENTOSINSTALL.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ AOMP will install to /usr/lib/aomp. The AOMP environment variable will automatic
55

66
### Download and Install (CentOS 9)
77
```
8-
wget https://github.com/ROCm-Developer-Tools/aomp/releases/download/rel_19.0-0/aomp_CENTOS_9-19.0-0.x86_64.rpm
9-
sudo rpm -i aomp_CENTOS_9-19.0-0.x86_64.rpm
8+
wget https://github.com/ROCm-Developer-Tools/aomp/releases/download/rel_19.0-2/aomp_CENTOS_9-19.0-2.x86_64.rpm
9+
sudo rpm -i aomp_CENTOS_9-19.0-2.x86_64.rpm
1010
```
1111
### Download and Install (CentOS 8)
1212
```
13-
wget https://github.com/ROCm-Developer-Tools/aomp/releases/download/rel_19.0-0/aomp_CENTOS_8-19.0-0.x86_64.rpm
14-
sudo rpm -i aomp_CENTOS_8-19.0-0.x86_64.rpm
13+
wget https://github.com/ROCm-Developer-Tools/aomp/releases/download/rel_19.0-2/aomp_CENTOS_8-19.0-2.x86_64.rpm
14+
sudo rpm -i aomp_CENTOS_8-19.0-2.x86_64.rpm
1515
```
1616
### Download and Install (CentOS 7)
1717
```
18-
wget https://github.com/ROCm-Developer-Tools/aomp/releases/download/rel_19.0-0/aomp_CENTOS_7-19.0-0.x86_64.rpm
19-
sudo rpm -i aomp_CENTOS_7-19.0-0.x86_64.rpm
18+
wget https://github.com/ROCm-Developer-Tools/aomp/releases/download/rel_19.0-2/aomp_CENTOS_7-19.0-2.x86_64.rpm
19+
sudo rpm -i aomp_CENTOS_7-19.0-2.x86_64.rpm
2020
```
2121
Confirm AOMP environment variable is set:
2222
```

docs/NOROOTINSTALL.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ To install the debian package without root access into your home directory, you
88

99
On Ubuntu 20.04:
1010
```
11-
wget https://github.com/ROCm-Developer-Tools/aomp/releases/download/rel_19.0-0/aomp_Ubuntu2004_19.0-0_amd64.deb
12-
dpkg -x aomp_Ubuntu2004_19.0-0_amd64.deb /tmp/temproot
11+
wget https://github.com/ROCm-Developer-Tools/aomp/releases/download/rel_19.0-2/aomp_Ubuntu2004_19.0-2_amd64.deb
12+
dpkg -x aomp_Ubuntu2004_19.0-2_amd64.deb /tmp/temproot
1313
```
1414
On Ubuntu 22.04:
1515
```
16-
wget https://github.com/ROCm-Developer-Tools/aomp/releases/download/rel_19.0-0/aomp_Ubuntu2204_19.0-0_amd64.deb
17-
dpkg -x aomp_Ubuntu2204_19.0-0_amd64.deb /tmp/temproot
16+
wget https://github.com/ROCm-Developer-Tools/aomp/releases/download/rel_19.0-2/aomp_Ubuntu2204_19.0-2_amd64.deb
17+
dpkg -x aomp_Ubuntu2204_19.0-2_amd64.deb /tmp/temproot
1818
```
1919
Move to $HOME and set variables:
2020
```
@@ -31,23 +31,23 @@ To install the rpm package without root access into your home directory, you can
3131
```
3232
For SLES15-SP4:
3333
```
34-
wget https://github.com/ROCm-Developer-Tools/aomp/releases/download/rel_19.0-0/aomp_SLES15_SP4-19.0-0.x86_64.rpm
35-
rpm2cpio aomp_SLES15_SP4-19.0-0.x86_64.rpm | cpio -idmv
34+
wget https://github.com/ROCm-Developer-Tools/aomp/releases/download/rel_19.0-2/aomp_SLES15_SP4-19.0-2.x86_64.rpm
35+
rpm2cpio aomp_SLES15_SP4-19.0-2.x86_64.rpm | cpio -idmv
3636
```
3737
For CentOS/RHEL 7:
3838
```
39-
wget https://github.com/ROCm-Developer-Tools/aomp/releases/download/rel_19.0-0/aomp_CENTOS_7-19.0-0.x86_64.rpm
40-
rpm2cpio aomp_CENTOS_7-19.0-0.x86_64.rpm | cpio -idmv
39+
wget https://github.com/ROCm-Developer-Tools/aomp/releases/download/rel_19.0-2/aomp_CENTOS_7-19.0-2.x86_64.rpm
40+
rpm2cpio aomp_CENTOS_7-19.0-2.x86_64.rpm | cpio -idmv
4141
```
4242
For CentOS 8:
4343
```
44-
wget https://github.com/ROCm-Developer-Tools/aomp/releases/download/rel_19.0-0/aomp_CENTOS_8-19.0-0.x86_64.rpm
45-
rpm2cpio aomp_CENTOS_8-19.0-0.x86_64.rpm | cpio -idmv
44+
wget https://github.com/ROCm-Developer-Tools/aomp/releases/download/rel_19.0-2/aomp_CENTOS_8-19.0-2.x86_64.rpm
45+
rpm2cpio aomp_CENTOS_8-19.0-2.x86_64.rpm | cpio -idmv
4646
```
4747
For CentOS 9:
4848
```
49-
wget https://github.com/ROCm-Developer-Tools/aomp/releases/download/rel_19.0-0/aomp_CENTOS_9-19.0-0.x86_64.rpm
50-
rpm2cpio aomp_CENTOS_9-19.0-0.x86_64.rpm | cpio -idmv
49+
wget https://github.com/ROCm-Developer-Tools/aomp/releases/download/rel_19.0-2/aomp_CENTOS_9-19.0-2.x86_64.rpm
50+
rpm2cpio aomp_CENTOS_9-19.0-2.x86_64.rpm | cpio -idmv
5151
```
5252
Move to $HOME and set variables:
5353
```

docs/RELEASESOURCEINSTALL.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ To build AOMP from source you must: 1. Install certain distribution packages, 2.
1414
To build and install aomp from the release source tarball run these commands:
1515

1616
```
17-
wget https://github.com/ROCm-Developer-Tools/aomp/releases/download/rel_19.0-0/aomp-19.0-0.tar.gz
18-
tar -xzf aomp-19.0-0.tar.gz
17+
wget https://github.com/ROCm-Developer-Tools/aomp/releases/download/rel_19.0-2/aomp-19.0-2.tar.gz
18+
tar -xzf aomp-19.0-2.tar.gz
1919
cd aomp19.0
2020
nohup make &
2121
```
@@ -30,17 +30,17 @@ If you set the environment variable AOMP, the Makefile will install to that dire
3030
Otherwise, the Makefile will install into /usr/local.
3131
So you must have authorization to write into /usr/local if you do not set the environment variable AOMP.
3232
Let's assume you set the environment variable AOMP to "$HOME/rocm/aomp" in .bash_profile.
33-
The build_aomp.sh script will install into $HOME/rocm/aomp_19.0-0 and create a symbolic link from $HOME/rocm/aomp to $HOME/rocm/aomp_19.0-0.
33+
The build_aomp.sh script will install into $HOME/rocm/aomp_19.0-2 and create a symbolic link from $HOME/rocm/aomp to $HOME/rocm/aomp_19.0-2.
3434
This feature allows multiple versions of AOMP to be installed concurrently.
35-
To enable a backlevel version of AOMP, simply set AOMP to $HOME/rocm/aomp_18.0-1.
35+
To enable a backlevel version of AOMP, simply set AOMP to $HOME/rocm/aomp_19.0-0.
3636

3737
## Build AOMP with spack
3838

3939
Assuming your have installed the [prerequisites](SOURCEINSTALL_PREREQUISITE.md), use these commands to fetch the source and build aomp. Currently the aomp configuration is not yet in the spack git hub so you must create the spack package first.
4040

4141
```
42-
wget https://github.com/ROCm-Developer-Tools/aomp/blob/aomp-19.0-0/bin/package.py
43-
spack create -n aomp -t makefile --force https://github.com/ROCm-Developer-Tools/aomp/releases/download/rel_19.0-0/aomp-19.0-0.tar.gz
42+
wget https://github.com/ROCm-Developer-Tools/aomp/blob/aomp-19.0-2/bin/package.py
43+
spack create -n aomp -t makefile --force https://github.com/ROCm-Developer-Tools/aomp/releases/download/rel_19.0-2/aomp-19.0-2.tar.gz
4444
spack edit aomp
4545
spack install aomp
4646
```

docs/RHELINSTALL.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ sudo yum install perl-Digest-MD5 perl-URI-Encode
88
```
99
### Download and Install
1010
```
11-
wget https://github.com/ROCm-Developer-Tools/aomp/releases/download/rel_19.0-0/aomp_CENTOS_7-19.0-0.x86_64.rpm
12-
sudo rpm -i aomp_CENTOS_7-19.0-0.x86_64.rpm
11+
wget https://github.com/ROCm-Developer-Tools/aomp/releases/download/rel_19.0-2/aomp_CENTOS_7-19.0-2.x86_64.rpm
12+
sudo rpm -i aomp_CENTOS_7-19.0-2.x86_64.rpm
1313
```
1414
If CUDA is not installed the installation may cancel, to bypass this:
1515
```
16-
sudo rpm -i --nodeps aomp_CENTOS_7-19.0-0.x86_64.rpm
16+
sudo rpm -i --nodeps aomp_CENTOS_7-19.0-2.x86_64.rpm
1717
```
1818
Confirm AOMP environment variable is set:
1919
```

docs/SLES15INSTALL.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# AOMP SUSE SLES-15-SP4 Install
22
AOMP will install to /usr/lib/aomp. The AOMP environment variable will automatically be set to the install location. This may require a new terminal to be launched to see the change.
33
```
4-
wget https://github.com/ROCm-Developer-Tools/aomp/releases/download/rel_19.0-0/aomp_SLES15_SP4-19.0-0.x86_64.rpm
5-
sudo rpm -i aomp_SLES15_SP4-19.0-0.x86_64.rpm
4+
wget https://github.com/ROCm-Developer-Tools/aomp/releases/download/rel_19.0-2/aomp_SLES15_SP4-19.0-2.x86_64.rpm
5+
sudo rpm -i aomp_SLES15_SP4-19.0-2.x86_64.rpm
66
```
77
Confirm AOMP environment variable is set:
88
```

docs/SOURCEINSTALL.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Source Install V 19.0-1
1+
# Source Install V 19.0-3
22

33
Build and install from sources is possible. However, the source build for AOMP is complex for several reasons.
44
- Many repos are required.
@@ -40,14 +40,14 @@ Here are the commands to do a source build of AOMP:
4040
```
4141

4242
The development version is the next version to be released. It is possible that the development version is broken due to regressions that often occur during development.
43-
These commands will build a previous release of AOMP such as aomp-19.0-0.<br>
43+
These commands will build a previous release of AOMP such as aomp-19.0-2.<br>
4444
<b>Release Branch:</b>
4545
```
4646
export AOMP_VERSION=19.0
4747
export AOMP_REPOS=$HOME/git/aomp${AOMP_VERSION}
4848
mkdir -p $AOMP_REPOS
4949
cd $AOMP_REPOS
50-
git clone -b aomp-19.0-0 https://github.com/ROCm-Developer-Tools/aomp
50+
git clone -b aomp-19.0-2 https://github.com/ROCm-Developer-Tools/aomp
5151
```
5252
<b>Clone and build:</b>
5353
```

0 commit comments

Comments
 (0)