From b9ad26fa67df17109575b4adca2f5ed098ea177b Mon Sep 17 00:00:00 2001 From: jsteube Date: Tue, 19 Jan 2016 21:27:39 +0100 Subject: [PATCH] Fix algorithms based on 64 bit datatypes for older NV cards --- OpenCL/types_ocl.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/OpenCL/types_ocl.c b/OpenCL/types_ocl.c index c68ab90cc..137f67e09 100644 --- a/OpenCL/types_ocl.c +++ b/OpenCL/types_ocl.c @@ -282,6 +282,7 @@ static inline u32x rotl32 (const u32x a, const u32 n) return rotate (a, n); } +#if CUDA_ARCH >= 350 static inline u64 rotr64 (const u64 a, const u32 n) { u32 il; @@ -309,6 +310,12 @@ static inline u64 rotr64 (const u64 a, const u32 n) return r; } +#else +static inline u64 rotr64 (const u64 a, const u32 n) +{ + return rotate (a, (u64) 64 - n); +} +#endif static inline u64 rotl64 (const u64 a, const u32 n) {