Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 #include "cmtkDeviceArrayCUDA.h"
00032
00033 #include <cuda_runtime_api.h>
00034 #include <cuda_runtime.h>
00035
00036 #include <GPU/cmtkCUDA.h>
00037
00038 cmtk::DeviceArrayCUDA
00039 ::DeviceArrayCUDA( const FixedVector<3,int>& dims3 )
00040 : m_Dims( dims3 )
00041 {
00042 const struct cudaChannelFormatDesc desc = cudaCreateChannelDesc<float>();
00043 cmtkCheckCallCUDA( cudaMalloc3DArray( &(this->m_DeviceArrayPtr), &desc, make_cudaExtent( this->m_Dims[0], this->m_Dims[1], this->m_Dims[2] ) ) );
00044 }
00045
00046
00047 cmtk::DeviceArrayCUDA
00048 ::~DeviceArrayCUDA()
00049 {
00050 if ( this->m_DeviceArrayPtr )
00051 cmtkCheckCallCUDA( cudaFreeArray( this->m_DeviceArrayPtr ) );
00052 }
00053
00054 void
00055 cmtk::DeviceArrayCUDA
00056 ::CopyToDevice( const float* data )
00057 {
00058 cudaMemcpy3DParms copyParams = {0};
00059
00060 copyParams.srcPtr = make_cudaPitchedPtr( (void*)data, this->m_Dims[0]*sizeof(float), this->m_Dims[0], this->m_Dims[1] );
00061 copyParams.dstArray = this->m_DeviceArrayPtr;
00062 copyParams.extent = make_cudaExtent( this->m_Dims[0], this->m_Dims[1], this->m_Dims[2] );
00063 copyParams.kind = cudaMemcpyHostToDevice;
00064
00065 cmtkCheckCallCUDA( cudaMemcpy3D( ©Params ) );
00066 }
00067
00068 void
00069 cmtk::DeviceArrayCUDA
00070 ::CopyOnDeviceToArray( const float* data )
00071 {
00072 cudaMemcpy3DParms copyParams = {0};
00073
00074 copyParams.srcPtr = make_cudaPitchedPtr( (void*)data, this->m_Dims[0]*sizeof(float), this->m_Dims[0], this->m_Dims[1] );
00075 copyParams.dstArray = this->m_DeviceArrayPtr;
00076 copyParams.extent = make_cudaExtent( this->m_Dims[0], this->m_Dims[1], this->m_Dims[2] );
00077 copyParams.kind = cudaMemcpyDeviceToDevice;
00078
00079 cmtkCheckCallCUDA( cudaMemcpy3D( ©Params ) );
00080 }
00081
00082 void
00083 cmtk::DeviceArrayCUDA
00084 ::CopyOnDeviceToLinear( float* data )
00085 {
00086 cudaMemcpy3DParms copyParams = {0};
00087
00088 copyParams.dstPtr = make_cudaPitchedPtr( (void*)data, this->m_Dims[0]*sizeof(float), this->m_Dims[0], this->m_Dims[1] );
00089 copyParams.srcArray = this->m_DeviceArrayPtr;
00090 copyParams.extent = make_cudaExtent( this->m_Dims[0], this->m_Dims[1], this->m_Dims[2] );
00091 copyParams.kind = cudaMemcpyDeviceToDevice;
00092
00093 cmtkCheckCallCUDA( cudaMemcpy3D( ©Params ) );
00094 }