mirror of
https://github.com/GOSTSec/ccminer
synced 2025-01-09 14:28:15 +00:00
10 lines
312 B
C
10 lines
312 B
C
#ifndef _CUDA_KECCAK512_H
|
|
#define _CUDA_KECCAK512_H
|
|
|
|
void keccak512_cpu_init(int thr_id, int threads);
|
|
void keccak512_cpu_setBlock(void *data);
|
|
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);
|
|
|
|
#endif
|