Commit 8c2c08df authored by srawat's avatar srawat
Browse files

Doc fixes

parent b52a25ca
...@@ -66,7 +66,7 @@ There are two ways to specify a test: ...@@ -66,7 +66,7 @@ There are two ways to specify a test:
.. code-block:: bash .. code-block:: bash
1 4 (G0->G0->G1) Uses 4 CUs on GPU0 to copy from GPU0 to GPU1 1 4 (G0->G0->G1) Uses 4 CUs on GPU0 to copy from GPU0 to GPU1
1 4 (G2->C1->G0) Uses 4 CUs on GPU2 to copy from CPU1 to GPU0 1 4 (C1->G2->G0) Uses 4 CUs on GPU2 to copy from CPU1 to GPU0
2 4 G0->G0->G1 G1->G1->G0 Copies from GPU0 to GPU1, and GPU1 to GPU0, each with 4 SEs 2 4 G0->G0->G1 G1->G1->G0 Copies from GPU0 to GPU1, and GPU1 to GPU0, each with 4 SEs
- **Advanced** - **Advanced**
......
...@@ -20,20 +20,29 @@ Prerequisite ...@@ -20,20 +20,29 @@ Prerequisite
Building TransferBench Building TransferBench
------------------------ ------------------------
To build TransferBench using Makefile, use: Here are the steps to build TransferBench:
.. code-block:: bash 1. Download the latest version of TransferBench from the git repository.
make .. code-block:: bash
To build TransferBench using CMake, use: git clone https://github.com/ROCm/TransferBench.git
cd TransferBench
.. code-block:: bash 2. Build TransferBench using Makefile.
mkdir build .. code-block:: bash
cd build
CXX=/opt/rocm/bin/hipcc cmake .. make
make
3. Build TransferBench using CMake.
.. code-block:: bash
mkdir build
cd build
CXX=/opt/rocm/bin/hipcc cmake ..
make
.. note:: .. note::
......
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