Skip to content
This repository was archived by the owner on Apr 24, 2022. It is now read-only.

Commit c99b693

Browse files
committedMay 17, 2017
add space between equations in the for loop
1 parent de2c1e3 commit c99b693

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎libethash-cuda/keccak.cuh

+2-2
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ __device__ __forceinline__ void keccak_f1600_init(uint2* state)
332332
/* iota: a[0,0] ^= round constant */
333333
s[0] ^= vectorize(keccak_round_constants[23]);
334334

335-
for(int i=0; i<12; ++i)
335+
for(int i = 0; i < 12; ++i)
336336
state[i] = s[i];
337337
}
338338

@@ -341,7 +341,7 @@ __device__ __forceinline__ uint64_t keccak_f1600_final(uint2* state)
341341
uint2 s[25];
342342
uint2 t[5], u, v;
343343

344-
for (int i = 0; i<12; ++i)
344+
for (int i = 0; i < 12; ++i)
345345
s[i] = state[i];
346346

347347
for (uint32_t i = 12; i < 25; i++)

0 commit comments

Comments
 (0)
This repository has been archived.