From e8326f0ddfe0514d9650d0bcc5bc7992983cc168 Mon Sep 17 00:00:00 2001 From: Jens Steube Date: Mon, 5 Aug 2019 12:39:10 +0200 Subject: [PATCH] Fix copy/paste bug in -m 15700 --- OpenCL/m15700-pure.cl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenCL/m15700-pure.cl b/OpenCL/m15700-pure.cl index 2bd7b709c..813806bd7 100644 --- a/OpenCL/m15700-pure.cl +++ b/OpenCL/m15700-pure.cl @@ -36,7 +36,7 @@ inline __device__ uint4 operator ^= ( uint4 &a, const uint4 b) { inline __device__ uint4 rotate (const uint4 a, const int n) { - return ((a >> n) | ((a >> (32 - n)))); + return ((a << n) | ((a >> (32 - n)))); } #endif