From 873f601103db021f8da395a1003ba40895121de1 Mon Sep 17 00:00:00 2001 From: Michael Zingale Date: Fri, 19 Jan 2024 10:31:19 -0500 Subject: [PATCH] add note about CUDA_ARCH for RTX 4090 --- Docs/source/mpi_plus_x.rst | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Docs/source/mpi_plus_x.rst b/Docs/source/mpi_plus_x.rst index 5906fa68f6..835157c8f8 100644 --- a/Docs/source/mpi_plus_x.rst +++ b/Docs/source/mpi_plus_x.rst @@ -95,6 +95,16 @@ To enable this, compile with:: USE_OMP = FALSE USE_CUDA = TRUE +.. note:: + + For recent GPUs, like the NVIDIA RTX 4090, you may need to change + the default CUDA architecture. This can be done by ading: + + .. code:: + + CUDA_ARCH=89 + + to the ``make`` line or ``GNUmakefile``. AMD GPUs --------