Skip to content

Commit 70d4bad

Browse files
SwRawsystems-assistant[bot]
authored andcommitted
[rdc] Replace readme link rdc -> rocm-systems/projects/rdc
(#1758) Signed-off-by: Galantsev, Dmitrii <dmitrii.galantsev@amd.com> [rocm-systems] ROCm/rocm-systems#1758 (commit cb257ab)
1 parent c9635ac commit 70d4bad

File tree

8 files changed

+20
-16
lines changed

8 files changed

+20
-16
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Full documentation for RDC is available at [ROCm DataCenter Tool User Guide](htt
1212
### Changed
1313

1414
- Completed migration from legacy [ROCProfiler](https://rocm.docs.amd.com/projects/rocprofiler/en/latest/) to [ROCprofiler-SDK](https://rocm.docs.amd.com/projects/rocprofiler-sdk/en/latest/).
15-
- Reorganized the configuration files internally and improved [README/installation](https://github.com/ROCm/rdc/blob/amd-staging/README.md) instructions.
15+
- Reorganized the configuration files internally and improved [README/installation](https://github.com/ROCm/rocm-systems/blob/develop/projects/rdc/README.md) instructions.
1616
- Updated metrics and monitoring support for the latest AMD data center GPUs.
1717

1818
### Optimized

Docker/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ ENV RDC_LIB_DIR=/opt/rocm/lib/rdc
4444
ENV CMAKE_ROOT=/usr/bin/cmake
4545

4646
# Install gRPC
47-
RUN git clone -b v1.61.0 https://github.com/grpc/grpc --depth=1 --shallow-submodules --recurse-submodules && \
47+
RUN git clone -b v1.67.1 https://github.com/grpc/grpc --depth=1 --shallow-submodules --recurse-submodules && \
4848
cd grpc && \
4949
cmake -B build \
5050
-DgRPC_INSTALL=ON \
@@ -58,8 +58,8 @@ RUN git clone -b v1.61.0 https://github.com/grpc/grpc --depth=1 --shallow-submod
5858
echo "$GRPC_ROOT" | tee /etc/ld.so.conf.d/grpc.conf
5959

6060
# Build and install RDC
61-
RUN git clone https://github.com/ROCm/rdc && \
62-
cd rdc && \
61+
RUN git clone https://github.com/ROCm/rocm-systems --recursive && \
62+
cd rocm-systems/projects/rdc && \
6363
cmake -B build -DGRPC_ROOT="$GRPC_ROOT" \
6464
-DSMIDIR="$SMI_DIR" \
6565
-DBUILD_TESTS=OFF \

Docker/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ git clone https://github.com/ROCm/amdsmi.git
1919
### RDC
2020

2121
```bash
22-
git clone https://github.com/ROCm/rdc.git
22+
git clone https://github.com/ROCm/rocm-systems.git --recursive
2323
```
2424

2525
## Step 2: Build AMDSMI Base Image
@@ -33,7 +33,7 @@ git clone https://github.com/ROCm/rdc.git
3333

3434
## Step 3: Build RDC Image
3535

36-
1. Navigate to the `rdc` directory on your system.
36+
1. Navigate to the `rocm-systems/projects/rdc` directory on your system.
3737
2. Navigate into the `/Docker` directory.
3838
3. Build the Docker image using the following command:
3939

@@ -74,4 +74,4 @@ sudo docker run --rm -ti \
7474
amdsmi-image
7575
```
7676
> [!IMPORTANT]
77-
> Make sure that you are in the `amdsmi` directory before running.
77+
> Make sure that you are in the `amdsmi` directory before running.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,8 @@ If you prefer to build RDC from source, follow the steps below.
168168
1. **Clone the RDC Repository:**
169169

170170
```bash
171-
git clone https://github.com/ROCm/rdc
172-
cd rdc
171+
git clone https://github.com/ROCm/rocm-systems --recursive
172+
cd rocm-systems/projects/rdc
173173
```
174174

175175
2. **Configure the Build:**

docs/index.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@ Here are the main RDC features:
1616
* Integration with third-party tools
1717
* Open source
1818

19-
The code is open and hosted at `<https://github.com/ROCm/rdc>`_.
19+
The code is open and hosted at `<https://github.com/ROCm/rocm-systems/tree/develop/projects/rdc>`_.
20+
21+
.. note::
22+
23+
The RDC repository for ROCm 7.0 and earlier is located at `<https://github.com/ROCm/rdc>`_.
2024

2125
.. grid:: 2
2226
:gutter: 3

docs/install/handbook.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ To build and install, clone the RDC source code from GitHub and use CMake.
1818

1919
.. code-block:: shell
2020
21-
$ git clone <GitHub for RDC>
22-
$ cd rdc
21+
$ git clone 'https://github.com/ROCm/rocm-systems' --recursive
22+
$ cd rocm-systems/projects/rdc
2323
$ mkdir -p build; cd build
2424
$ cmake -DROCM_DIR=/opt/rocm -DGRPC_ROOT="$GRPC_PROTOC_ROOT"..
2525
$ make
@@ -44,7 +44,7 @@ Build Unit Tests for RDC Tool
4444

4545
.. code-block:: shell
4646
47-
$ cd rdc/tests/rdc_tests
47+
$ cd rocm-systems/projects/rdc/tests/rdc_tests
4848
$ mkdir -p build; cd build
4949
$ cmake -DROCM_DIR=/opt/rocm -DGRPC_ROOT="$GRPC_PROTOC_ROOT"..
5050
$ make

docs/install/install.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ Build RDC
8787

8888
.. code-block:: shell
8989
90-
git clone https://github.com/ROCm/rdc
91-
cd rdc
90+
git clone https://github.com/ROCm/rocm-systems --recursive
91+
cd rocm-systems/projects/rdc
9292
9393
2. Configure the build:
9494

docs/tutorial/job_stats_sample.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Job stats sample code
99
**********************
1010

11-
The following pseudocode shows how RDC API can be directly used to record GPU statistics associated with any job or workload. Refer to the `example code <https://github.com/ROCm/rdc/tree/amd-staging/example>`_ on how to build it.
11+
The following pseudocode shows how RDC API can be directly used to record GPU statistics associated with any job or workload. Refer to the `example code <https://github.com/ROCm/rocm-systems/tree/develop/projects/rdc/example>`_ on how to build it.
1212

1313
For more information on Job stats, see :ref:`Job stats <job-stats>`.
1414

0 commit comments

Comments
 (0)