Browse Source

sib: add missing algo free entry + opt 64

master
Tanguy Pruvot 8 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) @@ -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);

2
configure.ac

@ -1,4 +1,4 @@ @@ -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

2
x11/cuda_streebog.cu

@ -1064,7 +1064,7 @@ void streebog_gpu_hash_64(uint32_t threads, uint64_t *g_hash) @@ -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);

Loading…
Cancel
Save