Version 2.2
This commit is contained in:
parent
ca34d624f6
commit
83652d0787
4 changed files with 11 additions and 4 deletions
7
NEWS
7
NEWS
|
@ -1,3 +1,10 @@
|
|||
Version 2.2 - Apr 2, 2012
|
||||
|
||||
- Add an optimized SHA-256d algorithm, with specialized code
|
||||
for x86 and x86-64 and support for AVX and XOP instructions
|
||||
- Slight performance increase for scrypt on x86 and x86-64
|
||||
- The default timeout is now 270 seconds
|
||||
|
||||
Version 2.1.5 - Mar 7, 2012
|
||||
|
||||
- Add optimizations for AVX-capable x86-64 processors
|
||||
|
|
4
README
4
README
|
@ -1,5 +1,5 @@
|
|||
This is a multi-threaded CPU miner for Litecoin, fork of Jeff Garzik's
|
||||
reference cpuminer.
|
||||
This is a multi-threaded CPU miner for Litecoin and Bitcoin,
|
||||
fork of Jeff Garzik's reference cpuminer.
|
||||
|
||||
License: GPLv2. See COPYING for details.
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
AC_INIT([cpuminer], [2.1.5])
|
||||
AC_INIT([cpuminer], [2.2])
|
||||
|
||||
AC_PREREQ([2.59c])
|
||||
AC_CANONICAL_SYSTEM
|
||||
|
|
|
@ -550,7 +550,7 @@ static void *miner_thread(void *userdata)
|
|||
- time(NULL);
|
||||
max64 *= thr_hashrates[thr_id];
|
||||
if (max64 <= 0)
|
||||
max64 = opt_algo == ALGO_SCRYPT ? 0xfffLL : 0xfffffLL;
|
||||
max64 = opt_algo == ALGO_SCRYPT ? 0xfffLL : 0x1fffffLL;
|
||||
if (work.data[19] + max64 > end_nonce)
|
||||
max_nonce = end_nonce;
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue