Browse Source

Release 1.8.4

2upstream 1.8.4-tpruvot
Tanguy Pruvot 7 years ago
parent
commit
50534789bc
  1. 4
      Algo256/bmw.cu
  2. 5
      README.txt
  3. 2
      res/ccminer.rc

4
Algo256/bmw.cu

@ -79,6 +79,9 @@ extern "C" int scanhash_bmw(int thr_id, struct work* work, uint32_t max_nonce, u @@ -79,6 +79,9 @@ extern "C" int scanhash_bmw(int thr_id, struct work* work, uint32_t max_nonce, u
do {
bmw256_cpu_hash_80(thr_id, (int) throughput, pdata[19], d_hash[thr_id], (int) swapnonce);
uint32_t foundNonce = cuda_check_hash_32(thr_id, throughput, pdata[19], d_hash[thr_id]);
*hashes_done = pdata[19] - first_nonce + throughput;
if (foundNonce != UINT32_MAX)
{
uint32_t _ALIGN(64) vhash64[8];
@ -86,7 +89,6 @@ extern "C" int scanhash_bmw(int thr_id, struct work* work, uint32_t max_nonce, u @@ -86,7 +89,6 @@ extern "C" int scanhash_bmw(int thr_id, struct work* work, uint32_t max_nonce, u
bmw_hash(vhash64, endiandata);
if (vhash64[7] <= ptarget[7] && fulltest(vhash64, ptarget)) {
*hashes_done = foundNonce - first_nonce + 1;
pdata[19] = swab32_if(foundNonce,!swapnonce);
work_set_target_ratio(work, vhash64);
return 1;

5
README.txt

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
ccminer 1.8.4-dev (Nov 2016) "Winter improvements: sib, veltor"
ccminer 1.8.4 (Dec. 2016) "Winter boosts: sib, veltor, blake2s"
---------------------------------------------------------------
***************************************************************
@ -245,8 +245,9 @@ features. @@ -245,8 +245,9 @@ features.
>>> RELEASE HISTORY <<<
Nov. 2016
Dec. 21th 2016 v1.8.4
Improve streebog based algos, veltor and sib (from alexis work)
Blake2s greetly improved (3x), thanks to alexis too...
Sep. 28th 2016 v1.8.3
show intensity on startup for each cards

2
res/ccminer.rc

@ -79,7 +79,7 @@ BEGIN @@ -79,7 +79,7 @@ BEGIN
VALUE "FileVersion", "1.8.4"
VALUE "LegalCopyright", "Copyright (C) 2016"
VALUE "ProductName", "ccminer"
VALUE "ProductVersion", "1.8.3"
VALUE "ProductVersion", "1.8.4"
END
END
BLOCK "VarFileInfo"

Loading…
Cancel
Save