Skip to content
Snippets Groups Projects
Commit 6504dd16 authored by Eric Wait's avatar Eric Wait
Browse files

Fixed sum bug

parent c1b18b3f
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,7 @@ double sumArray(const PixelType* imageIn, size_t n, int device=0)
for (int i=0; i<blocks; ++i)
{
sum += (PixelType)hostSum[i];
sum += hostSum[i];
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment