Browse Source

minor performance improvement

2upstream
orignal 7 years ago
parent
commit
b40e028dfb
  1. 2
      gost/cuda_gosthash.cu

2
gost/cuda_gosthash.cu

@ -712,7 +712,7 @@ static void GOST_E12(uint64_t* const K, uint64_t *state) @@ -712,7 +712,7 @@ static void GOST_E12(uint64_t* const K, uint64_t *state)
{
uint64_t state1[8], K1[8];
GOST_Copy512(K1, K);
//#pragma unroll 1
#pragma unroll 4
for(int i=0; i<12; i++)
{
GOST_Xor512(state1, K1, CC[i]);

Loading…
Cancel
Save