Skip to content

Commit

Permalink
COMP: add missing export for Windows DLL
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Rit committed Jun 3, 2022
1 parent 097151f commit afd01f3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/itkCudaSquareImage.cu
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
*
*=========================================================================*/
#include "itkCudaSquareImage.hcu"
#include "CudaCommonExport.h"

namespace itk
{
Expand Down Expand Up @@ -57,7 +58,7 @@ void CudaSquareImage3D(int imSize[3], PixelType* in, PixelType* out)
CudaSquareImage3D_kernel<PixelType> << <dimGrid, dimBlock >> > (imageSize, in, out);
}

template void CudaSquareImage3D<float>(int imSize[3], float* in, float* out);
template void CudaSquareImage3D<double>(int imSize[3], double* in, double* out);
template void CudaCommon_EXPORT CudaSquareImage3D<float>(int imSize[3], float* in, float* out);
template void CudaCommon_EXPORT CudaSquareImage3D<double>(int imSize[3], double* in, double* out);

} // end namespace itk

0 comments on commit afd01f3

Please sign in to comment.