Hi,
Help me please to choose better dims for my kernel.
const size_t threads{ 32 };
const dim3 blockSize( threads, threads );
const dim3 gridSize{ uint32_t( width / threads ), uint32_t( height / threads ) };
remap<<< gridSize, blockSize >>>( width, height, mapX0, mapY0, mapX1, mapY1, mapW0, mapW1, frame0, frame1, pano );
Width is 4096 and height is 2048.
Best regards, Viktor.