Browse Source

Release final 1.5.1

master
Tanguy Pruvot 10 years ago
parent
commit
ac9b0d27ee
  1. 4
      README.txt
  2. 2
      configure.ac
  3. 6
      cpuminer-config.h
  4. 2
      lyra2/lyra2RE.cu

4
README.txt

@ -173,8 +173,8 @@ features. @@ -173,8 +173,8 @@ features.
>>> RELEASE HISTORY <<<
Dec. 2014 v1.5.1 (not released yet!)
Add lyra2 algo for Vertcoin (Release is 16 Dec 2014)
Dec. 16th 2014 v1.5.1
Add lyra2RE algo for Vertcoin based on djm34/vtc code
Multiple shares support (2 for the moment)
X11 optimisations (From klaust and sp-hash)
HTML5 WebSocket api compatibility (see api/websocket.htm)

2
configure.ac

@ -1,4 +1,4 @@ @@ -1,4 +1,4 @@
AC_INIT([ccminer], [1.5.1-git])
AC_INIT([ccminer], [1.5.1])
AC_PREREQ([2.59c])
AC_CANONICAL_SYSTEM

6
cpuminer-config.h

@ -156,7 +156,7 @@ @@ -156,7 +156,7 @@
#define PACKAGE_NAME "ccminer"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "ccminer 1.5.1-git"
#define PACKAGE_STRING "ccminer 1.5.1"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "ccminer"
@ -165,7 +165,7 @@ @@ -165,7 +165,7 @@
#define PACKAGE_URL ""
/* Define to the version of this package. */
#define PACKAGE_VERSION "1.5.1-git"
#define PACKAGE_VERSION "1.5.1"
/* If using the C implementation of alloca, define if you know the
direction of stack growth for your system; otherwise it will be
@ -188,7 +188,7 @@ @@ -188,7 +188,7 @@
#define USE_XOP 1
/* Version number of package */
#define VERSION "1.5.1-git"
#define VERSION "1.5.1"
/* Define curl_free() as free() if our version of curl lacks curl_free. */
/* #undef curl_free */

2
lyra2/lyra2RE.cu

@ -63,7 +63,7 @@ extern "C" int scanhash_lyra2(int thr_id, uint32_t *pdata, @@ -63,7 +63,7 @@ extern "C" int scanhash_lyra2(int thr_id, uint32_t *pdata,
unsigned long *hashes_done)
{
const uint32_t first_nonce = pdata[19];
int intensity = (device_sm[device_map[thr_id]] >= 500 && !is_windows()) ? 19 : 18;
int intensity = (device_sm[device_map[thr_id]] >= 500 && !is_windows()) ? 18 : 17;
int throughput = opt_work_size ? opt_work_size : (1 << intensity); // 18=256*256*4;
throughput = min(throughput, (int)(max_nonce - first_nonce));

Loading…
Cancel
Save