I'm having a problem with calling two kernels in every loop. This is the loop code:
cudaMemcpy(frame_in_gpu,frame_in.data, W*H*3*sizeof(uchar),cudaMemcpyHostToDevice);
cudaThreadSynchronize();
cuda_grayscale(frame_in_gpu, frame_out_gpu, W, H,dimGrid,dimBlock);
cudaThreadSynchronize();
cuda_edge_x(frame_out_gpu,frame_x_gpu,W,H,dimGrid,dimBlock);
cudaThreadSynchronize();
cudaMemcpy(frame_e.data, frame_x_gpu, W*H*sizeof(uchar),cudaMemcpyDeviceToHost);
cudaThreadSynchronize();
Each on of these functions only calls a kernel with the same inputs as the function using dimGrid and dimBlock. frame_in.data is RGB image first it turns it to a gray scale and then finds its edges. I have set 'frame_e' before the loop starts and I'm getting the same thing after each iteration finishes.
I read the output of the first kernel call and it is invalid. But if I comment out the second kernel call it becomes valid. What am I missing?
EDIT:
Ok then it's probably from my second kernel. I replaced the first kernel with CPU code and the result was the same. So here is the code for the second kernel:
__global__ void edge_x (uchar* in, uchar* out, int W, int H)
{
int Hor[9]={-1, -2, -1, 0, 0, 0, 1, 2, 1};
unsigned int X = blockIdx.x*blockDim.x+threadIdx.x;
unsigned int Y = blockIdx.y*blockDim.y+threadIdx.y;
int k1,k2;
int sum;
sum = 0;
for(k1=0;k1<3;k1++)
{
for(k2=0;k2<3;k2++)
{
sum += Hor[k1+k2*3]*in[X-k1+(Y-k2)*W];
}
}
out[X+Y*W] = sum/100;
}
extern "C" void cuda_edge_x(uchar* in, uchar* out, int W, int H, dim3 blocks, dim3 block_size)
{
edge_x <<< blocks, block_size >>> (in, out, W, H);
}
EDIT2:
I think I found the problem. I unrolled those loops and it didn't change but when I replace things like
in[X+(Y-1)*W]
with
in[X+Y*W-720]
It worked. W is 720
Here is the final kernel:
__global__ void edge_x (uchar* in, uchar* out, int W, int H)
{
unsigned int X = blockIdx.x*blockDim.x+threadIdx.x;
unsigned int Y = blockIdx.y*blockDim.y+threadIdx.y;
out[X+Y*W] = (-in[X+Y*W]-in[X+Y*W-1440]+in[X-2+Y*W]+2*(in[X+Y*W-722]-in[X+Y*W-720])+in[X+Y*W-1442])/100;
}
So can anybody tell me what should I do to avoid this obviously wrong method?
cudaThreadSynchronizeis both deprecated (seecudaDeviceSynchronizeinstead) and completely irrelvent in that sequence of operations. EachcudaMemcpyis a blocking call, and the kernel launches are all in the same (default) stream, so they will be executed on the GPU sequentially. What operating system and GPU are you running this on? – talonmies Jul 16 '12 at 7:04unsigned int X = blockIdx.x*blockDim.x+threadIdx.x; unsigned int Y = blockIdx.y*blockDim.y+threadIdx.y;I would check to make sure X and Y are not out of bounds: `if (X >= W || Y >= H) return; – harrism Sep 12 '12 at 6:56