"...composable_kernel_rocm.git" did not exist on "f4dfc060b79987580da9afc481dad746d5b3178d"
Unverified Commit 61545bda authored by Bartlomiej Wroblewski's avatar Bartlomiej Wroblewski Committed by GitHub
Browse files

Update the recommended version of ROCm in docs (#1110)

parent d8970020
...@@ -30,7 +30,7 @@ run a docker container:: ...@@ -30,7 +30,7 @@ run a docker container::
--group-add sudo \ --group-add sudo \
-w /root/workspace \ -w /root/workspace \
-v ${PATH_TO_LOCAL_WORKSPACE}:/root/workspace \ -v ${PATH_TO_LOCAL_WORKSPACE}:/root/workspace \
rocm/composable_kernel:ck_ub20.04_rocm5.6 \ rocm/composable_kernel:ck_ub20.04_rocm6.0 \
/bin/bash /bin/bash
and build the CK:: and build the CK::
...@@ -76,11 +76,11 @@ The docker images have everything you need for running CK including: ...@@ -76,11 +76,11 @@ The docker images have everything you need for running CK including:
Which image is right for me? Which image is right for me?
------------------------------------- -------------------------------------
Let's take a look at the image naming, for example ``ck_ub20.04_rocm5.6``. The image specs are: Let's take a look at the image naming, for example ``ck_ub20.04_rocm6.0``. The image specs are:
* ``ck`` - made for running Composable Kernel; * ``ck`` - made for running Composable Kernel;
* ``ub20.04`` - based on Ubuntu 20.04; * ``ub20.04`` - based on Ubuntu 20.04;
* ``rocm5.6`` - ROCm platform version 5.6. * ``rocm6.0`` - ROCm platform version 6.0.
So just pick the right image for your project dependencies and you're all set. So just pick the right image for your project dependencies and you're all set.
......
...@@ -72,8 +72,8 @@ First let's clone the library and rebase to the tested version:: ...@@ -72,8 +72,8 @@ First let's clone the library and rebase to the tested version::
To make our lives easier we prepared To make our lives easier we prepared
`docker images <https://hub.docker.com/r/rocm/composable_kernel>`_ with all the necessary `docker images <https://hub.docker.com/r/rocm/composable_kernel>`_ with all the necessary
dependencies. Pick the right image and create a container. In this tutorial we use dependencies. Pick the right image and create a container. In this tutorial we use
``rocm/composable_kernel:ck_ub20.04_rocm5.6`` image, it is based on Ubuntu 20.04 and ``rocm/composable_kernel:ck_ub20.04_rocm6.0`` image, it is based on Ubuntu 20.04 and
ROCm v5.6. ROCm v6.0.
If your current folder is ``${HOME}``, start the docker container with:: If your current folder is ``${HOME}``, start the docker container with::
...@@ -83,7 +83,7 @@ If your current folder is ``${HOME}``, start the docker container with:: ...@@ -83,7 +83,7 @@ If your current folder is ``${HOME}``, start the docker container with::
--group-add sudo \ --group-add sudo \
-w /root/workspace \ -w /root/workspace \
-v ${HOME}:/root/workspace \ -v ${HOME}:/root/workspace \
rocm/composable_kernel:ck_ub20.04_rocm5.6 \ rocm/composable_kernel:ck_ub20.04_rocm6.0 \
/bin/bash /bin/bash
If your current folder is different from ``${HOME}``, adjust the line ``-v ${HOME}:/root/workspace`` If your current folder is different from ``${HOME}``, adjust the line ``-v ${HOME}:/root/workspace``
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment