From 00974809fdb2d4d211b7d193679627533d2324d4 Mon Sep 17 00:00:00 2001 From: Mark Bates Date: Wed, 18 Oct 2017 16:58:29 +0200 Subject: [PATCH] updated customization documentation --- docs/customization.rst | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/docs/customization.rst b/docs/customization.rst index 68c5da51..6906416b 100644 --- a/docs/customization.rst +++ b/docs/customization.rst @@ -97,7 +97,7 @@ Compare model_id with the defined model of the new model and call the calculate break; } -6. If using CMAKE to configure the build properties, the new .cuh file name must be added to the list of CUDA headers +6. If using CMAKE to configure the build properties, the new .cuh file name must be added to the list of CUDA headers in the CMakeLists.txt file is located in the Gpufit\Gpufit subdirectory. Specifically, the following section must be modified to include the new filename. @@ -310,6 +310,26 @@ For the calculation of the Hessian. . . +5. If using CMAKE to configure the build properties, the new .cuh file name must be added to the list of CUDA headers +in the CMakeLists.txt file is located in the Gpufit\Gpufit subdirectory. Specifically, the following section must be +modified to include the new filename. + +.. code-block:: cpp + + set( GpuCudaHeaders + linear_1d.cuh + gauss_1d.cuh + gauss_2d.cuh + gauss_2d_rotated.cuh + gauss_2d_elliptic.cuh + cauchy_2d_elliptic.cuh + lse.cuh + mle.cuh + cuda_gaussjordan.cuh + cuda_kernels.cuh + gpu_data.cuh + ) + Future releases ---------------