From 8ceb5cfd6558c10315a6f4688a863ee41f771036 Mon Sep 17 00:00:00 2001 From: Tanguy Pruvot Date: Fri, 1 Jan 2016 07:58:45 +0100 Subject: [PATCH] sib: add missing algo free entry + opt 64 --- bench.cpp | 1 + configure.ac | 2 +- x11/cuda_streebog.cu | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/bench.cpp b/bench.cpp index e3f9856..d5cce84 100644 --- a/bench.cpp +++ b/bench.cpp @@ -65,6 +65,7 @@ void algo_free_all(int thr_id) free_qubit(thr_id); free_skeincoin(thr_id); free_skein2(thr_id); + free_sib(thr_id); free_s3(thr_id); free_whirl(thr_id); free_whirlx(thr_id); diff --git a/configure.ac b/configure.ac index 438a11e..a1ff709 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([ccminer], [1.7.1]) +AC_INIT([ccminer], [1.7.1], [], [ccminer], [http://github.com/tpruvot/ccminer]) AC_PREREQ([2.59c]) AC_CANONICAL_SYSTEM diff --git a/x11/cuda_streebog.cu b/x11/cuda_streebog.cu index 52ffea2..5ad32e7 100644 --- a/x11/cuda_streebog.cu +++ b/x11/cuda_streebog.cu @@ -1064,7 +1064,7 @@ void streebog_gpu_hash_64(uint32_t threads, uint64_t *g_hash) if (thread < threads) { uint64_t* inout = (&g_hash[thread * 8U]); -#if 1 +#if 0 uint64_t hash[8] = { 0 }; GOST_hash_X(hash, (uchar*) inout, 512); GOST_Copy512(inout, hash);