diff --git a/mean_shift_cuda/meanshift_kernels.cu b/mean_shift_cuda/meanshift_kernels.cu index 9b62a07..f0d1c7b 100644 --- a/mean_shift_cuda/meanshift_kernels.cu +++ b/mean_shift_cuda/meanshift_kernels.cu @@ -98,7 +98,7 @@ __global__ void norm(Matrix mean_shift_vector, double *current_norm) { * mean_shift_vector.elements[row * mean_shift_vector.width + element_index]; } - current_norm = sqrt(cell_value); + *current_norm = sqrt(cell_value); // // new_shift elements are calculated by dividing with the denominator