Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
one
TransferBench
Commits
0e7a6ac5
Unverified
Commit
0e7a6ac5
authored
Dec 02, 2025
by
Swati Rawat
Committed by
GitHub
Dec 01, 2025
Browse files
Documentation fix (#219)
* Doc fixes * Update install.rst
parent
3f8d00df
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
10 deletions
+21
-10
docs/how to/use-transferbench.rst
docs/how to/use-transferbench.rst
+1
-1
docs/install/install.rst
docs/install/install.rst
+20
-9
No files found.
docs/how to/use-transferbench.rst
View file @
0e7a6ac5
...
@@ -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**
...
...
docs/install/install.rst
View file @
0e7a6ac5
...
@@ -20,20 +20,31 @@ Prerequisite
...
@@ -20,20 +20,31 @@ Prerequisite
Building TransferBench
Building TransferBench
------------------------
------------------------
T
o build TransferBench
using Makefile, use
:
Here are the steps t
o 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::
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment