Skip to content

Commit

Permalink
updated customization documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
superchromix committed Oct 18, 2017
1 parent a47478a commit 0097480
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion docs/customization.rst
Expand Up @@ -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.

Expand Down Expand Up @@ -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
---------------

Expand Down

0 comments on commit 0097480

Please sign in to comment.