Browse Source
Yes, its a big commit, was waiting 1.6 to do that... Sorry for your possible merge issues ;)master
Tanguy Pruvot
10 years ago
65 changed files with 565 additions and 565 deletions
@ -1,8 +1,8 @@
@@ -1,8 +1,8 @@
|
||||
#ifndef _CUDA_FUGUE512_H |
||||
#define _CUDA_FUGUE512_H |
||||
|
||||
void fugue256_cpu_hash(int thr_id, int threads, int startNounce, void *outputHashes, uint32_t *nounce); |
||||
void fugue256_cpu_hash(int thr_id, uint32_t threads, int startNounce, void *outputHashes, uint32_t *nounce); |
||||
void fugue256_cpu_setBlock(int thr_id, void *data, void *pTargetIn); |
||||
void fugue256_cpu_init(int thr_id, int threads); |
||||
void fugue256_cpu_init(int thr_id, uint32_t threads); |
||||
|
||||
#endif |
||||
|
@ -1,8 +1,8 @@
@@ -1,8 +1,8 @@
|
||||
#ifndef _CUDA_GROESTLCOIN_H |
||||
#define _CUDA_GROESTLCOIN_H |
||||
|
||||
void groestlcoin_cpu_init(int thr_id, int threads); |
||||
void groestlcoin_cpu_init(int thr_id, uint32_t threads); |
||||
void groestlcoin_cpu_setBlock(int thr_id, void *data, void *pTargetIn); |
||||
void groestlcoin_cpu_hash(int thr_id, int threads, uint32_t startNounce, void *outputHashes, uint32_t *nounce); |
||||
void groestlcoin_cpu_hash(int thr_id, uint32_t threads, uint32_t startNounce, void *outputHashes, uint32_t *nounce); |
||||
|
||||
#endif |
@ -1,30 +1,30 @@
@@ -1,30 +1,30 @@
|
||||
#ifndef _CUDA_HEAVY_H |
||||
#define _CUDA_HEAVY_H |
||||
|
||||
void blake512_cpu_init(int thr_id, int threads); |
||||
void blake512_cpu_init(int thr_id, uint32_t threads); |
||||
void blake512_cpu_setBlock(void *pdata, int len); |
||||
void blake512_cpu_hash(int thr_id, int threads, uint32_t startNounce); |
||||
void blake512_cpu_hash(int thr_id, uint32_t threads, uint32_t startNounce); |
||||
|
||||
void groestl512_cpu_init(int thr_id, int threads); |
||||
void groestl512_cpu_copyHeftyHash(int thr_id, int threads, void *heftyHashes, int copy); |
||||
void groestl512_cpu_init(int thr_id, uint32_t threads); |
||||
void groestl512_cpu_copyHeftyHash(int thr_id, uint32_t threads, void *heftyHashes, int copy); |
||||
void groestl512_cpu_setBlock(void *data, int len); |
||||
void groestl512_cpu_hash(int thr_id, int threads, uint32_t startNounce); |
||||
void groestl512_cpu_hash(int thr_id, uint32_t threads, uint32_t startNounce); |
||||
|
||||
void hefty_cpu_hash(int thr_id, int threads, int startNounce); |
||||
void hefty_cpu_setBlock(int thr_id, int threads, void *data, int len); |
||||
void hefty_cpu_init(int thr_id, int threads); |
||||
void hefty_cpu_hash(int thr_id, uint32_t threads, int startNounce); |
||||
void hefty_cpu_setBlock(int thr_id, uint32_t threads, void *data, int len); |
||||
void hefty_cpu_init(int thr_id, uint32_t threads); |
||||
|
||||
void keccak512_cpu_init(int thr_id, int threads); |
||||
void keccak512_cpu_init(int thr_id, uint32_t threads); |
||||
void keccak512_cpu_setBlock(void *data, int len); |
||||
void keccak512_cpu_copyHeftyHash(int thr_id, int threads, void *heftyHashes, int copy); |
||||
void keccak512_cpu_hash(int thr_id, int threads, uint32_t startNounce); |
||||
void keccak512_cpu_copyHeftyHash(int thr_id, uint32_t threads, void *heftyHashes, int copy); |
||||
void keccak512_cpu_hash(int thr_id, uint32_t threads, uint32_t startNounce); |
||||
|
||||
void sha256_cpu_init(int thr_id, int threads); |
||||
void sha256_cpu_init(int thr_id, uint32_t threads); |
||||
void sha256_cpu_setBlock(void *data, int len); |
||||
void sha256_cpu_hash(int thr_id, int threads, int startNounce); |
||||
void sha256_cpu_copyHeftyHash(int thr_id, int threads, void *heftyHashes, int copy); |
||||
void sha256_cpu_hash(int thr_id, uint32_t threads, int startNounce); |
||||
void sha256_cpu_copyHeftyHash(int thr_id, uint32_t threads, void *heftyHashes, int copy); |
||||
|
||||
void combine_cpu_init(int thr_id, int threads); |
||||
void combine_cpu_hash(int thr_id, int threads, uint32_t startNounce, uint32_t *hash); |
||||
void combine_cpu_init(int thr_id, uint32_t threads); |
||||
void combine_cpu_hash(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *hash); |
||||
|
||||
#endif |
||||
|
Loading…
Reference in new issue