From 8bf0b24be67b0eee67558a74fd6a1f41fd6aba5b Mon Sep 17 00:00:00 2001 From: anapt Date: Tue, 6 Feb 2018 16:05:23 +0200 Subject: [PATCH] norm kernel --- mean_shift_cuda/meanshift_kernels.cu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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