From 8dc8a0eb62a3f9c302fe26e4b8136699524c6f39 Mon Sep 17 00:00:00 2001 From: Lisa Date: Fri, 9 Feb 2024 15:58:38 -0700 Subject: [PATCH] Update docs/conceptual/cmake-packages.rst Co-authored-by: Sam Wu --- docs/conceptual/cmake-packages.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/conceptual/cmake-packages.rst b/docs/conceptual/cmake-packages.rst index ec9db0c7f..4627bacc4 100644 --- a/docs/conceptual/cmake-packages.rst +++ b/docs/conceptual/cmake-packages.rst @@ -203,6 +203,10 @@ This project can then be configured with the following CMake commands: * Windows: ``cmake -D CMAKE_CXX_COMPILER:PATH=${env:HIP_PATH}\bin\clang++.exe`` * Linux: ``cmake -D CMAKE_CXX_COMPILER:PATH=/opt/rocm/bin/amdclang++`` +Which use the device compiler provided from the binary packages of +`ROCm HIP SDK `_ and +`repo.radeon.com `_ respectively. + When using the ``CXX`` language support to compile HIP device code, selecting the target GPU architectures is done via setting the ``GPU_TARGETS`` variable. ``CMAKE_HIP_ARCHITECTURES`` only exists when the HIP language is enabled. By