Browse Source

Release 1.8.4

2upstream 1.8.4-tpruvot
Tanguy Pruvot 8 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
do { do {
bmw256_cpu_hash_80(thr_id, (int) throughput, pdata[19], d_hash[thr_id], (int) swapnonce); 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]); 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) if (foundNonce != UINT32_MAX)
{ {
uint32_t _ALIGN(64) vhash64[8]; 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
bmw_hash(vhash64, endiandata); bmw_hash(vhash64, endiandata);
if (vhash64[7] <= ptarget[7] && fulltest(vhash64, ptarget)) { if (vhash64[7] <= ptarget[7] && fulltest(vhash64, ptarget)) {
*hashes_done = foundNonce - first_nonce + 1;
pdata[19] = swab32_if(foundNonce,!swapnonce); pdata[19] = swab32_if(foundNonce,!swapnonce);
work_set_target_ratio(work, vhash64); work_set_target_ratio(work, vhash64);
return 1; return 1;

5
README.txt

@ -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.
>>> RELEASE HISTORY <<< >>> RELEASE HISTORY <<<
Nov. 2016 Dec. 21th 2016 v1.8.4
Improve streebog based algos, veltor and sib (from alexis work) Improve streebog based algos, veltor and sib (from alexis work)
Blake2s greetly improved (3x), thanks to alexis too...
Sep. 28th 2016 v1.8.3 Sep. 28th 2016 v1.8.3
show intensity on startup for each cards show intensity on startup for each cards

2
res/ccminer.rc

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

Loading…
Cancel
Save