Installing and building hipRAND#

To install hipRAND, choose between the following two methods:

Install using prebuilt packages#

The prebuilt hipRAND packages require a ROCm-enabled platform. For information on installing ROCm, see the ROCm installation guide. After installing ROCm or enabling the ROCm repositories, use the system package manager to install hipRAND.

For Ubuntu and Debian:

sudo apt-get install hiprand

For CentOS-based systems:

sudo yum install hiprand

For SLES:

sudo dnf install hiprand

These commands install hipRAND in the /opt/rocm directory.

Build hipRAND from source#

This section provides the information required to build hipRAND from source.

Requirements#

To build hipRAND, CMake version 3.16 or later is required.

Additionally, to build hipRAND for the ROCm platform, the following components are required:

To build hipRAND for the CUDA platform, the following applications are required:

  • The CUDA toolkit (version 11.5.1 or newer)

  • cuRAND (included in the CUDA Toolkit)

Downloading the source code#

You can find the hipRAND source code in the hipRAND GitHub Repository. Use the branch that matches the ROCm version installed on the system. For example, on a system with ROCm 6.3 installed, use the following command to obtain the hipRAND version 6.3 source code:

git checkout -b release/rocm-rel-6.3 https://github.com/ROCm/hipRAND.git

Building the library#

After obtaining the sources and dependencies, build hipRAND for ROCm software using the installation script:

cd hipRAND
./install --install

This automatically builds all required dependencies, excluding Git and the requirements listed above, and installs the project to /opt/rocm. For further information, run the ./install --help command.

The clients, which are enabled using the --clients option, consist of the hipRAND tests and add the additional dependency of GoogleTest.

Building with CMake#

For a more detailed installation process, build hipRAND manually using CMake. This enables certain configuration options that are not available through the ./install script. To build hipRAND, use CMake with the following configuration:

cd hipRAND; mkdir build; cd build
# Configure the project
CXX=<compiler> cmake [options] ..
# Build
make -j$(nproc)
# Optionally, run the tests
ctest --output-on-failure
# Install
[sudo] make install

Where <compiler> should be set to hipcc or amdclang for ROCm or to a regular C++ compiler such as g++ on a CUDA platform. The default build configuration is Release.

Here are the CMake options:

  • BUILD_WITH_LIB: Determines whether to build hipRAND with the rocRAND or cuRAND backend. If it’s set to CUDA, hipRAND is built using the cuRAND backend. Otherwise, the rocRAND backend is used.

  • BUILD_FORTRAN_WRAPPER: Builds the Fortran wrapper when set to ON. Defaults to OFF.

  • BUILD_TEST: Builds the hipRAND tests when set to ON. Defaults to OFF.

  • BUILD_BENCHMARK: Builds the hipRAND benchmarks when set to ON. Defaults to OFF.

  • BUILD_ADDRESS_SANITIZER: Builds with address sanitization enabled when set to ON. Defaults to OFF.

  • ROCRAND_PATH: Specifies a rocRAND install other than the default system installed version.

  • DOWNLOAD_ROCRAND: Downloads and installs rocRAND in the build directory when set to ON. Defaults to OFF.

  • DEPENDENCIES_FORCE_DOWNLOAD: Downloads and builds the dependencies instead of using the system-installed dependencies when set to ON. Defaults to OFF.

If you are using ROCRAND_PATH or DOWNLOAD_ROCRAND when rocRAND is already installed in the default location, you must use the CMAKE_NO_SYSTEM_FROM_IMPORTED=ON option to configure the project. Failing to do so might process the rocRAND headers from the system-installed version instead of the specified version, leading to errors or missing functionality.

Common build errors#

Use the following tips to troubleshoot build problems.

  • rocrand package configuration file not found:

    Could not find a package configuration file provided by "rocrand" with any of the following names:
    
    rocrandConfig.cmake
    rocrand-config.cmake
    

    Solution: Install rocRAND.

  • ROCM package configuration file not found:

    Could not find a package configuration file provided by "ROCM" with any of the following names:
    
    ROCMConfig.cmake
    rocm-config.cmake
    

    Solution: Install the ROCm CMake modules.

Building the Python API wrapper#

This section provides the information required to build the hipRAND Python API wrapper.

Requirements#

The hipRAND Python API Wrapper requires the following dependencies:

  • hipRAND

  • Python 3.5

  • NumPy (This is installed automatically as a dependency, if necessary.)

Note

If hipRAND is built from source but is either not installed or installed in a non-standard directory, then set the ROCRAND_PATH or HIPRAND_PATH environment variable to the path containing libhiprand.so as shown below:

export HIPRAND_PATH=~/hipRAND/build/library/

Installation#

To install the Python hipRAND module using pip, run these commands:

cd hipRAND/python/hiprand
pip install .

Use these commands to run the tests:

cd hipRAND/python/hiprand
python tests/hiprand_test.py