'how to debug a CUDA google colab notebook?

I am trying to run a c program using cuda the code does some math operations on an array of consecutive numbers (where every thread add elements of a row and check the last array element and return a value of the sum or zero if the conditions are met). I don't have NVIDIA GPU so I wrote my code on google colab notebook.

The problem that I have encountered was not being able to debug the program. It outputs nothing at all no error messages and no output. There's something wrong with the code but I cannot know where after reviewing it a few times.

Here's the code:

#include <iostream>

__global__ void matrixadd(int *l,int *result,int digits ,int possible_ids )

{  
    int sum=0;
    int zeroflag=1;
    int identicalflag=1;
    int id=  blockIdx .x * blockDim .x + threadIdx .x;
 
if(id<possible_ids)
{
    if (l[(digits*id)+digits-1]==0) zeroflag=0;/*checking if the first number is zero*/

    for(int i=0; i< digits-1;i++)/*edited:for(int i=0; i< digits;i++) */
          {
            
            if(l[(digits*id)+i]-l[(digits*id)+i+1]==0)
            identicalflag+=1; /* checking if 2 consequitive numbers are identical*/

            sum = sum + l[(digits*id)+i]; /* finding the sum*/
         }
    if (identicalflag!=1)identicalflag=0;
    result[id]=sum*zeroflag*identicalflag;
}
}

int main()
{
     int digits=6;
     int possible_ids=pow(10,digits);
/*populate the array */
int* a ;
 a= (int *)malloc((possible_ids * digits) * sizeof(int));
 int the_id,temp=possible_ids;

  for (int i = 0; i < possible_ids; i++) 
    { 
        temp--;
        the_id=temp;
        for (int j = 0; j < digits; j++)
        {  
        a[i * digits + j] = the_id % 10;    
        if(the_id !=0) the_id /= 10;
        }

    }
 /*the numbers will appear in reversed order  */

/*allocate memory on host and device then invoke the kernel function*/
    int *d_a,*d_c,*c;
    int size=possible_ids * digits;
    c= (int *)malloc(possible_ids * sizeof(int));/*results matrix*/

    cudaMalloc((void **)&d_a,size*sizeof(int));
    cudaMemcpy(d_a,a,size*sizeof(int),cudaMemcpyHostToDevice);
    cudaMalloc((void **)&d_c,possible_ids*sizeof(int));
/*EDITED: cudaMalloc((void **)&d_c,digits*sizeof(int));*/
 
matrixadd<<<ceil(possible_ids/1024.0),1024>>>(d_a,d_c,digits,possible_ids);
cudaMemcpy(c,d_c,possible_ids*sizeof(int),cudaMemcpyDeviceToHost);

 int acc=0;
for (int k=0;k<possible_ids;k++)
{
    if (c[k]==7||c[k]==17||c[k]==11||c[k]==15)continue;
    acc += c[k];
 }
printf("The number of possible ids %d",acc);
}
  


Solution 1:[1]

You are doing invalid indexing into the l array in this line of code: if(l[(digits*id)+i]-l[(digits*id)+i+1]==0)

From comment by Robert Covella

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Dharman