Skip to content

Commit a47478a

Browse files
committed
updated customization documentation
1 parent fb4b277 commit a47478a

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

docs/customization.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,26 @@ Compare model_id with the defined model of the new model and call the calculate
9797
break;
9898
}
9999
100+
6. If using CMAKE to configure the build properties, the new .cuh file name must be added to the list of CUDA headers
101+
in the CMakeLists.txt file is located in the Gpufit\Gpufit subdirectory. Specifically, the following section must be
102+
modified to include the new filename.
103+
104+
.. code-block:: cpp
105+
106+
set( GpuCudaHeaders
107+
linear_1d.cuh
108+
gauss_1d.cuh
109+
gauss_2d.cuh
110+
gauss_2d_rotated.cuh
111+
gauss_2d_elliptic.cuh
112+
cauchy_2d_elliptic.cuh
113+
lse.cuh
114+
mle.cuh
115+
cuda_gaussjordan.cuh
116+
cuda_kernels.cuh
117+
gpu_data.cuh
118+
)
119+
100120
Add a new fit estimator
101121
------------------------
102122

0 commit comments

Comments
 (0)