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;
}
nppiAddC_8u_C1RSfs(scaleFactor) to0instead of1. This is getting you 13 instead of 26. – sgar91 Feb 15 at 17:54