From cbebbade5da3ece4c56a8978fc9cfc0e61bf845f Mon Sep 17 00:00:00 2001 From: Simon Rit Date: Fri, 4 Nov 2022 10:52:35 +0100 Subject: [PATCH] DOC: Installation instructions for the CUDA-compatible Python package --- INSTALLATION.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/INSTALLATION.md b/INSTALLATION.md index a695bac4f..f3b501241 100644 --- a/INSTALLATION.md +++ b/INSTALLATION.md @@ -26,14 +26,18 @@ Installation is currently not supported for independent RTK compilations. Pre-compiled binaries --------------------- -We only provide pre-compiled binaries for the Python package which depends on ITK. Use the following commands to install RTK module with `pip`. +We only provide pre-compiled binaries for the Python package which depends on ITK. Use the following commands to install the RTK module with `pip`. ``` python -m pip install --upgrade pip python -m pip install itk-rtk ``` - The same operating systems and Python versions are supported as ITK's packages, see the list on [Pypi](https://pypi.org/project/itk-rtk). +We also provide pre-compiled [CUDA](https://developer.nvidia.com/cuda-toolkit) packages for Windows and Linux. They require an installed version of CUDA 11.6. Use the following command instead of the above one to install the CUDA RTK module with `pip`. +``` +python -m pip install itk-rtk-cuda116 +``` + Getting started --------------- See [GettingStarted.md](GettingStarted.md). Your `CMakeLists.txt` can now use RTK when importing ITK as shown in the [FirstReconstruction's CMakeLists.txt](https://github.com/SimonRit/RTK/blob/master/examples/FirstReconstruction/CMakeLists.txt#L7).