You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixing install script to actually install library when requested (ROCm#88)
* Fixing install script to actually install library when requested. Cleaning up unused code.
Removing unused arguments from install script.
Fixing weird whitespacing
* Fixing install script to install to correct location /opt/rocm, now creates symlink in /opt/rocm/lib
* Updates and corrections to README and install script
Copy file name to clipboardexpand all lines: README.md
+4-1
Original file line number
Diff line number
Diff line change
@@ -22,9 +22,12 @@ In addition, HC Direct Function call support needs to be present on your machine
22
22
The root of this repository has a helper script 'install.sh' to build and install RCCL on Ubuntu with a single command. It does not take a lot of options and hard-codes configuration that can be specified through invoking cmake directly, but it's a great way to get started quickly and can serve as an example of how to build/install.
23
23
24
24
*`./install.sh` -- builds library including unit tests
25
-
*`./install.sh -i` -- builds and installs the library to /opt/rocm/rccl
25
+
*`./install.sh -i` -- builds and installs the library to /opt/rocm/rccl; installation path can be changed with --prefix argument (see below.)
26
26
*`./install.sh -h` -- shows help
27
27
*`./install.sh -t` -- builds library including unit tests
28
+
*`./install.sh -r` -- runs unit tests (must be already built)
29
+
*`./install.sh -p` -- builds RCCL package
30
+
*`./install.sh --prefix` -- specify custom path to install RCCL to (default:/opt/rocm)
0 commit comments