1
0
mirror of https://github.com/GOSTSec/ccminer synced 2025-02-02 01:44:32 +00:00

sib: add missing algo free entry + opt 64

This commit is contained in:
Tanguy Pruvot 2016-01-01 07:58:45 +01:00
parent d796a801c5
commit 8ceb5cfd65
3 changed files with 3 additions and 2 deletions

View File

@ -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);

View File

@ -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

View File

@ -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);