Skip to content

Commit

Permalink
v3.7.7
Browse files Browse the repository at this point in the history
  • Loading branch information
JayDDee committed Dec 17, 2017
1 parent 7a13899 commit 79164c2
Show file tree
Hide file tree
Showing 7 changed files with 230 additions and 56 deletions.
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ cpuminer_SOURCES = \
algo/skein/skein-hash-4way.c \
algo/skein/skein.c \
algo/skein/skein-4way.c \
algo/skein/skein-gate.c \
algo/skein/skein-gate.c \
algo/skein/skein2.c \
algo/skein/skein2-4way.c \
algo/skein/skein2-gate.c \
Expand Down
7 changes: 6 additions & 1 deletion RELEASE_NOTES
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,14 @@ Support for even older x86_64 without AES_NI or SSE2 is not availble.
Change Log
----------

v3.7.7

Fixed regression caused by 64 CPU support.
Fixed lyra2h.

v3.7.6

Added kyra2h algo for Hppcoin.
Added lyra2h algo for Hppcoin.
Added support for more than 64 CPUs.
Optimized shavite512 with AES, improves x11 etc.

Expand Down
2 changes: 1 addition & 1 deletion algo/lyra2/lyra2h.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ void lyra2h_hash( void *state, const void *input )
sph_blake256( &ctx_blake, input + 64, 16 );
sph_blake256_close( &ctx_blake, hash );

LYRA2Z( lyra2h_matrix, hash, 32, hash, 32, hash, 32, 8, 8, 8);
LYRA2Z( lyra2h_matrix, hash, 32, hash, 32, hash, 32, 16, 16, 16 );

memcpy(state, hash, 32);
}
Expand Down
Loading

0 comments on commit 79164c2

Please sign in to comment.