Unverified Commit 0e7a6ac5 authored by Swati Rawat's avatar Swati Rawat Committed by GitHub
Browse files

Documentation fix (#219)

* Doc fixes
* Update install.rst
parent 3f8d00df
...@@ -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,31 @@ Prerequisite ...@@ -20,20 +20,31 @@ 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 or CMake.
mkdir build To build using Makefile, use:
cd build
CXX=/opt/rocm/bin/hipcc cmake .. .. code-block:: bash
make
make
To build using CMake, use:
.. 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