mirror of
https://github.com/GOSTSec/ccminer
synced 2025-01-09 06:18:07 +00:00
cuda: header for common kernel functions (quark/x11)
Was thinking about doing that since months ;) lets go
This commit is contained in:
parent
26c7316a08
commit
8d4d4d65ce
@ -9,6 +9,7 @@ extern "C"
|
|||||||
|
|
||||||
#include "miner.h"
|
#include "miner.h"
|
||||||
#include "cuda_helper.h"
|
#include "cuda_helper.h"
|
||||||
|
#include "quark/cuda_quark.h"
|
||||||
|
|
||||||
static uint32_t *d_hash[MAX_GPUS] = { 0 };
|
static uint32_t *d_hash[MAX_GPUS] = { 0 };
|
||||||
|
|
||||||
@ -22,20 +23,6 @@ extern void jackpot_keccak512_cpu_init(int thr_id, uint32_t threads);
|
|||||||
extern void jackpot_keccak512_cpu_setBlock(void *pdata, size_t inlen);
|
extern void jackpot_keccak512_cpu_setBlock(void *pdata, size_t inlen);
|
||||||
extern void jackpot_keccak512_cpu_hash(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_hash, int order);
|
extern void jackpot_keccak512_cpu_hash(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_hash, int order);
|
||||||
|
|
||||||
extern void quark_blake512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_blake512_cpu_free(int thr_id);
|
|
||||||
extern void quark_blake512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void quark_groestl512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_groestl512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
extern void quark_groestl512_cpu_free(int thr_id);
|
|
||||||
|
|
||||||
extern void quark_jh512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_jh512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void quark_skein512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_skein512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void jackpot_compactTest_cpu_init(int thr_id, uint32_t threads);
|
extern void jackpot_compactTest_cpu_init(int thr_id, uint32_t threads);
|
||||||
extern void jackpot_compactTest_cpu_free(int thr_id);
|
extern void jackpot_compactTest_cpu_free(int thr_id);
|
||||||
extern void jackpot_compactTest_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *inpHashes, uint32_t *d_validNonceTable,
|
extern void jackpot_compactTest_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *inpHashes, uint32_t *d_validNonceTable,
|
||||||
|
@ -343,6 +343,8 @@
|
|||||||
<ClInclude Include="lyra2\cuda_lyra2v2_sm3.cuh" />
|
<ClInclude Include="lyra2\cuda_lyra2v2_sm3.cuh" />
|
||||||
<ClInclude Include="quark\groestl_transf_quad.h" />
|
<ClInclude Include="quark\groestl_transf_quad.h" />
|
||||||
<ClInclude Include="quark\groestl_functions_quad.h" />
|
<ClInclude Include="quark\groestl_functions_quad.h" />
|
||||||
|
<ClInclude Include="quark\cuda_quark.h" />
|
||||||
|
<ClInclude Include="x11\cuda_x11.h" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<CudaCompile Include="cuda.cpp" />
|
<CudaCompile Include="cuda.cpp" />
|
||||||
@ -528,4 +530,4 @@
|
|||||||
<Target Name="AfterClean">
|
<Target Name="AfterClean">
|
||||||
<Delete Files="@(FilesToCopy->'$(OutDir)%(Filename)%(Extension)')" TreatErrorsAsWarnings="true" />
|
<Delete Files="@(FilesToCopy->'$(OutDir)%(Filename)%(Extension)')" TreatErrorsAsWarnings="true" />
|
||||||
</Target>
|
</Target>
|
||||||
</Project>
|
</Project>
|
||||||
|
@ -293,6 +293,12 @@
|
|||||||
<ClInclude Include="cuda_groestlcoin.h">
|
<ClInclude Include="cuda_groestlcoin.h">
|
||||||
<Filter>Header Files\CUDA</Filter>
|
<Filter>Header Files\CUDA</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="quark\cuda_quark.h">
|
||||||
|
<Filter>Header Files\CUDA</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="x11\cuda_x11.h">
|
||||||
|
<Filter>Header Files\CUDA</Filter>
|
||||||
|
</ClInclude>
|
||||||
<ClInclude Include="sph\sph_blake.h">
|
<ClInclude Include="sph\sph_blake.h">
|
||||||
<Filter>Header Files\sph</Filter>
|
<Filter>Header Files\sph</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@ -701,4 +707,4 @@
|
|||||||
<Filter>Ressources</Filter>
|
<Filter>Ressources</Filter>
|
||||||
</Text>
|
</Text>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
@ -10,28 +10,10 @@ extern "C"
|
|||||||
#include "miner.h"
|
#include "miner.h"
|
||||||
|
|
||||||
#include "cuda_helper.h"
|
#include "cuda_helper.h"
|
||||||
|
#include "quark/cuda_quark.h"
|
||||||
|
|
||||||
static uint32_t *d_hash[MAX_GPUS];
|
static uint32_t *d_hash[MAX_GPUS];
|
||||||
|
|
||||||
extern void quark_blake512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_blake512_cpu_free(int thr_id);
|
|
||||||
extern void quark_blake512_cpu_setBlock_80(int thr_id, uint32_t *pdata);
|
|
||||||
extern void quark_blake512_cpu_hash_80(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_hash);
|
|
||||||
|
|
||||||
extern void quark_groestl512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_groestl512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
extern void quark_groestl512_cpu_free(int thr_id);
|
|
||||||
|
|
||||||
extern void quark_jh512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_jh512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void quark_keccak512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_keccak512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void quark_skein512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_skein512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
|
|
||||||
// Original nist5hash Funktion aus einem miner Quelltext
|
// Original nist5hash Funktion aus einem miner Quelltext
|
||||||
extern "C" void nist5hash(void *state, const void *input)
|
extern "C" void nist5hash(void *state, const void *input)
|
||||||
{
|
{
|
||||||
|
35
quark/cuda_quark.h
Normal file
35
quark/cuda_quark.h
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
#include "cuda_helper.h"
|
||||||
|
|
||||||
|
/* commonly used cuda quark kernels prototypes */
|
||||||
|
|
||||||
|
extern void quark_blake512_cpu_init(int thr_id, uint32_t threads);
|
||||||
|
extern void quark_blake512_cpu_free(int thr_id);
|
||||||
|
extern void quark_blake512_cpu_setBlock_80(int thr_id, uint32_t *pdata);
|
||||||
|
extern void quark_blake512_cpu_hash_80(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_hash);
|
||||||
|
extern void quark_blake512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
||||||
|
|
||||||
|
extern void quark_bmw512_cpu_init(int thr_id, uint32_t threads);
|
||||||
|
extern void quark_bmw512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
||||||
|
|
||||||
|
extern void quark_groestl512_cpu_init(int thr_id, uint32_t threads);
|
||||||
|
extern void quark_groestl512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
||||||
|
extern void quark_doublegroestl512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
||||||
|
extern void quark_groestl512_cpu_free(int thr_id);
|
||||||
|
|
||||||
|
extern void quark_skein512_cpu_init(int thr_id, uint32_t threads);
|
||||||
|
extern void quark_skein512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
||||||
|
|
||||||
|
extern void quark_keccak512_cpu_init(int thr_id, uint32_t threads);
|
||||||
|
extern void quark_keccak512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
||||||
|
|
||||||
|
extern void quark_jh512_cpu_init(int thr_id, uint32_t threads);
|
||||||
|
extern void quark_jh512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
||||||
|
|
||||||
|
extern void quark_compactTest_cpu_init(int thr_id, uint32_t threads);
|
||||||
|
extern void quark_compactTest_cpu_free(int thr_id);
|
||||||
|
extern void quark_compactTest_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *inpHashes, uint32_t *d_validNonceTable,
|
||||||
|
uint32_t *d_nonces1, uint32_t *nrm1, uint32_t *d_nonces2, uint32_t *nrm2, int order);
|
||||||
|
extern void quark_compactTest_single_false_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *inpHashes, uint32_t *d_validNonceTable,
|
||||||
|
uint32_t *d_nonces1, uint32_t *nrm1, int order);
|
||||||
|
|
||||||
|
extern uint32_t cuda_check_hash_branch(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_inputHash, int order);
|
@ -11,6 +11,7 @@ extern "C"
|
|||||||
#include "miner.h"
|
#include "miner.h"
|
||||||
|
|
||||||
#include "cuda_helper.h"
|
#include "cuda_helper.h"
|
||||||
|
#include "cuda_quark.h"
|
||||||
|
|
||||||
static uint32_t *d_hash[MAX_GPUS];
|
static uint32_t *d_hash[MAX_GPUS];
|
||||||
|
|
||||||
@ -19,42 +20,6 @@ static uint32_t *d_branch1Nonces[MAX_GPUS];
|
|||||||
static uint32_t *d_branch2Nonces[MAX_GPUS];
|
static uint32_t *d_branch2Nonces[MAX_GPUS];
|
||||||
static uint32_t *d_branch3Nonces[MAX_GPUS];
|
static uint32_t *d_branch3Nonces[MAX_GPUS];
|
||||||
|
|
||||||
extern void quark_blake512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_blake512_cpu_free(int thr_id);
|
|
||||||
extern void quark_blake512_cpu_setBlock_80(int thr_id, uint32_t *pdata);
|
|
||||||
extern void quark_blake512_cpu_hash_80(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_hash);
|
|
||||||
extern void quark_blake512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void quark_bmw512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_bmw512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void quark_groestl512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_groestl512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
extern void quark_doublegroestl512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
extern void quark_groestl512_cpu_free(int thr_id);
|
|
||||||
|
|
||||||
extern void quark_skein512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_skein512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void quark_keccak512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_keccak512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void quark_jh512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_jh512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void quark_compactTest_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_compactTest_cpu_free(int thr_id);
|
|
||||||
extern void quark_compactTest_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *inpHashes, uint32_t *d_validNonceTable,
|
|
||||||
uint32_t *d_nonces1, uint32_t *nrm1,
|
|
||||||
uint32_t *d_nonces2, uint32_t *nrm2,
|
|
||||||
int order);
|
|
||||||
extern void quark_compactTest_single_false_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *inpHashes, uint32_t *d_validNonceTable,
|
|
||||||
uint32_t *d_nonces1, uint32_t *nrm1,
|
|
||||||
int order);
|
|
||||||
|
|
||||||
extern uint32_t cuda_check_hash_branch(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_inputHash, int order);
|
|
||||||
|
|
||||||
|
|
||||||
// Original Quarkhash Funktion aus einem miner Quelltext
|
// Original Quarkhash Funktion aus einem miner Quelltext
|
||||||
extern "C" void quarkhash(void *state, const void *input)
|
extern "C" void quarkhash(void *state, const void *input)
|
||||||
{
|
{
|
||||||
|
@ -13,6 +13,7 @@ extern "C" {
|
|||||||
#include "miner.h"
|
#include "miner.h"
|
||||||
|
|
||||||
#include "cuda_helper.h"
|
#include "cuda_helper.h"
|
||||||
|
#include "x11/cuda_x11.h"
|
||||||
|
|
||||||
static uint32_t *d_hash[MAX_GPUS];
|
static uint32_t *d_hash[MAX_GPUS];
|
||||||
|
|
||||||
@ -20,12 +21,6 @@ extern void qubit_luffa512_cpu_init(int thr_id, uint32_t threads);
|
|||||||
extern void qubit_luffa512_cpu_setBlock_80(void *pdata);
|
extern void qubit_luffa512_cpu_setBlock_80(void *pdata);
|
||||||
extern void qubit_luffa512_cpu_hash_80(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_hash, int order);
|
extern void qubit_luffa512_cpu_hash_80(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_hash, int order);
|
||||||
|
|
||||||
extern void x11_cubehash512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void x11_cubehash512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void x11_echo512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void x11_echo512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern "C" void deephash(void *state, const void *input)
|
extern "C" void deephash(void *state, const void *input)
|
||||||
{
|
{
|
||||||
uint8_t _ALIGN(64) hash[64];
|
uint8_t _ALIGN(64) hash[64];
|
||||||
|
@ -13,6 +13,7 @@ extern "C" {
|
|||||||
#include "miner.h"
|
#include "miner.h"
|
||||||
|
|
||||||
#include "cuda_helper.h"
|
#include "cuda_helper.h"
|
||||||
|
#include "x11/cuda_x11.h"
|
||||||
|
|
||||||
static uint32_t *d_hash[MAX_GPUS];
|
static uint32_t *d_hash[MAX_GPUS];
|
||||||
|
|
||||||
@ -20,20 +21,6 @@ extern void qubit_luffa512_cpu_init(int thr_id, uint32_t threads);
|
|||||||
extern void qubit_luffa512_cpu_setBlock_80(void *pdata);
|
extern void qubit_luffa512_cpu_setBlock_80(void *pdata);
|
||||||
extern void qubit_luffa512_cpu_hash_80(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_hash, int order);
|
extern void qubit_luffa512_cpu_hash_80(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_hash, int order);
|
||||||
|
|
||||||
extern void x11_cubehash512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void x11_cubehash512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void x11_shavite512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void x11_shavite512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern int x11_simd512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void x11_simd512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
extern void x11_simd512_cpu_free(int thr_id);
|
|
||||||
|
|
||||||
extern void x11_echo512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void x11_echo512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
|
|
||||||
extern "C" void qubithash(void *state, const void *input)
|
extern "C" void qubithash(void *state, const void *input)
|
||||||
{
|
{
|
||||||
// luffa1-cubehash2-shavite3-simd4-echo5
|
// luffa1-cubehash2-shavite3-simd4-echo5
|
||||||
|
44
x11/c11.cu
44
x11/c11.cu
@ -16,52 +16,17 @@ extern "C"
|
|||||||
|
|
||||||
#include "miner.h"
|
#include "miner.h"
|
||||||
#include "cuda_helper.h"
|
#include "cuda_helper.h"
|
||||||
|
#include "cuda_x11.h"
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <memory.h>
|
#include <memory.h>
|
||||||
|
|
||||||
static uint32_t *d_hash[MAX_GPUS];
|
static uint32_t *d_hash[MAX_GPUS];
|
||||||
|
|
||||||
extern void quark_blake512_cpu_init(int thr_id, uint32_t threads);
|
// Flax/Chaincoin C11 CPU Hash
|
||||||
extern void quark_blake512_cpu_free(int thr_id);
|
|
||||||
extern void quark_blake512_cpu_setBlock_80(int thr_id, uint32_t *pdata);
|
|
||||||
extern void quark_blake512_cpu_hash_80(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_hash);
|
|
||||||
|
|
||||||
extern void quark_bmw512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_bmw512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void quark_groestl512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_groestl512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
extern void quark_doublegroestl512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
extern void quark_groestl512_cpu_free(int thr_id);
|
|
||||||
|
|
||||||
extern void quark_skein512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_skein512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void quark_keccak512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_keccak512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void quark_jh512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_jh512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void x11_luffaCubehash512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void x11_luffaCubehash512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void x11_shavite512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void x11_shavite512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern int x11_simd512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void x11_simd512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
extern void x11_simd512_cpu_free(int thr_id);
|
|
||||||
|
|
||||||
extern void x11_echo512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void x11_echo512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
|
|
||||||
// Flax/C11 CPU Hash
|
|
||||||
extern "C" void c11hash(void *output, const void *input)
|
extern "C" void c11hash(void *output, const void *input)
|
||||||
{
|
{
|
||||||
// blake1-bmw2-grs3-skein4-jh5-keccak6-luffa7-cubehash8-shavite9-simd10-echo11
|
unsigned char hash[128] = { 0 };
|
||||||
|
|
||||||
sph_blake512_context ctx_blake;
|
sph_blake512_context ctx_blake;
|
||||||
sph_bmw512_context ctx_bmw;
|
sph_bmw512_context ctx_bmw;
|
||||||
@ -75,9 +40,6 @@ extern "C" void c11hash(void *output, const void *input)
|
|||||||
sph_simd512_context ctx_simd;
|
sph_simd512_context ctx_simd;
|
||||||
sph_echo512_context ctx_echo;
|
sph_echo512_context ctx_echo;
|
||||||
|
|
||||||
unsigned char hash[128];
|
|
||||||
memset(hash, 0, sizeof hash);
|
|
||||||
|
|
||||||
sph_blake512_init(&ctx_blake);
|
sph_blake512_init(&ctx_blake);
|
||||||
sph_blake512 (&ctx_blake, input, 80);
|
sph_blake512 (&ctx_blake, input, 80);
|
||||||
sph_blake512_close(&ctx_blake, (void*) hash);
|
sph_blake512_close(&ctx_blake, (void*) hash);
|
||||||
|
18
x11/cuda_x11.h
Normal file
18
x11/cuda_x11.h
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
#include "quark/cuda_quark.h"
|
||||||
|
|
||||||
|
extern void x11_luffaCubehash512_cpu_init(int thr_id, uint32_t threads);
|
||||||
|
extern void x11_luffaCubehash512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t *d_hash, int order);
|
||||||
|
|
||||||
|
extern void x11_cubehash512_cpu_init(int thr_id, uint32_t threads);
|
||||||
|
extern void x11_cubehash512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
||||||
|
|
||||||
|
extern void x11_shavite512_cpu_init(int thr_id, uint32_t threads);
|
||||||
|
extern void x11_shavite512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
||||||
|
|
||||||
|
extern int x11_simd512_cpu_init(int thr_id, uint32_t threads);
|
||||||
|
extern void x11_simd512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
||||||
|
extern void x11_simd512_cpu_free(int thr_id);
|
||||||
|
|
||||||
|
extern void x11_echo512_cpu_init(int thr_id, uint32_t threads);
|
||||||
|
extern void x11_echo512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
||||||
|
|
17
x11/s3.cu
17
x11/s3.cu
@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* S3 Hash (Also called 3S - Used by 1Coin)
|
* S3 Hash (Also called Triple S - Used by 1Coin)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -10,22 +10,15 @@ extern "C" {
|
|||||||
|
|
||||||
#include "miner.h"
|
#include "miner.h"
|
||||||
#include "cuda_helper.h"
|
#include "cuda_helper.h"
|
||||||
|
#include "cuda_x11.h"
|
||||||
|
|
||||||
|
extern void x11_shavite512_setBlock_80(void *pdata);
|
||||||
|
extern void x11_shavite512_cpu_hash_80(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_hash, int order);
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
static uint32_t *d_hash[MAX_GPUS];
|
static uint32_t *d_hash[MAX_GPUS];
|
||||||
|
|
||||||
extern void x11_shavite512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void x11_shavite512_cpu_hash_80(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_hash, int order);
|
|
||||||
extern void x11_shavite512_setBlock_80(void *pdata);
|
|
||||||
|
|
||||||
extern int x11_simd512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void x11_simd512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
extern void x11_simd512_cpu_free(int thr_id);
|
|
||||||
|
|
||||||
extern void quark_skein512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_skein512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
/* CPU HASH */
|
/* CPU HASH */
|
||||||
extern "C" void s3hash(void *output, const void *input)
|
extern "C" void s3hash(void *output, const void *input)
|
||||||
{
|
{
|
||||||
|
40
x11/x11.cu
40
x11/x11.cu
@ -1,12 +1,10 @@
|
|||||||
extern "C"
|
extern "C" {
|
||||||
{
|
|
||||||
#include "sph/sph_blake.h"
|
#include "sph/sph_blake.h"
|
||||||
#include "sph/sph_bmw.h"
|
#include "sph/sph_bmw.h"
|
||||||
#include "sph/sph_groestl.h"
|
#include "sph/sph_groestl.h"
|
||||||
#include "sph/sph_skein.h"
|
#include "sph/sph_skein.h"
|
||||||
#include "sph/sph_jh.h"
|
#include "sph/sph_jh.h"
|
||||||
#include "sph/sph_keccak.h"
|
#include "sph/sph_keccak.h"
|
||||||
|
|
||||||
#include "sph/sph_luffa.h"
|
#include "sph/sph_luffa.h"
|
||||||
#include "sph/sph_cubehash.h"
|
#include "sph/sph_cubehash.h"
|
||||||
#include "sph/sph_shavite.h"
|
#include "sph/sph_shavite.h"
|
||||||
@ -16,47 +14,13 @@ extern "C"
|
|||||||
|
|
||||||
#include "miner.h"
|
#include "miner.h"
|
||||||
#include "cuda_helper.h"
|
#include "cuda_helper.h"
|
||||||
|
#include "cuda_x11.h"
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <memory.h>
|
#include <memory.h>
|
||||||
|
|
||||||
static uint32_t *d_hash[MAX_GPUS];
|
static uint32_t *d_hash[MAX_GPUS];
|
||||||
|
|
||||||
extern void quark_blake512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_blake512_cpu_free(int thr_id);
|
|
||||||
extern void quark_blake512_cpu_setBlock_80(int thr_id, uint32_t *pdata);
|
|
||||||
extern void quark_blake512_cpu_hash_80(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_hash);
|
|
||||||
|
|
||||||
extern void quark_bmw512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_bmw512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void quark_groestl512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_groestl512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
extern void quark_doublegroestl512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
extern void quark_groestl512_cpu_free(int thr_id);
|
|
||||||
|
|
||||||
extern void quark_skein512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_skein512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void quark_keccak512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_keccak512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void quark_jh512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_jh512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void x11_luffaCubehash512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void x11_luffaCubehash512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void x11_shavite512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void x11_shavite512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern int x11_simd512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void x11_simd512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
extern void x11_simd512_cpu_free(int thr_id);
|
|
||||||
|
|
||||||
extern void x11_echo512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void x11_echo512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
// X11 CPU Hash
|
// X11 CPU Hash
|
||||||
extern "C" void x11hash(void *output, const void *input)
|
extern "C" void x11hash(void *output, const void *input)
|
||||||
{
|
{
|
||||||
|
35
x13/x13.cu
35
x13/x13.cu
@ -22,43 +22,10 @@ extern "C"
|
|||||||
#include "miner.h"
|
#include "miner.h"
|
||||||
|
|
||||||
#include "cuda_helper.h"
|
#include "cuda_helper.h"
|
||||||
|
#include "x11/cuda_x11.h"
|
||||||
|
|
||||||
static uint32_t *d_hash[MAX_GPUS];
|
static uint32_t *d_hash[MAX_GPUS];
|
||||||
|
|
||||||
extern void quark_blake512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_blake512_cpu_free(int thr_id);
|
|
||||||
extern void quark_blake512_cpu_setBlock_80(int thr_id, uint32_t *pdata);
|
|
||||||
extern void quark_blake512_cpu_hash_80(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_hash);
|
|
||||||
|
|
||||||
extern void quark_bmw512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_bmw512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void quark_groestl512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_groestl512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
extern void quark_groestl512_cpu_free(int thr_id);
|
|
||||||
|
|
||||||
extern void quark_skein512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_skein512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void quark_keccak512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_keccak512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void quark_jh512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_jh512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void x11_luffaCubehash512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void x11_luffaCubehash512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void x11_shavite512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void x11_shavite512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern int x11_simd512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void x11_simd512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
extern void x11_simd512_cpu_free(int thr_id);
|
|
||||||
|
|
||||||
extern void x11_echo512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void x11_echo512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void x13_hamsi512_cpu_init(int thr_id, uint32_t threads);
|
extern void x13_hamsi512_cpu_init(int thr_id, uint32_t threads);
|
||||||
extern void x13_hamsi512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
extern void x13_hamsi512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
||||||
|
|
||||||
|
35
x15/x14.cu
35
x15/x14.cu
@ -25,44 +25,11 @@ extern "C" {
|
|||||||
#include "miner.h"
|
#include "miner.h"
|
||||||
|
|
||||||
#include "cuda_helper.h"
|
#include "cuda_helper.h"
|
||||||
|
#include "x11/cuda_x11.h"
|
||||||
|
|
||||||
// Memory for the hash functions
|
// Memory for the hash functions
|
||||||
static uint32_t *d_hash[MAX_GPUS] = { 0 };
|
static uint32_t *d_hash[MAX_GPUS] = { 0 };
|
||||||
|
|
||||||
extern void quark_blake512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_blake512_cpu_free(int thr_id);
|
|
||||||
extern void quark_blake512_cpu_setBlock_80(int thr_id, uint32_t *pdata);
|
|
||||||
extern void quark_blake512_cpu_hash_80(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_hash);
|
|
||||||
|
|
||||||
extern void quark_bmw512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_bmw512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void quark_groestl512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_groestl512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
extern void quark_groestl512_cpu_free(int thr_id);
|
|
||||||
|
|
||||||
extern void quark_skein512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_skein512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void quark_keccak512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_keccak512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void quark_jh512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_jh512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void x11_luffaCubehash512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void x11_luffaCubehash512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void x11_shavite512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void x11_shavite512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern int x11_simd512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void x11_simd512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
extern void x11_simd512_cpu_free(int thr_id);
|
|
||||||
|
|
||||||
extern void x11_echo512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void x11_echo512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void x13_hamsi512_cpu_init(int thr_id, uint32_t threads);
|
extern void x13_hamsi512_cpu_init(int thr_id, uint32_t threads);
|
||||||
extern void x13_hamsi512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
extern void x13_hamsi512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
||||||
|
|
||||||
|
35
x15/x15.cu
35
x15/x15.cu
@ -26,44 +26,11 @@ extern "C" {
|
|||||||
#include "miner.h"
|
#include "miner.h"
|
||||||
|
|
||||||
#include "cuda_helper.h"
|
#include "cuda_helper.h"
|
||||||
|
#include "x11/cuda_x11.h"
|
||||||
|
|
||||||
// Memory for the hash functions
|
// Memory for the hash functions
|
||||||
static uint32_t *d_hash[MAX_GPUS] = { 0 };
|
static uint32_t *d_hash[MAX_GPUS] = { 0 };
|
||||||
|
|
||||||
extern void quark_blake512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_blake512_cpu_free(int thr_id);
|
|
||||||
extern void quark_blake512_cpu_setBlock_80(int thr_id, uint32_t *pdata);
|
|
||||||
extern void quark_blake512_cpu_hash_80(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_hash);
|
|
||||||
|
|
||||||
extern void quark_bmw512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_bmw512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void quark_groestl512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_groestl512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
extern void quark_groestl512_cpu_free(int thr_id);
|
|
||||||
|
|
||||||
extern void quark_skein512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_skein512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void quark_keccak512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_keccak512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void quark_jh512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_jh512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void x11_luffaCubehash512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void x11_luffaCubehash512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void x11_shavite512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void x11_shavite512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern int x11_simd512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void x11_simd512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
extern void x11_simd512_cpu_free(int thr_id);
|
|
||||||
|
|
||||||
extern void x11_echo512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void x11_echo512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void x13_hamsi512_cpu_init(int thr_id, uint32_t threads);
|
extern void x13_hamsi512_cpu_init(int thr_id, uint32_t threads);
|
||||||
extern void x13_hamsi512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
extern void x13_hamsi512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
||||||
|
|
||||||
|
35
x17/x17.cu
35
x17/x17.cu
@ -30,43 +30,10 @@ extern "C"
|
|||||||
|
|
||||||
#include "miner.h"
|
#include "miner.h"
|
||||||
#include "cuda_helper.h"
|
#include "cuda_helper.h"
|
||||||
|
#include "x11/cuda_x11.h"
|
||||||
|
|
||||||
static uint32_t *d_hash[MAX_GPUS];
|
static uint32_t *d_hash[MAX_GPUS];
|
||||||
|
|
||||||
extern void quark_blake512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_blake512_cpu_free(int thr_id);
|
|
||||||
extern void quark_blake512_cpu_setBlock_80(int thr_id, uint32_t *pdata);
|
|
||||||
extern void quark_blake512_cpu_hash_80(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_hash);
|
|
||||||
|
|
||||||
extern void quark_bmw512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_bmw512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void quark_groestl512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_groestl512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
extern void quark_groestl512_cpu_free(int thr_id);
|
|
||||||
|
|
||||||
extern void quark_skein512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_skein512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void quark_keccak512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_keccak512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void quark_jh512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void quark_jh512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void x11_luffaCubehash512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void x11_luffaCubehash512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void x11_shavite512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void x11_shavite512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern int x11_simd512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void x11_simd512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
extern void x11_simd512_cpu_free(int thr_id);
|
|
||||||
|
|
||||||
extern void x11_echo512_cpu_init(int thr_id, uint32_t threads);
|
|
||||||
extern void x11_echo512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
|
||||||
|
|
||||||
extern void x13_hamsi512_cpu_init(int thr_id, uint32_t threads);
|
extern void x13_hamsi512_cpu_init(int thr_id, uint32_t threads);
|
||||||
extern void x13_hamsi512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
extern void x13_hamsi512_cpu_hash_64(int thr_id, uint32_t threads, uint32_t startNounce, uint32_t *d_nonceVector, uint32_t *d_hash, int order);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user