X-Git-Url: https://www.flypig.org.uk/git/?a=blobdiff_plain;f=OpenCL%2Fm06100_a0.cl;h=3b0d23cb123ff00ca0a77ab1861ea623eca92a98;hb=c79bed3b7de4ac974a3ea5d3b498f4fe712f93b9;hp=1e173ca8e2db6d63b8e845f4d75789599c139b7e;hpb=34c3557d507d85ed2c6f2e036d226776e0ffbf72;p=hashcat.git diff --git a/OpenCL/m06100_a0.cl b/OpenCL/m06100_a0.cl index 1e173ca..3b0d23c 100644 --- a/OpenCL/m06100_a0.cl +++ b/OpenCL/m06100_a0.cl @@ -1180,7 +1180,9 @@ void whirlpool_transform (const u32x w[16], u32x dgst[16], __local u32 (*s_Ch)[2 u32x Lh[8]; u32x Ll[8]; + #ifdef _unroll #pragma unroll + #endif for (int i = 0; i < 8; i++) { const u32x Lp0 = stateh[(i + 8) & 7] >> 24; @@ -1233,7 +1235,9 @@ void whirlpool_transform (const u32x w[16], u32x dgst[16], __local u32 (*s_Ch)[2 u32x Lh[8]; u32x Ll[8]; + #ifdef _unroll #pragma unroll + #endif for (int i = 0; i < 8; i++) { const u32x Lp0 = Kh[(i + 8) & 7] >> 24; @@ -1281,7 +1285,9 @@ void whirlpool_transform (const u32x w[16], u32x dgst[16], __local u32 (*s_Ch)[2 Kh[7] = Lh[7]; Kl[7] = Ll[7]; - #pragma unroll 8 + #ifdef _unroll + #pragma unroll + #endif for (int i = 0; i < 8; i++) { const u32x Lp0 = stateh[(i + 8) & 7] >> 24;