Commit 0fe8b60783827a60ed6e309909d654280cdb5b9b

Philip Kaufmann 2012-02-09T21:30:01

instead of uint *, int * was used as type for the output buffer (self-made bug from a former commmit)

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/diakgcn120208.cl b/diakgcn120208.cl
index 03456b1..5038838 100644
--- a/diakgcn120208.cl
+++ b/diakgcn120208.cl
@@ -57,7 +57,7 @@ __kernel
 			const uint state0, const uint state1, const uint state2, const uint state3,
 			const uint state4, const uint state5, const uint state6, const uint state7,
 			const uint state0A, const uint state0B,
-			__global int * output)
+			__global uint * output)
 {
 	u W[17];
 	u V[8];