header image
Finally, JET is back
August 18th, 2009 under Music. [ Comments: none ]

The new album “Shaka Rock” is supposed to be available on the 21st of August. :D


CUDA 2D/2D Memcpy Issue and Pitched Pointers
August 18th, 2009 under OpenGL. [ Comments: none ]

In my application I wanted to copy 3D array data from linear memory (allocated with cudaMalloc) to a cudaArray with cudaMemcpy3D. Now, I had the problem that cudaMemcpy3D reported cudaErrorInvalidValue. If you encounter a problem like that it might be because of the fact that cudaMalloc was used instead of cudaMalloc3D for allocatimg the linear memory. If cudaMalloc was used then you are forced to create you own cudaPitchedPtr with make_cudaPitchedPtr in order to call cudaMemcpy3D. According to the manual (this information is not extremely emphasized in it) make_cudaPitchedPtris not guaranteed to construct a pitched pointer which is valid for memory copy procedures. One should always use cudaMalloc3D or cudaMallocPitched whenever we want to memcpy because these methods guarantee valid pitched pointers.

“For allocations of 2D and 3D objects, it is highly recommended that programmers perform allocations using cudaMalloc3D() or cudaMallocPitch(). Due to alignment restrictions in the hardware, this is especially true if the application will be performing memory copies involving 2D or 3D objects (whether linear memory or CUDA arrays).” [from the Reference Manual]

This, in fact, solved my problem of the cudaErrorInvalidValue when I tried to cudaMemcpy3D. However, the fact that we use pitched pointer complicates the array access in the kernels. First of all we have to keep track of the data type stored in a pitched pointer (ptr is a void pointer). Furthermore, we have to be careful when dealing with pointer arithmectics because the pitch is, obviously, a byte offset (width of the array).  Here is some sample code that shows how to access pitched pointer data. We assume we want to store float4 data in our 3D array which is of size (width, height, depth). In the kernel we want to access the element (x,y,z).

Host Code:

...
cudaPitchedPtr data;
extent = make_cudaExtent(width* sizeof(float4), height, depth);
cudaMalloc3D(&(d_data), extent);
...

Kernel Code:

__global__ kernel(char* data, size_t pitch, ...) {

...
float4 element = *((float4*) (data + (x*sizeof(float4) + y*pitch + z*pitch*height)));
...

}

The one thing I’d like to point out is the fact that we have to use x*sizeof(float4) for accessing the data. This makes sense because data is a char/byte pointer at the time of the pointer arithmetic. Thus, we have to move the pointer by x*sizeof(float4). This musn’t be done in the y and z direction because the sizeof(float4) is already considered in the pitch (the pitch is the width of the array in byte, probably padded for faster memory access).


CUDA 3D Array Pitch
August 17th, 2009 under OpenGL. [ Comments: none ]

The CUDA manual isn’t really precise in telling how to use the pitch with 3D Array (memory obtained by using cudaMallocPitch, cudaMalloc3D, not 3D cudaArrays). So here is a brief summary of how (I think) everything works.

What nVidia means by a pitch is basically the width in byte of an array (2D or 3D). We can specify the width of the array in bytes like this volumeSize.width *sizeof(YOUR_TYPE). With this information we can access any element in a 3D array. We can compute the slicePitch (for a 3D array) which is volumeSize.height*pitch. The slicePitch is the offset in bytes from one slice in a 3D array to the next slice.

Now let’s say we want to access the element (x,y,z) in a 3D array data (which is the base pointer). This is how we can do it:

(myType) (((char*)data)[x*sizeof(myType) + y*pitch + z*slicePitch])

So what we get from the methods cudaMallocPitch, cudaMalloc3D is linear memory which need to be accessed in the way described above.
We need to know how pitches work when we want to copy arrays (when the copy method expects a pitched pointer which we can create with make_cudaPitchedPtr(baseAddress, pitch, width, height)). This is also sufficient for the copy process. Let’s assume we use cudaMemcpy3D. In this case we must specify the extent, in other words the size of our array. All necessary information to execute the copy are now present (it can be ensured that no invalid memory will be accessed) . Each element can be accessed by cudaMemcpy3D as described above. So, this means that we do not need to use the depth (in case of a 3D array) when we make_cudaPitchedPtr.


Even more Classics :D
August 5th, 2009 under This And That. [ Comments: none ]


Wi buchet mir dr glutz :)
August 3rd, 2009 under This And That. [ Comments: none ]

Some classic swiss comedy.


 


Flickr
wavesAgain water dropsunset and fountainfountain

View All Photos

Recent Posts
Quotes
“Vanessa Loring: Your parents are probably wondering where you are.
Juno MacGuff: Nah... I mean, I'm already pregnant, so what other kind of shenanigans could I get into?”
IP