Browse Source

sib: add missing algo free entry + opt 64

2upstream
Tanguy Pruvot 9 years ago
parent
commit
8ceb5cfd65
  1. 1
      bench.cpp
  2. 2
      configure.ac
  3. 2
      x11/cuda_streebog.cu

1
bench.cpp

@ -65,6 +65,7 @@ void algo_free_all(int thr_id)
free_qubit(thr_id); free_qubit(thr_id);
free_skeincoin(thr_id); free_skeincoin(thr_id);
free_skein2(thr_id); free_skein2(thr_id);
free_sib(thr_id);
free_s3(thr_id); free_s3(thr_id);
free_whirl(thr_id); free_whirl(thr_id);
free_whirlx(thr_id); free_whirlx(thr_id);

2
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_PREREQ([2.59c])
AC_CANONICAL_SYSTEM AC_CANONICAL_SYSTEM

2
x11/cuda_streebog.cu

@ -1064,7 +1064,7 @@ void streebog_gpu_hash_64(uint32_t threads, uint64_t *g_hash)
if (thread < threads) if (thread < threads)
{ {
uint64_t* inout = (&g_hash[thread * 8U]); uint64_t* inout = (&g_hash[thread * 8U]);
#if 1 #if 0
uint64_t hash[8] = { 0 }; uint64_t hash[8] = { 0 };
GOST_hash_X(hash, (uchar*) inout, 512); GOST_hash_X(hash, (uchar*) inout, 512);
GOST_Copy512(inout, hash); GOST_Copy512(inout, hash);

Loading…
Cancel
Save