├── .gitattributes ├── .gitignore ├── Algo256 ├── blake256.cu ├── cuda_blake256.cu ├── cuda_bmw256.cu ├── cuda_cubehash256.cu ├── cuda_fugue256.cu ├── cuda_groestl256.cu ├── cuda_keccak256.cu ├── cuda_skein256.cu └── keccak256.cu ├── INSTALL ├── JHA ├── cuda_jha_compactionTest.cu ├── cuda_jha_keccak512.cu └── jackpotcoin.cu ├── LICENSE.txt ├── Makefile.am ├── README.md ├── README.txt ├── api.cpp ├── api ├── index.php ├── local-sample.php └── websocket.htm ├── autogen.sh ├── bitcoin.cu ├── bitcredit ├── bitcredit.cu └── cuda_bitcredit.cu ├── bitslice_transformations_quad.cu ├── blake32.cu ├── ccminer.cpp ├── ccminer.sln ├── ccminer.v12.suo ├── ccminer.vcxproj ├── ccminer.vcxproj.filters ├── compat.h ├── compat ├── Makefile.am ├── curl-for-windows │ ├── curl │ │ └── include │ │ │ └── curl │ │ │ ├── curl.h │ │ │ ├── curlbuild.h │ │ │ ├── curlrules.h │ │ │ ├── curlver.h │ │ │ ├── easy.h │ │ │ ├── mprintf.h │ │ │ ├── multi.h │ │ │ ├── stdcheaders.h │ │ │ └── typecheck-gcc.h │ ├── openssl │ │ ├── config │ │ │ └── opensslconf.h │ │ └── openssl │ │ │ ├── crypto │ │ │ ├── opensslconf.h │ │ │ └── sha │ │ │ │ └── sha.h │ │ │ ├── e_os2.h │ │ │ └── include │ │ │ └── openssl │ │ │ ├── e_os2.h │ │ │ ├── opensslconf.h │ │ │ └── sha.h │ ├── out │ │ ├── x64 │ │ │ └── Release │ │ │ │ └── lib │ │ │ │ ├── libcurl.x64.lib │ │ │ │ ├── openssl.x64.lib │ │ │ │ └── zlib.x64.lib │ │ └── x86 │ │ │ └── Release │ │ │ └── lib │ │ │ ├── libcurl.x86.lib │ │ │ ├── openssl.x86.lib │ │ │ └── zlib.x86.lib │ └── zlib │ │ ├── zconf.h │ │ └── zlib.h ├── getopt │ ├── getopt.h │ └── getopt_long.c ├── gettid.h ├── gettimeofday.c ├── jansson │ ├── .gitignore │ ├── Makefile.am │ ├── config.h │ ├── configure.ac │ ├── dump.c │ ├── error.c │ ├── hashtable.c │ ├── hashtable.h │ ├── jansson.h │ ├── jansson_config.h │ ├── jansson_config.h.in │ ├── jansson_private.h │ ├── jansson_private_config.h │ ├── jansson_private_config.h.in │ ├── load.c │ ├── memory.c │ ├── pack_unpack.c │ ├── strbuffer.c │ ├── strbuffer.h │ ├── strconv.c │ ├── utf.c │ ├── utf.h │ ├── util.h │ └── value.c ├── localtime_r.h ├── nvapi │ ├── NVAPI.url │ ├── amd64 │ │ └── nvapi64.lib │ ├── nvHLSLExtns.h │ ├── nvHLSLExtnsInternal.h │ ├── nvShaderExtnEnums.h │ ├── nvapi.h │ ├── nvapi_ccminer.h │ ├── nvapi_lite_common.h │ ├── nvapi_lite_d3dext.h │ ├── nvapi_lite_salend.h │ ├── nvapi_lite_salstart.h │ ├── nvapi_lite_sli.h │ ├── nvapi_lite_stereo.h │ ├── nvapi_lite_surround.h │ └── x86 │ │ └── nvapi.lib ├── pthreads │ ├── pthread.h │ ├── sched.h │ ├── x64 │ │ └── pthreadVC2.lib │ └── x86 │ │ └── pthreadVC2.lib ├── sys │ └── time.h ├── unistd.h ├── winansi.c └── winansi.h ├── compile ├── config.guess ├── configure.ac ├── configure.sh ├── cpuminer-config.h ├── cpuminer-config.h.in ├── crc32.c ├── cuPrintf.cu ├── cuPrintf.cuh ├── cuda.cpp ├── cuda_bitcoin.cu ├── cuda_checkhash.cu ├── cuda_fugue256.cu ├── cuda_fugue256.h ├── cuda_groestlcoin.cu ├── cuda_groestlcoin.h ├── cuda_helper.h ├── cuda_myriadgroestl.cu ├── cuda_nist5.cu ├── cuda_vector.h ├── elist.h ├── example-cfg.json ├── fuguecoin.cpp ├── groestl_functions_quad.cu ├── groestlcoin.cpp ├── hashlog.cpp ├── heavy ├── cuda_blake512.cu ├── cuda_blake512.h ├── cuda_combine.cu ├── cuda_combine.h ├── cuda_groestl512.cu ├── cuda_groestl512.h ├── cuda_hefty1.cu ├── cuda_hefty1.h ├── cuda_keccak512.cu ├── cuda_keccak512.h ├── cuda_sha256.cu ├── cuda_sha256.h ├── heavy.cu └── heavy.h ├── hefty1.c ├── hefty1.h ├── install-sh ├── keccak ├── cuda_keccak256.cu └── keccak256.cu ├── log.c ├── log.h ├── lyra2 ├── Lyra2.c ├── Lyra2.h ├── Sponge.c ├── Sponge.h ├── cuda_lyra2.cu ├── cuda_lyra2v2.cu ├── lyra2RE.cu └── lyra2REv2.cu ├── miner.h ├── myriadgroestl.cpp ├── neoscrypt ├── cuda_neoscrypt.cu └── neoscrypt.cu ├── nvml.cpp ├── nvml.h ├── pentablake.cu ├── quark ├── animecoin.cu ├── cuda_bmw512.cu ├── cuda_jh512.cu ├── cuda_jh512__4.cu ├── cuda_jh512keccak512.cu ├── cuda_quark_blake512.cu ├── cuda_quark_compactionTest.cu ├── cuda_quark_groestl512.cu ├── cuda_quark_keccak512.cu ├── cuda_skein512.cu └── quarkcoin.cu ├── qubit ├── deep.cu ├── doom.cu ├── qubit.cu └── qubit_luffa512.cu ├── scrypt-jane.cpp ├── scrypt.cpp ├── scrypt ├── blake.cu ├── code │ ├── scrypt-conf.h │ ├── scrypt-jane-chacha.h │ ├── scrypt-jane-mix_chacha.h │ ├── scrypt-jane-portable-x86.h │ ├── scrypt-jane-portable.h │ ├── scrypt-jane-romix-basic.h │ ├── scrypt-jane-romix-template.h │ └── scrypt-jane-romix.h ├── fermi_kernel.cu ├── fermi_kernel.h ├── keccak.cu ├── keccak.h ├── kepler_kernel.cu ├── kepler_kernel.h ├── nv_kernel.cu ├── nv_kernel.h ├── nv_kernel2.cu ├── nv_kernel2.h ├── salsa_kernel.cu ├── salsa_kernel.h ├── scrypt-jane.h ├── sha2.c ├── sha256.cu ├── sha256.h ├── test_kernel.cu ├── test_kernel.h ├── titan_kernel.cu └── titan_kernel.h ├── skein.cu ├── sph ├── aes_helper.c ├── blake.c ├── bmw.c ├── cubehash.c ├── echo.c ├── fugue.c ├── groestl.c ├── hamsi.c ├── hamsi_helper.c ├── haval.c ├── haval_helper.c ├── hefty1.cpp ├── hefty1.h ├── jh.c ├── keccak.c ├── luffa.c ├── md_helper.c ├── neoscrypt.c ├── neoscrypt.h ├── sha2.c ├── sha256_Y.c ├── sha256_Y.h ├── sha2big.c ├── shabal.c ├── shavite.c ├── simd.c ├── skein.c ├── sph_blake.h ├── sph_bmw.h ├── sph_cubehash.h ├── sph_echo.h ├── sph_fugue.h ├── sph_groestl.h ├── sph_hamsi.h ├── sph_haval.h ├── sph_jh.h ├── sph_keccak.h ├── sph_luffa.h ├── sph_sha2.c ├── sph_sha2.h ├── sph_shabal.h ├── sph_shavite.h ├── sph_simd.h ├── sph_skein.h ├── sph_types.h ├── sph_whirlpool.h ├── sysendian.h ├── whirlpool.c ├── yescrypt-opt.c ├── yescrypt-simd.c ├── yescrypt.h └── yescryptcommon.c ├── stats.cpp ├── stl_heap.h ├── sysinfos.cpp ├── uint256.h ├── util.cpp ├── x11 ├── c11.cu ├── cuda_x11_aes.cu ├── cuda_x11_cubehash512.cu ├── cuda_x11_echo - Copy.cu ├── cuda_x11_echo.cu ├── cuda_x11_luffa512.cu ├── cuda_x11_luffa512_Cubehash.cu ├── cuda_x11_shavite512.cu ├── cuda_x11_simd512.cu ├── fresh.cu ├── s3.cu ├── simd_functions.cu └── x11.cu ├── x13 ├── cuda_x13_fugue512.cu ├── cuda_x13_hamsi512.cu └── x13.cu ├── x15 ├── bastion.cu ├── cuda_axiom.cu ├── cuda_bastion.cu ├── cuda_whirlpoolx.cu ├── cuda_x14_shabal512.cu ├── cuda_x15_whirlpool.cu ├── whirlpool.cu ├── whirlpoolx.cu ├── x14.cu └── x15.cu └── x17 ├── cuda_x17_haval512.cu ├── cuda_x17_sha512.cu └── x17.cu /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/.gitignore -------------------------------------------------------------------------------- /Algo256/blake256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/Algo256/blake256.cu -------------------------------------------------------------------------------- /Algo256/cuda_blake256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/Algo256/cuda_blake256.cu -------------------------------------------------------------------------------- /Algo256/cuda_bmw256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/Algo256/cuda_bmw256.cu -------------------------------------------------------------------------------- /Algo256/cuda_cubehash256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/Algo256/cuda_cubehash256.cu -------------------------------------------------------------------------------- /Algo256/cuda_fugue256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/Algo256/cuda_fugue256.cu -------------------------------------------------------------------------------- /Algo256/cuda_groestl256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/Algo256/cuda_groestl256.cu -------------------------------------------------------------------------------- /Algo256/cuda_keccak256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/Algo256/cuda_keccak256.cu -------------------------------------------------------------------------------- /Algo256/cuda_skein256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/Algo256/cuda_skein256.cu -------------------------------------------------------------------------------- /Algo256/keccak256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/Algo256/keccak256.cu -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/INSTALL -------------------------------------------------------------------------------- /JHA/cuda_jha_compactionTest.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/JHA/cuda_jha_compactionTest.cu -------------------------------------------------------------------------------- /JHA/cuda_jha_keccak512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/JHA/cuda_jha_keccak512.cu -------------------------------------------------------------------------------- /JHA/jackpotcoin.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/JHA/jackpotcoin.cu -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/README.txt -------------------------------------------------------------------------------- /api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/api.cpp -------------------------------------------------------------------------------- /api/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/api/index.php -------------------------------------------------------------------------------- /api/local-sample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/api/local-sample.php -------------------------------------------------------------------------------- /api/websocket.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/api/websocket.htm -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/autogen.sh -------------------------------------------------------------------------------- /bitcoin.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/bitcoin.cu -------------------------------------------------------------------------------- /bitcredit/bitcredit.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/bitcredit/bitcredit.cu -------------------------------------------------------------------------------- /bitcredit/cuda_bitcredit.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/bitcredit/cuda_bitcredit.cu -------------------------------------------------------------------------------- /bitslice_transformations_quad.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/bitslice_transformations_quad.cu -------------------------------------------------------------------------------- /blake32.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/blake32.cu -------------------------------------------------------------------------------- /ccminer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/ccminer.cpp -------------------------------------------------------------------------------- /ccminer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/ccminer.sln -------------------------------------------------------------------------------- /ccminer.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/ccminer.v12.suo -------------------------------------------------------------------------------- /ccminer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/ccminer.vcxproj -------------------------------------------------------------------------------- /ccminer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/ccminer.vcxproj.filters -------------------------------------------------------------------------------- /compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat.h -------------------------------------------------------------------------------- /compat/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/Makefile.am -------------------------------------------------------------------------------- /compat/curl-for-windows/curl/include/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/curl-for-windows/curl/include/curl/curl.h -------------------------------------------------------------------------------- /compat/curl-for-windows/curl/include/curl/curlbuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/curl-for-windows/curl/include/curl/curlbuild.h -------------------------------------------------------------------------------- /compat/curl-for-windows/curl/include/curl/curlrules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/curl-for-windows/curl/include/curl/curlrules.h -------------------------------------------------------------------------------- /compat/curl-for-windows/curl/include/curl/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/curl-for-windows/curl/include/curl/curlver.h -------------------------------------------------------------------------------- /compat/curl-for-windows/curl/include/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/curl-for-windows/curl/include/curl/easy.h -------------------------------------------------------------------------------- /compat/curl-for-windows/curl/include/curl/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/curl-for-windows/curl/include/curl/mprintf.h -------------------------------------------------------------------------------- /compat/curl-for-windows/curl/include/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/curl-for-windows/curl/include/curl/multi.h -------------------------------------------------------------------------------- /compat/curl-for-windows/curl/include/curl/stdcheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/curl-for-windows/curl/include/curl/stdcheaders.h -------------------------------------------------------------------------------- /compat/curl-for-windows/curl/include/curl/typecheck-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/curl-for-windows/curl/include/curl/typecheck-gcc.h -------------------------------------------------------------------------------- /compat/curl-for-windows/openssl/config/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/curl-for-windows/openssl/config/opensslconf.h -------------------------------------------------------------------------------- /compat/curl-for-windows/openssl/openssl/crypto/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/curl-for-windows/openssl/openssl/crypto/opensslconf.h -------------------------------------------------------------------------------- /compat/curl-for-windows/openssl/openssl/crypto/sha/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/curl-for-windows/openssl/openssl/crypto/sha/sha.h -------------------------------------------------------------------------------- /compat/curl-for-windows/openssl/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/curl-for-windows/openssl/openssl/e_os2.h -------------------------------------------------------------------------------- /compat/curl-for-windows/openssl/openssl/include/openssl/e_os2.h: -------------------------------------------------------------------------------- 1 | #include "../../e_os2.h" 2 | -------------------------------------------------------------------------------- /compat/curl-for-windows/openssl/openssl/include/openssl/opensslconf.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/opensslconf.h" 2 | -------------------------------------------------------------------------------- /compat/curl-for-windows/openssl/openssl/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/curl-for-windows/openssl/openssl/include/openssl/sha.h -------------------------------------------------------------------------------- /compat/curl-for-windows/out/x64/Release/lib/libcurl.x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/curl-for-windows/out/x64/Release/lib/libcurl.x64.lib -------------------------------------------------------------------------------- /compat/curl-for-windows/out/x64/Release/lib/openssl.x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/curl-for-windows/out/x64/Release/lib/openssl.x64.lib -------------------------------------------------------------------------------- /compat/curl-for-windows/out/x64/Release/lib/zlib.x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/curl-for-windows/out/x64/Release/lib/zlib.x64.lib -------------------------------------------------------------------------------- /compat/curl-for-windows/out/x86/Release/lib/libcurl.x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/curl-for-windows/out/x86/Release/lib/libcurl.x86.lib -------------------------------------------------------------------------------- /compat/curl-for-windows/out/x86/Release/lib/openssl.x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/curl-for-windows/out/x86/Release/lib/openssl.x86.lib -------------------------------------------------------------------------------- /compat/curl-for-windows/out/x86/Release/lib/zlib.x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/curl-for-windows/out/x86/Release/lib/zlib.x86.lib -------------------------------------------------------------------------------- /compat/curl-for-windows/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/curl-for-windows/zlib/zconf.h -------------------------------------------------------------------------------- /compat/curl-for-windows/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/curl-for-windows/zlib/zlib.h -------------------------------------------------------------------------------- /compat/getopt/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/getopt/getopt.h -------------------------------------------------------------------------------- /compat/getopt/getopt_long.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/getopt/getopt_long.c -------------------------------------------------------------------------------- /compat/gettid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/gettid.h -------------------------------------------------------------------------------- /compat/gettimeofday.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/gettimeofday.c -------------------------------------------------------------------------------- /compat/jansson/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/jansson/.gitignore -------------------------------------------------------------------------------- /compat/jansson/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/jansson/Makefile.am -------------------------------------------------------------------------------- /compat/jansson/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/jansson/config.h -------------------------------------------------------------------------------- /compat/jansson/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/jansson/configure.ac -------------------------------------------------------------------------------- /compat/jansson/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/jansson/dump.c -------------------------------------------------------------------------------- /compat/jansson/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/jansson/error.c -------------------------------------------------------------------------------- /compat/jansson/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/jansson/hashtable.c -------------------------------------------------------------------------------- /compat/jansson/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/jansson/hashtable.h -------------------------------------------------------------------------------- /compat/jansson/jansson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/jansson/jansson.h -------------------------------------------------------------------------------- /compat/jansson/jansson_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/jansson/jansson_config.h -------------------------------------------------------------------------------- /compat/jansson/jansson_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/jansson/jansson_config.h.in -------------------------------------------------------------------------------- /compat/jansson/jansson_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/jansson/jansson_private.h -------------------------------------------------------------------------------- /compat/jansson/jansson_private_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/jansson/jansson_private_config.h -------------------------------------------------------------------------------- /compat/jansson/jansson_private_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/jansson/jansson_private_config.h.in -------------------------------------------------------------------------------- /compat/jansson/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/jansson/load.c -------------------------------------------------------------------------------- /compat/jansson/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/jansson/memory.c -------------------------------------------------------------------------------- /compat/jansson/pack_unpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/jansson/pack_unpack.c -------------------------------------------------------------------------------- /compat/jansson/strbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/jansson/strbuffer.c -------------------------------------------------------------------------------- /compat/jansson/strbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/jansson/strbuffer.h -------------------------------------------------------------------------------- /compat/jansson/strconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/jansson/strconv.c -------------------------------------------------------------------------------- /compat/jansson/utf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/jansson/utf.c -------------------------------------------------------------------------------- /compat/jansson/utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/jansson/utf.h -------------------------------------------------------------------------------- /compat/jansson/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/jansson/util.h -------------------------------------------------------------------------------- /compat/jansson/value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/jansson/value.c -------------------------------------------------------------------------------- /compat/localtime_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/localtime_r.h -------------------------------------------------------------------------------- /compat/nvapi/NVAPI.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://developer.nvidia.com/nvapi 3 | -------------------------------------------------------------------------------- /compat/nvapi/amd64/nvapi64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/nvapi/amd64/nvapi64.lib -------------------------------------------------------------------------------- /compat/nvapi/nvHLSLExtns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/nvapi/nvHLSLExtns.h -------------------------------------------------------------------------------- /compat/nvapi/nvHLSLExtnsInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/nvapi/nvHLSLExtnsInternal.h -------------------------------------------------------------------------------- /compat/nvapi/nvShaderExtnEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/nvapi/nvShaderExtnEnums.h -------------------------------------------------------------------------------- /compat/nvapi/nvapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/nvapi/nvapi.h -------------------------------------------------------------------------------- /compat/nvapi/nvapi_ccminer.h: -------------------------------------------------------------------------------- 1 | /* todo: stripped version... or not */ 2 | #include "nvapi.h" -------------------------------------------------------------------------------- /compat/nvapi/nvapi_lite_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/nvapi/nvapi_lite_common.h -------------------------------------------------------------------------------- /compat/nvapi/nvapi_lite_d3dext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/nvapi/nvapi_lite_d3dext.h -------------------------------------------------------------------------------- /compat/nvapi/nvapi_lite_salend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/nvapi/nvapi_lite_salend.h -------------------------------------------------------------------------------- /compat/nvapi/nvapi_lite_salstart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/nvapi/nvapi_lite_salstart.h -------------------------------------------------------------------------------- /compat/nvapi/nvapi_lite_sli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/nvapi/nvapi_lite_sli.h -------------------------------------------------------------------------------- /compat/nvapi/nvapi_lite_stereo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/nvapi/nvapi_lite_stereo.h -------------------------------------------------------------------------------- /compat/nvapi/nvapi_lite_surround.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/nvapi/nvapi_lite_surround.h -------------------------------------------------------------------------------- /compat/nvapi/x86/nvapi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/nvapi/x86/nvapi.lib -------------------------------------------------------------------------------- /compat/pthreads/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/pthreads/pthread.h -------------------------------------------------------------------------------- /compat/pthreads/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/pthreads/sched.h -------------------------------------------------------------------------------- /compat/pthreads/x64/pthreadVC2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/pthreads/x64/pthreadVC2.lib -------------------------------------------------------------------------------- /compat/pthreads/x86/pthreadVC2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/pthreads/x86/pthreadVC2.lib -------------------------------------------------------------------------------- /compat/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/sys/time.h -------------------------------------------------------------------------------- /compat/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/unistd.h -------------------------------------------------------------------------------- /compat/winansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/winansi.c -------------------------------------------------------------------------------- /compat/winansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compat/winansi.h -------------------------------------------------------------------------------- /compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/compile -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/config.guess -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/configure.ac -------------------------------------------------------------------------------- /configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/configure.sh -------------------------------------------------------------------------------- /cpuminer-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/cpuminer-config.h -------------------------------------------------------------------------------- /cpuminer-config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/cpuminer-config.h.in -------------------------------------------------------------------------------- /crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/crc32.c -------------------------------------------------------------------------------- /cuPrintf.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/cuPrintf.cu -------------------------------------------------------------------------------- /cuPrintf.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/cuPrintf.cuh -------------------------------------------------------------------------------- /cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/cuda.cpp -------------------------------------------------------------------------------- /cuda_bitcoin.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/cuda_bitcoin.cu -------------------------------------------------------------------------------- /cuda_checkhash.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/cuda_checkhash.cu -------------------------------------------------------------------------------- /cuda_fugue256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/cuda_fugue256.cu -------------------------------------------------------------------------------- /cuda_fugue256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/cuda_fugue256.h -------------------------------------------------------------------------------- /cuda_groestlcoin.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/cuda_groestlcoin.cu -------------------------------------------------------------------------------- /cuda_groestlcoin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/cuda_groestlcoin.h -------------------------------------------------------------------------------- /cuda_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/cuda_helper.h -------------------------------------------------------------------------------- /cuda_myriadgroestl.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/cuda_myriadgroestl.cu -------------------------------------------------------------------------------- /cuda_nist5.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/cuda_nist5.cu -------------------------------------------------------------------------------- /cuda_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/cuda_vector.h -------------------------------------------------------------------------------- /elist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/elist.h -------------------------------------------------------------------------------- /example-cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/example-cfg.json -------------------------------------------------------------------------------- /fuguecoin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/fuguecoin.cpp -------------------------------------------------------------------------------- /groestl_functions_quad.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/groestl_functions_quad.cu -------------------------------------------------------------------------------- /groestlcoin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/groestlcoin.cpp -------------------------------------------------------------------------------- /hashlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/hashlog.cpp -------------------------------------------------------------------------------- /heavy/cuda_blake512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/heavy/cuda_blake512.cu -------------------------------------------------------------------------------- /heavy/cuda_blake512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/heavy/cuda_blake512.h -------------------------------------------------------------------------------- /heavy/cuda_combine.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/heavy/cuda_combine.cu -------------------------------------------------------------------------------- /heavy/cuda_combine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/heavy/cuda_combine.h -------------------------------------------------------------------------------- /heavy/cuda_groestl512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/heavy/cuda_groestl512.cu -------------------------------------------------------------------------------- /heavy/cuda_groestl512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/heavy/cuda_groestl512.h -------------------------------------------------------------------------------- /heavy/cuda_hefty1.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/heavy/cuda_hefty1.cu -------------------------------------------------------------------------------- /heavy/cuda_hefty1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/heavy/cuda_hefty1.h -------------------------------------------------------------------------------- /heavy/cuda_keccak512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/heavy/cuda_keccak512.cu -------------------------------------------------------------------------------- /heavy/cuda_keccak512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/heavy/cuda_keccak512.h -------------------------------------------------------------------------------- /heavy/cuda_sha256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/heavy/cuda_sha256.cu -------------------------------------------------------------------------------- /heavy/cuda_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/heavy/cuda_sha256.h -------------------------------------------------------------------------------- /heavy/heavy.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/heavy/heavy.cu -------------------------------------------------------------------------------- /heavy/heavy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/heavy/heavy.h -------------------------------------------------------------------------------- /hefty1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/hefty1.c -------------------------------------------------------------------------------- /hefty1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/hefty1.h -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/install-sh -------------------------------------------------------------------------------- /keccak/cuda_keccak256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/keccak/cuda_keccak256.cu -------------------------------------------------------------------------------- /keccak/keccak256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/keccak/keccak256.cu -------------------------------------------------------------------------------- /log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/log.c -------------------------------------------------------------------------------- /log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/log.h -------------------------------------------------------------------------------- /lyra2/Lyra2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/lyra2/Lyra2.c -------------------------------------------------------------------------------- /lyra2/Lyra2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/lyra2/Lyra2.h -------------------------------------------------------------------------------- /lyra2/Sponge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/lyra2/Sponge.c -------------------------------------------------------------------------------- /lyra2/Sponge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/lyra2/Sponge.h -------------------------------------------------------------------------------- /lyra2/cuda_lyra2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/lyra2/cuda_lyra2.cu -------------------------------------------------------------------------------- /lyra2/cuda_lyra2v2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/lyra2/cuda_lyra2v2.cu -------------------------------------------------------------------------------- /lyra2/lyra2RE.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/lyra2/lyra2RE.cu -------------------------------------------------------------------------------- /lyra2/lyra2REv2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/lyra2/lyra2REv2.cu -------------------------------------------------------------------------------- /miner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/miner.h -------------------------------------------------------------------------------- /myriadgroestl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/myriadgroestl.cpp -------------------------------------------------------------------------------- /neoscrypt/cuda_neoscrypt.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/neoscrypt/cuda_neoscrypt.cu -------------------------------------------------------------------------------- /neoscrypt/neoscrypt.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/neoscrypt/neoscrypt.cu -------------------------------------------------------------------------------- /nvml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/nvml.cpp -------------------------------------------------------------------------------- /nvml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/nvml.h -------------------------------------------------------------------------------- /pentablake.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/pentablake.cu -------------------------------------------------------------------------------- /quark/animecoin.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/quark/animecoin.cu -------------------------------------------------------------------------------- /quark/cuda_bmw512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/quark/cuda_bmw512.cu -------------------------------------------------------------------------------- /quark/cuda_jh512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/quark/cuda_jh512.cu -------------------------------------------------------------------------------- /quark/cuda_jh512__4.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/quark/cuda_jh512__4.cu -------------------------------------------------------------------------------- /quark/cuda_jh512keccak512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/quark/cuda_jh512keccak512.cu -------------------------------------------------------------------------------- /quark/cuda_quark_blake512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/quark/cuda_quark_blake512.cu -------------------------------------------------------------------------------- /quark/cuda_quark_compactionTest.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/quark/cuda_quark_compactionTest.cu -------------------------------------------------------------------------------- /quark/cuda_quark_groestl512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/quark/cuda_quark_groestl512.cu -------------------------------------------------------------------------------- /quark/cuda_quark_keccak512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/quark/cuda_quark_keccak512.cu -------------------------------------------------------------------------------- /quark/cuda_skein512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/quark/cuda_skein512.cu -------------------------------------------------------------------------------- /quark/quarkcoin.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/quark/quarkcoin.cu -------------------------------------------------------------------------------- /qubit/deep.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/qubit/deep.cu -------------------------------------------------------------------------------- /qubit/doom.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/qubit/doom.cu -------------------------------------------------------------------------------- /qubit/qubit.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/qubit/qubit.cu -------------------------------------------------------------------------------- /qubit/qubit_luffa512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/qubit/qubit_luffa512.cu -------------------------------------------------------------------------------- /scrypt-jane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/scrypt-jane.cpp -------------------------------------------------------------------------------- /scrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/scrypt.cpp -------------------------------------------------------------------------------- /scrypt/blake.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/scrypt/blake.cu -------------------------------------------------------------------------------- /scrypt/code/scrypt-conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/scrypt/code/scrypt-conf.h -------------------------------------------------------------------------------- /scrypt/code/scrypt-jane-chacha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/scrypt/code/scrypt-jane-chacha.h -------------------------------------------------------------------------------- /scrypt/code/scrypt-jane-mix_chacha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/scrypt/code/scrypt-jane-mix_chacha.h -------------------------------------------------------------------------------- /scrypt/code/scrypt-jane-portable-x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/scrypt/code/scrypt-jane-portable-x86.h -------------------------------------------------------------------------------- /scrypt/code/scrypt-jane-portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/scrypt/code/scrypt-jane-portable.h -------------------------------------------------------------------------------- /scrypt/code/scrypt-jane-romix-basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/scrypt/code/scrypt-jane-romix-basic.h -------------------------------------------------------------------------------- /scrypt/code/scrypt-jane-romix-template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/scrypt/code/scrypt-jane-romix-template.h -------------------------------------------------------------------------------- /scrypt/code/scrypt-jane-romix.h: -------------------------------------------------------------------------------- 1 | #include "scrypt-jane-chacha.h" 2 | -------------------------------------------------------------------------------- /scrypt/fermi_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/scrypt/fermi_kernel.cu -------------------------------------------------------------------------------- /scrypt/fermi_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/scrypt/fermi_kernel.h -------------------------------------------------------------------------------- /scrypt/keccak.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/scrypt/keccak.cu -------------------------------------------------------------------------------- /scrypt/keccak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/scrypt/keccak.h -------------------------------------------------------------------------------- /scrypt/kepler_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/scrypt/kepler_kernel.cu -------------------------------------------------------------------------------- /scrypt/kepler_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/scrypt/kepler_kernel.h -------------------------------------------------------------------------------- /scrypt/nv_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/scrypt/nv_kernel.cu -------------------------------------------------------------------------------- /scrypt/nv_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/scrypt/nv_kernel.h -------------------------------------------------------------------------------- /scrypt/nv_kernel2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/scrypt/nv_kernel2.cu -------------------------------------------------------------------------------- /scrypt/nv_kernel2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/scrypt/nv_kernel2.h -------------------------------------------------------------------------------- /scrypt/salsa_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/scrypt/salsa_kernel.cu -------------------------------------------------------------------------------- /scrypt/salsa_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/scrypt/salsa_kernel.h -------------------------------------------------------------------------------- /scrypt/scrypt-jane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/scrypt/scrypt-jane.h -------------------------------------------------------------------------------- /scrypt/sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/scrypt/sha2.c -------------------------------------------------------------------------------- /scrypt/sha256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/scrypt/sha256.cu -------------------------------------------------------------------------------- /scrypt/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/scrypt/sha256.h -------------------------------------------------------------------------------- /scrypt/test_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/scrypt/test_kernel.cu -------------------------------------------------------------------------------- /scrypt/test_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/scrypt/test_kernel.h -------------------------------------------------------------------------------- /scrypt/titan_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/scrypt/titan_kernel.cu -------------------------------------------------------------------------------- /scrypt/titan_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/scrypt/titan_kernel.h -------------------------------------------------------------------------------- /skein.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/skein.cu -------------------------------------------------------------------------------- /sph/aes_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/aes_helper.c -------------------------------------------------------------------------------- /sph/blake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/blake.c -------------------------------------------------------------------------------- /sph/bmw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/bmw.c -------------------------------------------------------------------------------- /sph/cubehash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/cubehash.c -------------------------------------------------------------------------------- /sph/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/echo.c -------------------------------------------------------------------------------- /sph/fugue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/fugue.c -------------------------------------------------------------------------------- /sph/groestl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/groestl.c -------------------------------------------------------------------------------- /sph/hamsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/hamsi.c -------------------------------------------------------------------------------- /sph/hamsi_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/hamsi_helper.c -------------------------------------------------------------------------------- /sph/haval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/haval.c -------------------------------------------------------------------------------- /sph/haval_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/haval_helper.c -------------------------------------------------------------------------------- /sph/hefty1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/hefty1.cpp -------------------------------------------------------------------------------- /sph/hefty1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/hefty1.h -------------------------------------------------------------------------------- /sph/jh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/jh.c -------------------------------------------------------------------------------- /sph/keccak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/keccak.c -------------------------------------------------------------------------------- /sph/luffa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/luffa.c -------------------------------------------------------------------------------- /sph/md_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/md_helper.c -------------------------------------------------------------------------------- /sph/neoscrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/neoscrypt.c -------------------------------------------------------------------------------- /sph/neoscrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/neoscrypt.h -------------------------------------------------------------------------------- /sph/sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/sha2.c -------------------------------------------------------------------------------- /sph/sha256_Y.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/sha256_Y.c -------------------------------------------------------------------------------- /sph/sha256_Y.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/sha256_Y.h -------------------------------------------------------------------------------- /sph/sha2big.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/sha2big.c -------------------------------------------------------------------------------- /sph/shabal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/shabal.c -------------------------------------------------------------------------------- /sph/shavite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/shavite.c -------------------------------------------------------------------------------- /sph/simd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/simd.c -------------------------------------------------------------------------------- /sph/skein.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/skein.c -------------------------------------------------------------------------------- /sph/sph_blake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/sph_blake.h -------------------------------------------------------------------------------- /sph/sph_bmw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/sph_bmw.h -------------------------------------------------------------------------------- /sph/sph_cubehash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/sph_cubehash.h -------------------------------------------------------------------------------- /sph/sph_echo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/sph_echo.h -------------------------------------------------------------------------------- /sph/sph_fugue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/sph_fugue.h -------------------------------------------------------------------------------- /sph/sph_groestl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/sph_groestl.h -------------------------------------------------------------------------------- /sph/sph_hamsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/sph_hamsi.h -------------------------------------------------------------------------------- /sph/sph_haval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/sph_haval.h -------------------------------------------------------------------------------- /sph/sph_jh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/sph_jh.h -------------------------------------------------------------------------------- /sph/sph_keccak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/sph_keccak.h -------------------------------------------------------------------------------- /sph/sph_luffa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/sph_luffa.h -------------------------------------------------------------------------------- /sph/sph_sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/sph_sha2.c -------------------------------------------------------------------------------- /sph/sph_sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/sph_sha2.h -------------------------------------------------------------------------------- /sph/sph_shabal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/sph_shabal.h -------------------------------------------------------------------------------- /sph/sph_shavite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/sph_shavite.h -------------------------------------------------------------------------------- /sph/sph_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/sph_simd.h -------------------------------------------------------------------------------- /sph/sph_skein.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/sph_skein.h -------------------------------------------------------------------------------- /sph/sph_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/sph_types.h -------------------------------------------------------------------------------- /sph/sph_whirlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/sph_whirlpool.h -------------------------------------------------------------------------------- /sph/sysendian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/sysendian.h -------------------------------------------------------------------------------- /sph/whirlpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/whirlpool.c -------------------------------------------------------------------------------- /sph/yescrypt-opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/yescrypt-opt.c -------------------------------------------------------------------------------- /sph/yescrypt-simd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/yescrypt-simd.c -------------------------------------------------------------------------------- /sph/yescrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/yescrypt.h -------------------------------------------------------------------------------- /sph/yescryptcommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sph/yescryptcommon.c -------------------------------------------------------------------------------- /stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/stats.cpp -------------------------------------------------------------------------------- /stl_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/stl_heap.h -------------------------------------------------------------------------------- /sysinfos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/sysinfos.cpp -------------------------------------------------------------------------------- /uint256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/uint256.h -------------------------------------------------------------------------------- /util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/util.cpp -------------------------------------------------------------------------------- /x11/c11.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/x11/c11.cu -------------------------------------------------------------------------------- /x11/cuda_x11_aes.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/x11/cuda_x11_aes.cu -------------------------------------------------------------------------------- /x11/cuda_x11_cubehash512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/x11/cuda_x11_cubehash512.cu -------------------------------------------------------------------------------- /x11/cuda_x11_echo - Copy.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/x11/cuda_x11_echo - Copy.cu -------------------------------------------------------------------------------- /x11/cuda_x11_echo.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/x11/cuda_x11_echo.cu -------------------------------------------------------------------------------- /x11/cuda_x11_luffa512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/x11/cuda_x11_luffa512.cu -------------------------------------------------------------------------------- /x11/cuda_x11_luffa512_Cubehash.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/x11/cuda_x11_luffa512_Cubehash.cu -------------------------------------------------------------------------------- /x11/cuda_x11_shavite512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/x11/cuda_x11_shavite512.cu -------------------------------------------------------------------------------- /x11/cuda_x11_simd512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/x11/cuda_x11_simd512.cu -------------------------------------------------------------------------------- /x11/fresh.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/x11/fresh.cu -------------------------------------------------------------------------------- /x11/s3.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/x11/s3.cu -------------------------------------------------------------------------------- /x11/simd_functions.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/x11/simd_functions.cu -------------------------------------------------------------------------------- /x11/x11.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/x11/x11.cu -------------------------------------------------------------------------------- /x13/cuda_x13_fugue512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/x13/cuda_x13_fugue512.cu -------------------------------------------------------------------------------- /x13/cuda_x13_hamsi512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/x13/cuda_x13_hamsi512.cu -------------------------------------------------------------------------------- /x13/x13.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/x13/x13.cu -------------------------------------------------------------------------------- /x15/bastion.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/x15/bastion.cu -------------------------------------------------------------------------------- /x15/cuda_axiom.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/x15/cuda_axiom.cu -------------------------------------------------------------------------------- /x15/cuda_bastion.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/x15/cuda_bastion.cu -------------------------------------------------------------------------------- /x15/cuda_whirlpoolx.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/x15/cuda_whirlpoolx.cu -------------------------------------------------------------------------------- /x15/cuda_x14_shabal512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/x15/cuda_x14_shabal512.cu -------------------------------------------------------------------------------- /x15/cuda_x15_whirlpool.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/x15/cuda_x15_whirlpool.cu -------------------------------------------------------------------------------- /x15/whirlpool.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/x15/whirlpool.cu -------------------------------------------------------------------------------- /x15/whirlpoolx.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/x15/whirlpoolx.cu -------------------------------------------------------------------------------- /x15/x14.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/x15/x14.cu -------------------------------------------------------------------------------- /x15/x15.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/x15/x15.cu -------------------------------------------------------------------------------- /x17/cuda_x17_haval512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/x17/cuda_x17_haval512.cu -------------------------------------------------------------------------------- /x17/cuda_x17_sha512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/x17/cuda_x17_sha512.cu -------------------------------------------------------------------------------- /x17/x17.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp-hash/ccminer/HEAD/x17/x17.cu --------------------------------------------------------------------------------