From: Bruno Turcksin Date: Sun, 14 May 2017 03:01:25 +0000 (-0400) Subject: Augment documentation of CUDA atomic. X-Git-Tag: v9.0.0-rc1~1588^2~4 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f06293997eea317b907043904f04caddef70df01;p=dealii.git Augment documentation of CUDA atomic. --- diff --git a/include/deal.II/lac/cuda_atomic.cuh b/include/deal.II/lac/cuda_atomic.cuh index e2dd20d87d..ccbc2c61be 100644 --- a/include/deal.II/lac/cuda_atomic.cuh +++ b/include/deal.II/lac/cuda_atomic.cuh @@ -27,6 +27,8 @@ namespace LinearAlgebra { /** * Provide atomicAdd for floats. + * + * @ingroup CUDAWrappers */ inline __device__ float atomicAdd_wrapper(float *address, float val) { @@ -37,6 +39,8 @@ namespace LinearAlgebra /** * Provide atomicAdd for doubles. + * + * @ingroup CUDAWrappers */ inline __device__ double atomicAdd_wrapper(double *address, double val) { @@ -64,6 +68,8 @@ namespace LinearAlgebra /** * Provide atomicMax for floats. + * + * @ingroup CUDAWrappers */ inline __device__ float atomicMax_wrapper(float *address, float val) { @@ -84,6 +90,8 @@ namespace LinearAlgebra /** * Provide atomicMax for doubles. + * + * @ingroup CUDAWrappers */ inline __device__ double atomicMax_wrapper(double *address, double val) {