From e0c8ebd91cf203ff77c2e65323013552c1567c0e Mon Sep 17 00:00:00 2001 From: raoqiyu Date: Wed, 1 Jun 2016 21:59:24 +0800 Subject: [PATCH] exclusive scan "4) Perform an exclusive scan (prefix sum) on the histogram to get the cumulative distribution of luminance values." The value of cdf should be [0 4 11]. --- Problem Sets/Problem Set 3/student_func.cu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Problem Sets/Problem Set 3/student_func.cu b/Problem Sets/Problem Set 3/student_func.cu index 26f00a74..a4d1d57b 100755 --- a/Problem Sets/Problem Set 3/student_func.cu +++ b/Problem Sets/Problem Set 3/student_func.cu @@ -71,7 +71,7 @@ histo with 3 bins: [4 7 3] - cdf : [4 11 14] + cdf : [0 4 11] Your task is to calculate this cumulative distribution by following these