summaryrefslogtreecommitdiff
path: root/Help/prop_tgt/HIP_ARCHITECTURES.rst
diff options
context:
space:
mode:
authorRobert Maynard <robert.maynard@kitware.com>2020-08-28 15:03:39 -0400
committerZack Galbreath <zack.galbreath@kitware.com>2021-06-07 19:25:33 +0000
commitb50bfc89131e55685aa41146254b37d26049b4d5 (patch)
treee6ed45ba63b75decf4c9436fac6139174850370b /Help/prop_tgt/HIP_ARCHITECTURES.rst
parentff0d2858e1e47af8e849318b411b1fbd8579a053 (diff)
downloadcmake-b50bfc89131e55685aa41146254b37d26049b4d5.tar.gz
HIP: Add language to CMake
Diffstat (limited to 'Help/prop_tgt/HIP_ARCHITECTURES.rst')
-rw-r--r--Help/prop_tgt/HIP_ARCHITECTURES.rst26
1 files changed, 26 insertions, 0 deletions
diff --git a/Help/prop_tgt/HIP_ARCHITECTURES.rst b/Help/prop_tgt/HIP_ARCHITECTURES.rst
new file mode 100644
index 0000000000..052f472d36
--- /dev/null
+++ b/Help/prop_tgt/HIP_ARCHITECTURES.rst
@@ -0,0 +1,26 @@
+HIP_ARCHITECTURES
+-----------------
+
+.. versionadded:: 3.21
+
+List of AMD GPU architectures to generate device code for.
+
+An empty or false value (e.g. ``OFF``) defers architecture generation to compiler
+defaults.
+
+This property is initialized by the value of the :variable:`CMAKE_HIP_ARCHITECTURES`
+variable if it is set when a target is created.
+
+The HIP compilation model has two modes: whole and separable. Whole compilation
+generates device code at compile time. Separable compilation generates device
+code at link time. Therefore the ``HIP_ARCHITECTURES`` target property should
+be set on targets that compile or link with any HIP sources.
+
+Examples
+^^^^^^^^
+
+.. code-block:: cmake
+
+ set_property(TARGET tgt PROPERTY HIP_ARCHITECTURES gfx801 gfx900)
+
+Generates code for both ``gfx801`` and ``gfx900``.