Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Trying to make the most simple example of a function call in NPP CUDA image library, But something is going wrong, the last 3 unsigned chars in the matrix is sat to 140 instead of 13. Have debugged the program, and all cuda calls return cudaSuccess and the data in the array is corresponding to the printed result.

The result that I am getting from the program is:

---- Matrix {4,4} -----
13 13 13 13
13 13 13 13
13 13 13 13
13 140 140 140
----- Matrix end ------

Source code

#include <string>
#include <npp.h>
#include <iostream>

int main(int argc, char* argv[])
{   
const int width = 4;
const int height = 4;
unsigned char data[width*height] = {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1};

unsigned char *dSrc, *dDst;
cudaMalloc( (void **)&dSrc, width*height );
cudaMalloc( (void **)&dDst, width*height );

cudaMemcpy( dSrc, data, width*height, cudaMemcpyHostToDevice );
cudaDeviceSynchronize();
NppiSize size;
size.width  = width;
size.height = height;

const unsigned char value = 25;

nppiAddC_8u_C1RSfs( dSrc, width, value, dDst, width, size, 1 );
cudaDeviceSynchronize();
cudaThreadSynchronize();


cudaMemcpy( data, dDst, width*height, cudaMemcpyDeviceToHost );
printf("---- Matrix {%i, %i} ----\n", width, height);
for(int y = 0; y < height; y++){
    for(int x = 0; x < width; x++){
        std::cout << (int)data[x+y*width] << " " ;
    }
    printf("\n");
}
printf("----- Matrix end -------\n");

cudaFree(dSrc);
cudaFree(dDst);
return 0;
}
share|improve this question
"Something going wrong" isn't a very useful description of your problem. Please put some more detail into your question. – talonmies Feb 15 at 16:16
Change the last argument of nppiAddC_8u_C1RSfs (scaleFactor) to 0 instead of 1. This is getting you 13 instead of 26. – sgar91 Feb 15 at 17:54
1  
The last three values are garbage. I'm getting the same random result which I think is due to some restriction of alignment of the step of the image. You will get correct result if you increase the width of the input data. – sgar91 Feb 15 at 18:03

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.