From 84337459b8b1a6f69649d187d3cd6dd2afb47d2c Mon Sep 17 00:00:00 2001 From: Tanguy Pruvot Date: Mon, 26 Mar 2018 03:13:41 +0200 Subject: [PATCH] x12 stuff + readme --- README.txt | 14 +++++++++----- bench.cpp | 1 + util.cpp | 3 +++ 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/README.txt b/README.txt index 74d38d1..2821030 100644 --- a/README.txt +++ b/README.txt @@ -1,5 +1,5 @@ -ccminer 2.2.5 (Feb 2018) "x16r algo" +ccminer 2.2.5 (Mar 2018) "x12 and x16r algos" --------------------------------------------------------------- *************************************************************** @@ -120,7 +120,9 @@ its command line interface and options. tribus use to mine Denarius x11evo use to mine Revolver x11 use to mine DarkCoin - x14 use to mine X14Coin + x12 use to mine GalaxyCash + x13 use to mine X13 + x14 use to mine X14 x15 use to mine Halcyon x16r use to mine Raven x17 use to mine X17 @@ -278,10 +280,12 @@ so we can more efficiently implement new algorithms using the latest hardware features. >>> RELEASE HISTORY <<< - Feb. 2017 v2.2.5 - New x16r algo + Mar. 2018 v2.2.5 + New x16r algo for Raven + New x12 algo for Galaxycash + Equihash (SIMT) sync issues for the Volta generation - Jan. 04th 2017 v2.2.4 + Jan. 04th 2018 v2.2.4 Improve lyra2v2 Higher keccak default intensity Drop SM 2.x support by default, for CUDA 9 and more recent diff --git a/bench.cpp b/bench.cpp index 0fe248f..4a601a7 100644 --- a/bench.cpp +++ b/bench.cpp @@ -99,6 +99,7 @@ void algo_free_all(int thr_id) free_wildkeccak(thr_id); free_x11evo(thr_id); free_x11(thr_id); + free_x12(thr_id); free_x13(thr_id); free_x14(thr_id); free_x15(thr_id); diff --git a/util.cpp b/util.cpp index f5a922d..5f1d171 100644 --- a/util.cpp +++ b/util.cpp @@ -2316,6 +2316,9 @@ void print_hash_tests(void) x11hash(&hash[0], &buf[0]); printpfx("X11", hash); + x12hash(&hash[0], &buf[0]); + printpfx("X12", hash); + x13hash(&hash[0], &buf[0]); printpfx("X13", hash);