1
0
mirror of https://github.com/GOSTSec/ccminer synced 2025-01-27 06:54:15 +00:00

minor performance improvement

This commit is contained in:
orignal 2017-05-11 12:05:03 -04:00
parent a924af5185
commit b40e028dfb

View File

@ -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]);