├── .gitignore ├── Algo256 ├── blake256.cu ├── blake2s.cu ├── bmw.cu ├── cuda_blake256.cu ├── cuda_bmw.cu ├── cuda_bmw256.cu ├── cuda_cubehash256.cu ├── cuda_fugue256.cu ├── cuda_groestl256.cu ├── cuda_keccak256.cu ├── cuda_keccak256_sm3.cu ├── cuda_skein256.cu ├── decred.cu ├── keccak256.cu └── vanilla.cu ├── INSTALL ├── JHA ├── cuda_jha_compactionTest.cu ├── cuda_jha_keccak512.cu ├── jackpotcoin.cu └── jha.cu ├── LICENSE.txt ├── Makefile.am ├── README.md ├── README.txt ├── algos.h ├── api.cpp ├── api ├── index.php ├── local-sample.php ├── summary.pl └── websocket.htm ├── autogen.sh ├── bench.cpp ├── bignum.cpp ├── bignum.hpp ├── ccminer.conf ├── ccminer.cpp ├── ccminer.sln ├── ccminer.v12.suo ├── ccminer.vcxproj ├── ccminer.vcxproj.filters ├── ccminer.vcxproj.user ├── compat.h ├── compat ├── Makefile.am ├── bignum_ssl10.hpp ├── ccminer-config.h ├── 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 │ │ │ ├── bn.h │ │ │ ├── crypto.h │ │ │ ├── e_os2.h │ │ │ ├── opensslconf.h │ │ │ ├── opensslv.h │ │ │ ├── ossl_typ.h │ │ │ ├── safestack.h │ │ │ ├── sha.h │ │ │ ├── stack.h │ │ │ └── symhacks.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 ├── gettimeofday.c ├── inttypes.h ├── jansson │ ├── .gitignore │ ├── Makefile.am │ ├── 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 ├── 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 │ ├── pthread_barrier.hpp │ ├── sched.h │ ├── x64 │ │ └── pthreadVC2.lib │ └── x86 │ │ └── pthreadVC2.lib ├── stdbool.h ├── sys │ └── time.h ├── unistd.h ├── winansi.c └── winansi.h ├── compile ├── config.guess ├── configure.ac ├── configure.sh ├── crc32.c ├── crypto ├── aesb.cpp ├── cn_aes.cuh ├── cn_blake.cuh ├── cn_groestl.cuh ├── cn_jh.cuh ├── cn_keccak.cuh ├── cn_skein.cuh ├── cpu │ ├── c_keccak.c │ └── c_keccak.h ├── cryptolight-core.cu ├── cryptolight-cpu.cpp ├── cryptolight.cu ├── cryptolight.h ├── cryptonight-core.cu ├── cryptonight-cpu.cpp ├── cryptonight-extra.cu ├── cryptonight.cu ├── cryptonight.h ├── int128_c.h ├── mman.c ├── mman.h ├── oaes_config.h ├── oaes_lib.cpp ├── oaes_lib.h ├── wildkeccak-cpu.cpp ├── wildkeccak.cu ├── wildkeccak.h ├── xmr-rpc.cpp └── xmr-rpc.h ├── cuda.cpp ├── cuda_checkhash.cu ├── cuda_debug.cuh ├── cuda_fugue256.h ├── cuda_groestlcoin.cu ├── cuda_groestlcoin.h ├── cuda_helper.h ├── cuda_helper_alexis.h ├── cuda_myriadgroestl.cu ├── cuda_skeincoin.cu ├── cuda_vector_uint2x4.h ├── cuda_vectors.h ├── cuda_vectors_alexis.h ├── donate.h ├── elist.h ├── equi ├── blake2 │ ├── blake2-config.h │ ├── blake2-impl.h │ ├── blake2-round.h │ ├── blake2.h │ ├── blake2b-load-sse2.h │ ├── blake2b-load-sse41.h │ ├── blake2b-round.h │ └── blake2bx.cpp ├── cuda_equi.cu ├── eqcuda.hpp ├── equi-stratum.cpp ├── equi.cpp ├── equihash.cpp └── equihash.h ├── fuguecoin.cpp ├── groestlcoin.cpp ├── hashlog.cpp ├── heavy ├── bastion.cu ├── cuda_bastion.cu ├── cuda_blake512.cu ├── cuda_combine.cu ├── cuda_groestl512.cu ├── cuda_hefty1.cu ├── cuda_keccak512.cu ├── cuda_sha256.cu ├── heavy.cu └── heavy.h ├── hefty1.c ├── hefty1.h ├── install-sh ├── lbry ├── cuda_lbry_merged.cu ├── cuda_sha256_lbry.cu ├── cuda_sha512_lbry.cu └── lbry.cu ├── lyra2 ├── Lyra2.c ├── Lyra2.h ├── Lyra2Z.c ├── Lyra2Z.h ├── Sponge.c ├── Sponge.h ├── cuda_lyra2.cu ├── cuda_lyra2Z.cu ├── cuda_lyra2Z_sm5.cuh ├── cuda_lyra2_sm2.cuh ├── cuda_lyra2_sm5.cuh ├── cuda_lyra2_vectors.h ├── cuda_lyra2v2.cu ├── cuda_lyra2v2_sm3.cuh ├── lyra2RE.cu ├── lyra2REv2.cu └── lyra2Z.cu ├── miner.h ├── myriadgroestl.cpp ├── neoscrypt ├── cuda_neoscrypt.cu ├── cuda_vectors.h ├── neoscrypt-cpu.c ├── neoscrypt.cpp └── neoscrypt.h ├── nvapi.cpp ├── nvml.cpp ├── nvml.h ├── nvsettings.cpp ├── pentablake.cu ├── polytimos.cu ├── pools.conf ├── pools.cpp ├── quark ├── cuda_bmw512.cu ├── cuda_bmw512_sm3.cuh ├── cuda_jh512.cu ├── cuda_quark.h ├── cuda_quark_blake512.cu ├── cuda_quark_blake512_sp.cuh ├── cuda_quark_compactionTest.cu ├── cuda_quark_groestl512.cu ├── cuda_quark_groestl512_sm2.cuh ├── cuda_quark_keccak512.cu ├── cuda_skein512.cu ├── groestl_functions_quad.h ├── groestl_simple.cuh ├── groestl_transf_quad.h ├── nist5.cu └── quarkcoin.cu ├── qubit ├── deep.cu ├── luffa.cu ├── qubit.cu ├── qubit_luffa512.cu └── qubit_luffa512_alexis.cu ├── res ├── ccminer.ico ├── ccminer.rc └── resource.h ├── 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 ├── 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 ├── sha256.cu ├── sha256.h ├── test_kernel.cu ├── test_kernel.h ├── titan_kernel.cu └── titan_kernel.h ├── serialize.hpp ├── sha256 ├── cuda_sha256d.cu ├── cuda_sha256t.cu ├── sha256d.cu └── sha256t.cu ├── sia ├── sia-rpc.cpp ├── sia-rpc.h └── sia.cu ├── skein.cu ├── skein2.cpp ├── skunk ├── cuda_skunk.cu ├── cuda_skunk_streebog.cu ├── skein_header.h └── skunk.cu ├── sph ├── aes_helper.c ├── blake.c ├── blake2b.c ├── blake2b.h ├── blake2s.c ├── blake2s.h ├── bmw.c ├── cubehash.c ├── echo.c ├── fugue.c ├── groestl.c ├── hamsi.c ├── hamsi_helper.c ├── haval.c ├── haval_helper.c ├── jh.c ├── keccak.c ├── luffa.c ├── md_helper.c ├── ripemd.c ├── sha2.c ├── 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_ripemd.h ├── sph_sha2.c ├── sph_sha2.h ├── sph_shabal.h ├── sph_shavite.h ├── sph_simd.h ├── sph_skein.h ├── sph_streebog.h ├── sph_types.h ├── sph_whirlpool.h ├── streebog.c └── whirlpool.c ├── stats.cpp ├── sysinfos.cpp ├── tribus ├── cuda_echo512_aes.cuh ├── cuda_echo512_final.cu └── tribus.cu ├── uint256.h ├── util.cpp ├── vc120.pdb ├── x11 ├── bitcore.cu ├── c11.cu ├── cuda_streebog.cu ├── cuda_streebog_maxwell.cu ├── cuda_x11.h ├── cuda_x11_aes.cuh ├── cuda_x11_aes_alexis.cuh ├── cuda_x11_cubehash512.cu ├── cuda_x11_echo.cu ├── cuda_x11_echo_alexis.cu ├── cuda_x11_luffa512.cu ├── cuda_x11_luffa512_Cubehash.cu ├── cuda_x11_shavite512.cu ├── cuda_x11_shavite512_alexis.cu ├── cuda_x11_simd512.cu ├── cuda_x11_simd512_func.cuh ├── cuda_x11_simd512_sm2.cuh ├── fresh.cu ├── phi.cu ├── s3.cu ├── sib.cu ├── streebog_arrays.cuh ├── timetravel.cu ├── veltor.cu ├── x11.cu └── x11evo.cu ├── x13 ├── cuda_hsr_sm3.cu ├── cuda_x13_fugue512.cu ├── cuda_x13_fugue512_alexis.cu ├── cuda_x13_hamsi512.cu ├── cuda_x13_hamsi512_alexis.cu ├── hsr.cu ├── sm3.c ├── sm3.h └── x13.cu ├── x15 ├── cuda_whirlpool_tables.cuh ├── cuda_whirlpoolx.cu ├── cuda_x14_shabal512.cu ├── cuda_x14_shabal512_alexis.cu ├── cuda_x15_whirlpool.cu ├── cuda_x15_whirlpool_sm3.cu ├── whirlpool.cu ├── whirlpoolx.cu ├── x14.cu └── x15.cu ├── x16 ├── cuda_x16.h ├── cuda_x16_echo512.cu ├── cuda_x16_fugue512.cu ├── cuda_x16_shabal512.cu ├── cuda_x16_simd512_80.cu ├── x16r.cu └── x16s.cu ├── x17 ├── cuda_x17_haval256.cu ├── cuda_x17_sha512.cu ├── hmq17.cu └── x17.cu └── zr5.cu /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/.gitignore -------------------------------------------------------------------------------- /Algo256/blake256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/Algo256/blake256.cu -------------------------------------------------------------------------------- /Algo256/blake2s.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/Algo256/blake2s.cu -------------------------------------------------------------------------------- /Algo256/bmw.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/Algo256/bmw.cu -------------------------------------------------------------------------------- /Algo256/cuda_blake256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/Algo256/cuda_blake256.cu -------------------------------------------------------------------------------- /Algo256/cuda_bmw.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/Algo256/cuda_bmw.cu -------------------------------------------------------------------------------- /Algo256/cuda_bmw256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/Algo256/cuda_bmw256.cu -------------------------------------------------------------------------------- /Algo256/cuda_cubehash256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/Algo256/cuda_cubehash256.cu -------------------------------------------------------------------------------- /Algo256/cuda_fugue256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/Algo256/cuda_fugue256.cu -------------------------------------------------------------------------------- /Algo256/cuda_groestl256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/Algo256/cuda_groestl256.cu -------------------------------------------------------------------------------- /Algo256/cuda_keccak256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/Algo256/cuda_keccak256.cu -------------------------------------------------------------------------------- /Algo256/cuda_keccak256_sm3.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/Algo256/cuda_keccak256_sm3.cu -------------------------------------------------------------------------------- /Algo256/cuda_skein256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/Algo256/cuda_skein256.cu -------------------------------------------------------------------------------- /Algo256/decred.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/Algo256/decred.cu -------------------------------------------------------------------------------- /Algo256/keccak256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/Algo256/keccak256.cu -------------------------------------------------------------------------------- /Algo256/vanilla.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/Algo256/vanilla.cu -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/INSTALL -------------------------------------------------------------------------------- /JHA/cuda_jha_compactionTest.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/JHA/cuda_jha_compactionTest.cu -------------------------------------------------------------------------------- /JHA/cuda_jha_keccak512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/JHA/cuda_jha_keccak512.cu -------------------------------------------------------------------------------- /JHA/jackpotcoin.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/JHA/jackpotcoin.cu -------------------------------------------------------------------------------- /JHA/jha.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/JHA/jha.cu -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/README.txt -------------------------------------------------------------------------------- /algos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/algos.h -------------------------------------------------------------------------------- /api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/api.cpp -------------------------------------------------------------------------------- /api/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/api/index.php -------------------------------------------------------------------------------- /api/local-sample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/api/local-sample.php -------------------------------------------------------------------------------- /api/summary.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/api/summary.pl -------------------------------------------------------------------------------- /api/websocket.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/api/websocket.htm -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/autogen.sh -------------------------------------------------------------------------------- /bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/bench.cpp -------------------------------------------------------------------------------- /bignum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/bignum.cpp -------------------------------------------------------------------------------- /bignum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/bignum.hpp -------------------------------------------------------------------------------- /ccminer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/ccminer.conf -------------------------------------------------------------------------------- /ccminer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/ccminer.cpp -------------------------------------------------------------------------------- /ccminer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/ccminer.sln -------------------------------------------------------------------------------- /ccminer.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/ccminer.v12.suo -------------------------------------------------------------------------------- /ccminer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/ccminer.vcxproj -------------------------------------------------------------------------------- /ccminer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/ccminer.vcxproj.filters -------------------------------------------------------------------------------- /ccminer.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/ccminer.vcxproj.user -------------------------------------------------------------------------------- /compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat.h -------------------------------------------------------------------------------- /compat/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/Makefile.am -------------------------------------------------------------------------------- /compat/bignum_ssl10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/bignum_ssl10.hpp -------------------------------------------------------------------------------- /compat/ccminer-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/ccminer-config.h -------------------------------------------------------------------------------- /compat/curl-for-windows/curl/include/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/curl-for-windows/curl/include/curl/curl.h -------------------------------------------------------------------------------- /compat/curl-for-windows/curl/include/curl/curlbuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/curl-for-windows/curl/include/curl/curlbuild.h -------------------------------------------------------------------------------- /compat/curl-for-windows/curl/include/curl/curlrules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/curl-for-windows/curl/include/curl/curlrules.h -------------------------------------------------------------------------------- /compat/curl-for-windows/curl/include/curl/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/curl-for-windows/curl/include/curl/curlver.h -------------------------------------------------------------------------------- /compat/curl-for-windows/curl/include/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/curl-for-windows/curl/include/curl/easy.h -------------------------------------------------------------------------------- /compat/curl-for-windows/curl/include/curl/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/curl-for-windows/curl/include/curl/mprintf.h -------------------------------------------------------------------------------- /compat/curl-for-windows/curl/include/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/curl-for-windows/curl/include/curl/multi.h -------------------------------------------------------------------------------- /compat/curl-for-windows/curl/include/curl/stdcheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/curl-for-windows/curl/include/curl/stdcheaders.h -------------------------------------------------------------------------------- /compat/curl-for-windows/curl/include/curl/typecheck-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/curl-for-windows/curl/include/curl/typecheck-gcc.h -------------------------------------------------------------------------------- /compat/curl-for-windows/openssl/config/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/curl-for-windows/openssl/config/opensslconf.h -------------------------------------------------------------------------------- /compat/curl-for-windows/openssl/openssl/crypto/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/curl-for-windows/openssl/openssl/crypto/opensslconf.h -------------------------------------------------------------------------------- /compat/curl-for-windows/openssl/openssl/crypto/sha/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/curl-for-windows/openssl/openssl/crypto/sha/sha.h -------------------------------------------------------------------------------- /compat/curl-for-windows/openssl/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/curl-for-windows/openssl/openssl/e_os2.h -------------------------------------------------------------------------------- /compat/curl-for-windows/openssl/openssl/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/curl-for-windows/openssl/openssl/include/openssl/bn.h -------------------------------------------------------------------------------- /compat/curl-for-windows/openssl/openssl/include/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/curl-for-windows/openssl/openssl/include/openssl/crypto.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/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/curl-for-windows/openssl/openssl/include/openssl/opensslv.h -------------------------------------------------------------------------------- /compat/curl-for-windows/openssl/openssl/include/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/curl-for-windows/openssl/openssl/include/openssl/ossl_typ.h -------------------------------------------------------------------------------- /compat/curl-for-windows/openssl/openssl/include/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/curl-for-windows/openssl/openssl/include/openssl/safestack.h -------------------------------------------------------------------------------- /compat/curl-for-windows/openssl/openssl/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/curl-for-windows/openssl/openssl/include/openssl/sha.h -------------------------------------------------------------------------------- /compat/curl-for-windows/openssl/openssl/include/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/curl-for-windows/openssl/openssl/include/openssl/stack.h -------------------------------------------------------------------------------- /compat/curl-for-windows/openssl/openssl/include/openssl/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/curl-for-windows/openssl/openssl/include/openssl/symhacks.h -------------------------------------------------------------------------------- /compat/curl-for-windows/out/x64/Release/lib/libcurl.x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/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/nemosminer/ccminerx16r-x16s/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/nemosminer/ccminerx16r-x16s/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/nemosminer/ccminerx16r-x16s/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/nemosminer/ccminerx16r-x16s/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/nemosminer/ccminerx16r-x16s/HEAD/compat/curl-for-windows/out/x86/Release/lib/zlib.x86.lib -------------------------------------------------------------------------------- /compat/curl-for-windows/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/curl-for-windows/zlib/zconf.h -------------------------------------------------------------------------------- /compat/curl-for-windows/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/curl-for-windows/zlib/zlib.h -------------------------------------------------------------------------------- /compat/getopt/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/getopt/getopt.h -------------------------------------------------------------------------------- /compat/getopt/getopt_long.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/getopt/getopt_long.c -------------------------------------------------------------------------------- /compat/gettimeofday.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/gettimeofday.c -------------------------------------------------------------------------------- /compat/inttypes.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /compat/jansson/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/jansson/.gitignore -------------------------------------------------------------------------------- /compat/jansson/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/jansson/Makefile.am -------------------------------------------------------------------------------- /compat/jansson/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/jansson/configure.ac -------------------------------------------------------------------------------- /compat/jansson/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/jansson/dump.c -------------------------------------------------------------------------------- /compat/jansson/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/jansson/error.c -------------------------------------------------------------------------------- /compat/jansson/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/jansson/hashtable.c -------------------------------------------------------------------------------- /compat/jansson/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/jansson/hashtable.h -------------------------------------------------------------------------------- /compat/jansson/jansson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/jansson/jansson.h -------------------------------------------------------------------------------- /compat/jansson/jansson_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/jansson/jansson_config.h -------------------------------------------------------------------------------- /compat/jansson/jansson_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/jansson/jansson_config.h.in -------------------------------------------------------------------------------- /compat/jansson/jansson_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/jansson/jansson_private.h -------------------------------------------------------------------------------- /compat/jansson/jansson_private_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/jansson/jansson_private_config.h -------------------------------------------------------------------------------- /compat/jansson/jansson_private_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/jansson/jansson_private_config.h.in -------------------------------------------------------------------------------- /compat/jansson/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/jansson/load.c -------------------------------------------------------------------------------- /compat/jansson/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/jansson/memory.c -------------------------------------------------------------------------------- /compat/jansson/pack_unpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/jansson/pack_unpack.c -------------------------------------------------------------------------------- /compat/jansson/strbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/jansson/strbuffer.c -------------------------------------------------------------------------------- /compat/jansson/strbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/jansson/strbuffer.h -------------------------------------------------------------------------------- /compat/jansson/strconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/jansson/strconv.c -------------------------------------------------------------------------------- /compat/jansson/utf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/jansson/utf.c -------------------------------------------------------------------------------- /compat/jansson/utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/jansson/utf.h -------------------------------------------------------------------------------- /compat/jansson/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/jansson/util.h -------------------------------------------------------------------------------- /compat/jansson/value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/jansson/value.c -------------------------------------------------------------------------------- /compat/nvapi/NVAPI.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://developer.nvidia.com/nvapi 3 | -------------------------------------------------------------------------------- /compat/nvapi/amd64/nvapi64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/nvapi/amd64/nvapi64.lib -------------------------------------------------------------------------------- /compat/nvapi/nvHLSLExtns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/nvapi/nvHLSLExtns.h -------------------------------------------------------------------------------- /compat/nvapi/nvHLSLExtnsInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/nvapi/nvHLSLExtnsInternal.h -------------------------------------------------------------------------------- /compat/nvapi/nvShaderExtnEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/nvapi/nvShaderExtnEnums.h -------------------------------------------------------------------------------- /compat/nvapi/nvapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/nvapi/nvapi.h -------------------------------------------------------------------------------- /compat/nvapi/nvapi_ccminer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/nvapi/nvapi_ccminer.h -------------------------------------------------------------------------------- /compat/nvapi/nvapi_lite_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/nvapi/nvapi_lite_common.h -------------------------------------------------------------------------------- /compat/nvapi/nvapi_lite_d3dext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/nvapi/nvapi_lite_d3dext.h -------------------------------------------------------------------------------- /compat/nvapi/nvapi_lite_salend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/nvapi/nvapi_lite_salend.h -------------------------------------------------------------------------------- /compat/nvapi/nvapi_lite_salstart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/nvapi/nvapi_lite_salstart.h -------------------------------------------------------------------------------- /compat/nvapi/nvapi_lite_sli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/nvapi/nvapi_lite_sli.h -------------------------------------------------------------------------------- /compat/nvapi/nvapi_lite_stereo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/nvapi/nvapi_lite_stereo.h -------------------------------------------------------------------------------- /compat/nvapi/nvapi_lite_surround.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/nvapi/nvapi_lite_surround.h -------------------------------------------------------------------------------- /compat/nvapi/x86/nvapi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/nvapi/x86/nvapi.lib -------------------------------------------------------------------------------- /compat/pthreads/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/pthreads/pthread.h -------------------------------------------------------------------------------- /compat/pthreads/pthread_barrier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/pthreads/pthread_barrier.hpp -------------------------------------------------------------------------------- /compat/pthreads/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/pthreads/sched.h -------------------------------------------------------------------------------- /compat/pthreads/x64/pthreadVC2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/pthreads/x64/pthreadVC2.lib -------------------------------------------------------------------------------- /compat/pthreads/x86/pthreadVC2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/pthreads/x86/pthreadVC2.lib -------------------------------------------------------------------------------- /compat/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/stdbool.h -------------------------------------------------------------------------------- /compat/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/sys/time.h -------------------------------------------------------------------------------- /compat/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/unistd.h -------------------------------------------------------------------------------- /compat/winansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/winansi.c -------------------------------------------------------------------------------- /compat/winansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compat/winansi.h -------------------------------------------------------------------------------- /compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/compile -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/config.guess -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/configure.ac -------------------------------------------------------------------------------- /configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/configure.sh -------------------------------------------------------------------------------- /crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/crc32.c -------------------------------------------------------------------------------- /crypto/aesb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/crypto/aesb.cpp -------------------------------------------------------------------------------- /crypto/cn_aes.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/crypto/cn_aes.cuh -------------------------------------------------------------------------------- /crypto/cn_blake.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/crypto/cn_blake.cuh -------------------------------------------------------------------------------- /crypto/cn_groestl.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/crypto/cn_groestl.cuh -------------------------------------------------------------------------------- /crypto/cn_jh.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/crypto/cn_jh.cuh -------------------------------------------------------------------------------- /crypto/cn_keccak.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/crypto/cn_keccak.cuh -------------------------------------------------------------------------------- /crypto/cn_skein.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/crypto/cn_skein.cuh -------------------------------------------------------------------------------- /crypto/cpu/c_keccak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/crypto/cpu/c_keccak.c -------------------------------------------------------------------------------- /crypto/cpu/c_keccak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/crypto/cpu/c_keccak.h -------------------------------------------------------------------------------- /crypto/cryptolight-core.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/crypto/cryptolight-core.cu -------------------------------------------------------------------------------- /crypto/cryptolight-cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/crypto/cryptolight-cpu.cpp -------------------------------------------------------------------------------- /crypto/cryptolight.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/crypto/cryptolight.cu -------------------------------------------------------------------------------- /crypto/cryptolight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/crypto/cryptolight.h -------------------------------------------------------------------------------- /crypto/cryptonight-core.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/crypto/cryptonight-core.cu -------------------------------------------------------------------------------- /crypto/cryptonight-cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/crypto/cryptonight-cpu.cpp -------------------------------------------------------------------------------- /crypto/cryptonight-extra.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/crypto/cryptonight-extra.cu -------------------------------------------------------------------------------- /crypto/cryptonight.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/crypto/cryptonight.cu -------------------------------------------------------------------------------- /crypto/cryptonight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/crypto/cryptonight.h -------------------------------------------------------------------------------- /crypto/int128_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/crypto/int128_c.h -------------------------------------------------------------------------------- /crypto/mman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/crypto/mman.c -------------------------------------------------------------------------------- /crypto/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/crypto/mman.h -------------------------------------------------------------------------------- /crypto/oaes_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/crypto/oaes_config.h -------------------------------------------------------------------------------- /crypto/oaes_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/crypto/oaes_lib.cpp -------------------------------------------------------------------------------- /crypto/oaes_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/crypto/oaes_lib.h -------------------------------------------------------------------------------- /crypto/wildkeccak-cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/crypto/wildkeccak-cpu.cpp -------------------------------------------------------------------------------- /crypto/wildkeccak.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/crypto/wildkeccak.cu -------------------------------------------------------------------------------- /crypto/wildkeccak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/crypto/wildkeccak.h -------------------------------------------------------------------------------- /crypto/xmr-rpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/crypto/xmr-rpc.cpp -------------------------------------------------------------------------------- /crypto/xmr-rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/crypto/xmr-rpc.h -------------------------------------------------------------------------------- /cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/cuda.cpp -------------------------------------------------------------------------------- /cuda_checkhash.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/cuda_checkhash.cu -------------------------------------------------------------------------------- /cuda_debug.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/cuda_debug.cuh -------------------------------------------------------------------------------- /cuda_fugue256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/cuda_fugue256.h -------------------------------------------------------------------------------- /cuda_groestlcoin.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/cuda_groestlcoin.cu -------------------------------------------------------------------------------- /cuda_groestlcoin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/cuda_groestlcoin.h -------------------------------------------------------------------------------- /cuda_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/cuda_helper.h -------------------------------------------------------------------------------- /cuda_helper_alexis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/cuda_helper_alexis.h -------------------------------------------------------------------------------- /cuda_myriadgroestl.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/cuda_myriadgroestl.cu -------------------------------------------------------------------------------- /cuda_skeincoin.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/cuda_skeincoin.cu -------------------------------------------------------------------------------- /cuda_vector_uint2x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/cuda_vector_uint2x4.h -------------------------------------------------------------------------------- /cuda_vectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/cuda_vectors.h -------------------------------------------------------------------------------- /cuda_vectors_alexis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/cuda_vectors_alexis.h -------------------------------------------------------------------------------- /donate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/donate.h -------------------------------------------------------------------------------- /elist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/elist.h -------------------------------------------------------------------------------- /equi/blake2/blake2-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/equi/blake2/blake2-config.h -------------------------------------------------------------------------------- /equi/blake2/blake2-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/equi/blake2/blake2-impl.h -------------------------------------------------------------------------------- /equi/blake2/blake2-round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/equi/blake2/blake2-round.h -------------------------------------------------------------------------------- /equi/blake2/blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/equi/blake2/blake2.h -------------------------------------------------------------------------------- /equi/blake2/blake2b-load-sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/equi/blake2/blake2b-load-sse2.h -------------------------------------------------------------------------------- /equi/blake2/blake2b-load-sse41.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/equi/blake2/blake2b-load-sse41.h -------------------------------------------------------------------------------- /equi/blake2/blake2b-round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/equi/blake2/blake2b-round.h -------------------------------------------------------------------------------- /equi/blake2/blake2bx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/equi/blake2/blake2bx.cpp -------------------------------------------------------------------------------- /equi/cuda_equi.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/equi/cuda_equi.cu -------------------------------------------------------------------------------- /equi/eqcuda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/equi/eqcuda.hpp -------------------------------------------------------------------------------- /equi/equi-stratum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/equi/equi-stratum.cpp -------------------------------------------------------------------------------- /equi/equi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/equi/equi.cpp -------------------------------------------------------------------------------- /equi/equihash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/equi/equihash.cpp -------------------------------------------------------------------------------- /equi/equihash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/equi/equihash.h -------------------------------------------------------------------------------- /fuguecoin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/fuguecoin.cpp -------------------------------------------------------------------------------- /groestlcoin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/groestlcoin.cpp -------------------------------------------------------------------------------- /hashlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/hashlog.cpp -------------------------------------------------------------------------------- /heavy/bastion.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/heavy/bastion.cu -------------------------------------------------------------------------------- /heavy/cuda_bastion.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/heavy/cuda_bastion.cu -------------------------------------------------------------------------------- /heavy/cuda_blake512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/heavy/cuda_blake512.cu -------------------------------------------------------------------------------- /heavy/cuda_combine.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/heavy/cuda_combine.cu -------------------------------------------------------------------------------- /heavy/cuda_groestl512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/heavy/cuda_groestl512.cu -------------------------------------------------------------------------------- /heavy/cuda_hefty1.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/heavy/cuda_hefty1.cu -------------------------------------------------------------------------------- /heavy/cuda_keccak512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/heavy/cuda_keccak512.cu -------------------------------------------------------------------------------- /heavy/cuda_sha256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/heavy/cuda_sha256.cu -------------------------------------------------------------------------------- /heavy/heavy.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/heavy/heavy.cu -------------------------------------------------------------------------------- /heavy/heavy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/heavy/heavy.h -------------------------------------------------------------------------------- /hefty1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/hefty1.c -------------------------------------------------------------------------------- /hefty1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/hefty1.h -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/install-sh -------------------------------------------------------------------------------- /lbry/cuda_lbry_merged.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/lbry/cuda_lbry_merged.cu -------------------------------------------------------------------------------- /lbry/cuda_sha256_lbry.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/lbry/cuda_sha256_lbry.cu -------------------------------------------------------------------------------- /lbry/cuda_sha512_lbry.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/lbry/cuda_sha512_lbry.cu -------------------------------------------------------------------------------- /lbry/lbry.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/lbry/lbry.cu -------------------------------------------------------------------------------- /lyra2/Lyra2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/lyra2/Lyra2.c -------------------------------------------------------------------------------- /lyra2/Lyra2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/lyra2/Lyra2.h -------------------------------------------------------------------------------- /lyra2/Lyra2Z.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/lyra2/Lyra2Z.c -------------------------------------------------------------------------------- /lyra2/Lyra2Z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/lyra2/Lyra2Z.h -------------------------------------------------------------------------------- /lyra2/Sponge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/lyra2/Sponge.c -------------------------------------------------------------------------------- /lyra2/Sponge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/lyra2/Sponge.h -------------------------------------------------------------------------------- /lyra2/cuda_lyra2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/lyra2/cuda_lyra2.cu -------------------------------------------------------------------------------- /lyra2/cuda_lyra2Z.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/lyra2/cuda_lyra2Z.cu -------------------------------------------------------------------------------- /lyra2/cuda_lyra2Z_sm5.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/lyra2/cuda_lyra2Z_sm5.cuh -------------------------------------------------------------------------------- /lyra2/cuda_lyra2_sm2.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/lyra2/cuda_lyra2_sm2.cuh -------------------------------------------------------------------------------- /lyra2/cuda_lyra2_sm5.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/lyra2/cuda_lyra2_sm5.cuh -------------------------------------------------------------------------------- /lyra2/cuda_lyra2_vectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/lyra2/cuda_lyra2_vectors.h -------------------------------------------------------------------------------- /lyra2/cuda_lyra2v2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/lyra2/cuda_lyra2v2.cu -------------------------------------------------------------------------------- /lyra2/cuda_lyra2v2_sm3.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/lyra2/cuda_lyra2v2_sm3.cuh -------------------------------------------------------------------------------- /lyra2/lyra2RE.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/lyra2/lyra2RE.cu -------------------------------------------------------------------------------- /lyra2/lyra2REv2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/lyra2/lyra2REv2.cu -------------------------------------------------------------------------------- /lyra2/lyra2Z.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/lyra2/lyra2Z.cu -------------------------------------------------------------------------------- /miner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/miner.h -------------------------------------------------------------------------------- /myriadgroestl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/myriadgroestl.cpp -------------------------------------------------------------------------------- /neoscrypt/cuda_neoscrypt.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/neoscrypt/cuda_neoscrypt.cu -------------------------------------------------------------------------------- /neoscrypt/cuda_vectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/neoscrypt/cuda_vectors.h -------------------------------------------------------------------------------- /neoscrypt/neoscrypt-cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/neoscrypt/neoscrypt-cpu.c -------------------------------------------------------------------------------- /neoscrypt/neoscrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/neoscrypt/neoscrypt.cpp -------------------------------------------------------------------------------- /neoscrypt/neoscrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/neoscrypt/neoscrypt.h -------------------------------------------------------------------------------- /nvapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/nvapi.cpp -------------------------------------------------------------------------------- /nvml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/nvml.cpp -------------------------------------------------------------------------------- /nvml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/nvml.h -------------------------------------------------------------------------------- /nvsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/nvsettings.cpp -------------------------------------------------------------------------------- /pentablake.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/pentablake.cu -------------------------------------------------------------------------------- /polytimos.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/polytimos.cu -------------------------------------------------------------------------------- /pools.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/pools.conf -------------------------------------------------------------------------------- /pools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/pools.cpp -------------------------------------------------------------------------------- /quark/cuda_bmw512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/quark/cuda_bmw512.cu -------------------------------------------------------------------------------- /quark/cuda_bmw512_sm3.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/quark/cuda_bmw512_sm3.cuh -------------------------------------------------------------------------------- /quark/cuda_jh512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/quark/cuda_jh512.cu -------------------------------------------------------------------------------- /quark/cuda_quark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/quark/cuda_quark.h -------------------------------------------------------------------------------- /quark/cuda_quark_blake512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/quark/cuda_quark_blake512.cu -------------------------------------------------------------------------------- /quark/cuda_quark_blake512_sp.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/quark/cuda_quark_blake512_sp.cuh -------------------------------------------------------------------------------- /quark/cuda_quark_compactionTest.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/quark/cuda_quark_compactionTest.cu -------------------------------------------------------------------------------- /quark/cuda_quark_groestl512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/quark/cuda_quark_groestl512.cu -------------------------------------------------------------------------------- /quark/cuda_quark_groestl512_sm2.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/quark/cuda_quark_groestl512_sm2.cuh -------------------------------------------------------------------------------- /quark/cuda_quark_keccak512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/quark/cuda_quark_keccak512.cu -------------------------------------------------------------------------------- /quark/cuda_skein512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/quark/cuda_skein512.cu -------------------------------------------------------------------------------- /quark/groestl_functions_quad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/quark/groestl_functions_quad.h -------------------------------------------------------------------------------- /quark/groestl_simple.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/quark/groestl_simple.cuh -------------------------------------------------------------------------------- /quark/groestl_transf_quad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/quark/groestl_transf_quad.h -------------------------------------------------------------------------------- /quark/nist5.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/quark/nist5.cu -------------------------------------------------------------------------------- /quark/quarkcoin.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/quark/quarkcoin.cu -------------------------------------------------------------------------------- /qubit/deep.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/qubit/deep.cu -------------------------------------------------------------------------------- /qubit/luffa.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/qubit/luffa.cu -------------------------------------------------------------------------------- /qubit/qubit.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/qubit/qubit.cu -------------------------------------------------------------------------------- /qubit/qubit_luffa512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/qubit/qubit_luffa512.cu -------------------------------------------------------------------------------- /qubit/qubit_luffa512_alexis.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/qubit/qubit_luffa512_alexis.cu -------------------------------------------------------------------------------- /res/ccminer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/res/ccminer.ico -------------------------------------------------------------------------------- /res/ccminer.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/res/ccminer.rc -------------------------------------------------------------------------------- /res/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/res/resource.h -------------------------------------------------------------------------------- /scrypt-jane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/scrypt-jane.cpp -------------------------------------------------------------------------------- /scrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/scrypt.cpp -------------------------------------------------------------------------------- /scrypt/blake.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/scrypt/blake.cu -------------------------------------------------------------------------------- /scrypt/code/scrypt-conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/scrypt/code/scrypt-conf.h -------------------------------------------------------------------------------- /scrypt/code/scrypt-jane-chacha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/scrypt/code/scrypt-jane-chacha.h -------------------------------------------------------------------------------- /scrypt/code/scrypt-jane-mix_chacha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/scrypt/code/scrypt-jane-mix_chacha.h -------------------------------------------------------------------------------- /scrypt/code/scrypt-jane-portable-x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/scrypt/code/scrypt-jane-portable-x86.h -------------------------------------------------------------------------------- /scrypt/code/scrypt-jane-portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/scrypt/code/scrypt-jane-portable.h -------------------------------------------------------------------------------- /scrypt/code/scrypt-jane-romix-basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/scrypt/code/scrypt-jane-romix-basic.h -------------------------------------------------------------------------------- /scrypt/code/scrypt-jane-romix-template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/scrypt/code/scrypt-jane-romix-template.h -------------------------------------------------------------------------------- /scrypt/fermi_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/scrypt/fermi_kernel.cu -------------------------------------------------------------------------------- /scrypt/fermi_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/scrypt/fermi_kernel.h -------------------------------------------------------------------------------- /scrypt/keccak.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/scrypt/keccak.cu -------------------------------------------------------------------------------- /scrypt/keccak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/scrypt/keccak.h -------------------------------------------------------------------------------- /scrypt/kepler_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/scrypt/kepler_kernel.cu -------------------------------------------------------------------------------- /scrypt/kepler_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/scrypt/kepler_kernel.h -------------------------------------------------------------------------------- /scrypt/nv_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/scrypt/nv_kernel.cu -------------------------------------------------------------------------------- /scrypt/nv_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/scrypt/nv_kernel.h -------------------------------------------------------------------------------- /scrypt/nv_kernel2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/scrypt/nv_kernel2.cu -------------------------------------------------------------------------------- /scrypt/nv_kernel2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/scrypt/nv_kernel2.h -------------------------------------------------------------------------------- /scrypt/salsa_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/scrypt/salsa_kernel.cu -------------------------------------------------------------------------------- /scrypt/salsa_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/scrypt/salsa_kernel.h -------------------------------------------------------------------------------- /scrypt/scrypt-jane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/scrypt/scrypt-jane.h -------------------------------------------------------------------------------- /scrypt/sha256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/scrypt/sha256.cu -------------------------------------------------------------------------------- /scrypt/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/scrypt/sha256.h -------------------------------------------------------------------------------- /scrypt/test_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/scrypt/test_kernel.cu -------------------------------------------------------------------------------- /scrypt/test_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/scrypt/test_kernel.h -------------------------------------------------------------------------------- /scrypt/titan_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/scrypt/titan_kernel.cu -------------------------------------------------------------------------------- /scrypt/titan_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/scrypt/titan_kernel.h -------------------------------------------------------------------------------- /serialize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/serialize.hpp -------------------------------------------------------------------------------- /sha256/cuda_sha256d.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sha256/cuda_sha256d.cu -------------------------------------------------------------------------------- /sha256/cuda_sha256t.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sha256/cuda_sha256t.cu -------------------------------------------------------------------------------- /sha256/sha256d.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sha256/sha256d.cu -------------------------------------------------------------------------------- /sha256/sha256t.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sha256/sha256t.cu -------------------------------------------------------------------------------- /sia/sia-rpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sia/sia-rpc.cpp -------------------------------------------------------------------------------- /sia/sia-rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sia/sia-rpc.h -------------------------------------------------------------------------------- /sia/sia.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sia/sia.cu -------------------------------------------------------------------------------- /skein.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/skein.cu -------------------------------------------------------------------------------- /skein2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/skein2.cpp -------------------------------------------------------------------------------- /skunk/cuda_skunk.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/skunk/cuda_skunk.cu -------------------------------------------------------------------------------- /skunk/cuda_skunk_streebog.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/skunk/cuda_skunk_streebog.cu -------------------------------------------------------------------------------- /skunk/skein_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/skunk/skein_header.h -------------------------------------------------------------------------------- /skunk/skunk.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/skunk/skunk.cu -------------------------------------------------------------------------------- /sph/aes_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/aes_helper.c -------------------------------------------------------------------------------- /sph/blake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/blake.c -------------------------------------------------------------------------------- /sph/blake2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/blake2b.c -------------------------------------------------------------------------------- /sph/blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/blake2b.h -------------------------------------------------------------------------------- /sph/blake2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/blake2s.c -------------------------------------------------------------------------------- /sph/blake2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/blake2s.h -------------------------------------------------------------------------------- /sph/bmw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/bmw.c -------------------------------------------------------------------------------- /sph/cubehash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/cubehash.c -------------------------------------------------------------------------------- /sph/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/echo.c -------------------------------------------------------------------------------- /sph/fugue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/fugue.c -------------------------------------------------------------------------------- /sph/groestl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/groestl.c -------------------------------------------------------------------------------- /sph/hamsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/hamsi.c -------------------------------------------------------------------------------- /sph/hamsi_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/hamsi_helper.c -------------------------------------------------------------------------------- /sph/haval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/haval.c -------------------------------------------------------------------------------- /sph/haval_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/haval_helper.c -------------------------------------------------------------------------------- /sph/jh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/jh.c -------------------------------------------------------------------------------- /sph/keccak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/keccak.c -------------------------------------------------------------------------------- /sph/luffa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/luffa.c -------------------------------------------------------------------------------- /sph/md_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/md_helper.c -------------------------------------------------------------------------------- /sph/ripemd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/ripemd.c -------------------------------------------------------------------------------- /sph/sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/sha2.c -------------------------------------------------------------------------------- /sph/sha2big.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/sha2big.c -------------------------------------------------------------------------------- /sph/shabal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/shabal.c -------------------------------------------------------------------------------- /sph/shavite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/shavite.c -------------------------------------------------------------------------------- /sph/simd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/simd.c -------------------------------------------------------------------------------- /sph/skein.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/skein.c -------------------------------------------------------------------------------- /sph/sph_blake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/sph_blake.h -------------------------------------------------------------------------------- /sph/sph_bmw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/sph_bmw.h -------------------------------------------------------------------------------- /sph/sph_cubehash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/sph_cubehash.h -------------------------------------------------------------------------------- /sph/sph_echo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/sph_echo.h -------------------------------------------------------------------------------- /sph/sph_fugue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/sph_fugue.h -------------------------------------------------------------------------------- /sph/sph_groestl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/sph_groestl.h -------------------------------------------------------------------------------- /sph/sph_hamsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/sph_hamsi.h -------------------------------------------------------------------------------- /sph/sph_haval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/sph_haval.h -------------------------------------------------------------------------------- /sph/sph_jh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/sph_jh.h -------------------------------------------------------------------------------- /sph/sph_keccak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/sph_keccak.h -------------------------------------------------------------------------------- /sph/sph_luffa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/sph_luffa.h -------------------------------------------------------------------------------- /sph/sph_ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/sph_ripemd.h -------------------------------------------------------------------------------- /sph/sph_sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/sph_sha2.c -------------------------------------------------------------------------------- /sph/sph_sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/sph_sha2.h -------------------------------------------------------------------------------- /sph/sph_shabal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/sph_shabal.h -------------------------------------------------------------------------------- /sph/sph_shavite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/sph_shavite.h -------------------------------------------------------------------------------- /sph/sph_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/sph_simd.h -------------------------------------------------------------------------------- /sph/sph_skein.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/sph_skein.h -------------------------------------------------------------------------------- /sph/sph_streebog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/sph_streebog.h -------------------------------------------------------------------------------- /sph/sph_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/sph_types.h -------------------------------------------------------------------------------- /sph/sph_whirlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/sph_whirlpool.h -------------------------------------------------------------------------------- /sph/streebog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/streebog.c -------------------------------------------------------------------------------- /sph/whirlpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sph/whirlpool.c -------------------------------------------------------------------------------- /stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/stats.cpp -------------------------------------------------------------------------------- /sysinfos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/sysinfos.cpp -------------------------------------------------------------------------------- /tribus/cuda_echo512_aes.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/tribus/cuda_echo512_aes.cuh -------------------------------------------------------------------------------- /tribus/cuda_echo512_final.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/tribus/cuda_echo512_final.cu -------------------------------------------------------------------------------- /tribus/tribus.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/tribus/tribus.cu -------------------------------------------------------------------------------- /uint256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/uint256.h -------------------------------------------------------------------------------- /util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/util.cpp -------------------------------------------------------------------------------- /vc120.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/vc120.pdb -------------------------------------------------------------------------------- /x11/bitcore.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x11/bitcore.cu -------------------------------------------------------------------------------- /x11/c11.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x11/c11.cu -------------------------------------------------------------------------------- /x11/cuda_streebog.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x11/cuda_streebog.cu -------------------------------------------------------------------------------- /x11/cuda_streebog_maxwell.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x11/cuda_streebog_maxwell.cu -------------------------------------------------------------------------------- /x11/cuda_x11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x11/cuda_x11.h -------------------------------------------------------------------------------- /x11/cuda_x11_aes.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x11/cuda_x11_aes.cuh -------------------------------------------------------------------------------- /x11/cuda_x11_aes_alexis.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x11/cuda_x11_aes_alexis.cuh -------------------------------------------------------------------------------- /x11/cuda_x11_cubehash512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x11/cuda_x11_cubehash512.cu -------------------------------------------------------------------------------- /x11/cuda_x11_echo.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x11/cuda_x11_echo.cu -------------------------------------------------------------------------------- /x11/cuda_x11_echo_alexis.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x11/cuda_x11_echo_alexis.cu -------------------------------------------------------------------------------- /x11/cuda_x11_luffa512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x11/cuda_x11_luffa512.cu -------------------------------------------------------------------------------- /x11/cuda_x11_luffa512_Cubehash.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x11/cuda_x11_luffa512_Cubehash.cu -------------------------------------------------------------------------------- /x11/cuda_x11_shavite512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x11/cuda_x11_shavite512.cu -------------------------------------------------------------------------------- /x11/cuda_x11_shavite512_alexis.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x11/cuda_x11_shavite512_alexis.cu -------------------------------------------------------------------------------- /x11/cuda_x11_simd512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x11/cuda_x11_simd512.cu -------------------------------------------------------------------------------- /x11/cuda_x11_simd512_func.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x11/cuda_x11_simd512_func.cuh -------------------------------------------------------------------------------- /x11/cuda_x11_simd512_sm2.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x11/cuda_x11_simd512_sm2.cuh -------------------------------------------------------------------------------- /x11/fresh.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x11/fresh.cu -------------------------------------------------------------------------------- /x11/phi.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x11/phi.cu -------------------------------------------------------------------------------- /x11/s3.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x11/s3.cu -------------------------------------------------------------------------------- /x11/sib.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x11/sib.cu -------------------------------------------------------------------------------- /x11/streebog_arrays.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x11/streebog_arrays.cuh -------------------------------------------------------------------------------- /x11/timetravel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x11/timetravel.cu -------------------------------------------------------------------------------- /x11/veltor.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x11/veltor.cu -------------------------------------------------------------------------------- /x11/x11.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x11/x11.cu -------------------------------------------------------------------------------- /x11/x11evo.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x11/x11evo.cu -------------------------------------------------------------------------------- /x13/cuda_hsr_sm3.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x13/cuda_hsr_sm3.cu -------------------------------------------------------------------------------- /x13/cuda_x13_fugue512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x13/cuda_x13_fugue512.cu -------------------------------------------------------------------------------- /x13/cuda_x13_fugue512_alexis.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x13/cuda_x13_fugue512_alexis.cu -------------------------------------------------------------------------------- /x13/cuda_x13_hamsi512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x13/cuda_x13_hamsi512.cu -------------------------------------------------------------------------------- /x13/cuda_x13_hamsi512_alexis.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x13/cuda_x13_hamsi512_alexis.cu -------------------------------------------------------------------------------- /x13/hsr.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x13/hsr.cu -------------------------------------------------------------------------------- /x13/sm3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x13/sm3.c -------------------------------------------------------------------------------- /x13/sm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x13/sm3.h -------------------------------------------------------------------------------- /x13/x13.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x13/x13.cu -------------------------------------------------------------------------------- /x15/cuda_whirlpool_tables.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x15/cuda_whirlpool_tables.cuh -------------------------------------------------------------------------------- /x15/cuda_whirlpoolx.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x15/cuda_whirlpoolx.cu -------------------------------------------------------------------------------- /x15/cuda_x14_shabal512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x15/cuda_x14_shabal512.cu -------------------------------------------------------------------------------- /x15/cuda_x14_shabal512_alexis.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x15/cuda_x14_shabal512_alexis.cu -------------------------------------------------------------------------------- /x15/cuda_x15_whirlpool.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x15/cuda_x15_whirlpool.cu -------------------------------------------------------------------------------- /x15/cuda_x15_whirlpool_sm3.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x15/cuda_x15_whirlpool_sm3.cu -------------------------------------------------------------------------------- /x15/whirlpool.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x15/whirlpool.cu -------------------------------------------------------------------------------- /x15/whirlpoolx.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x15/whirlpoolx.cu -------------------------------------------------------------------------------- /x15/x14.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x15/x14.cu -------------------------------------------------------------------------------- /x15/x15.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x15/x15.cu -------------------------------------------------------------------------------- /x16/cuda_x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x16/cuda_x16.h -------------------------------------------------------------------------------- /x16/cuda_x16_echo512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x16/cuda_x16_echo512.cu -------------------------------------------------------------------------------- /x16/cuda_x16_fugue512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x16/cuda_x16_fugue512.cu -------------------------------------------------------------------------------- /x16/cuda_x16_shabal512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x16/cuda_x16_shabal512.cu -------------------------------------------------------------------------------- /x16/cuda_x16_simd512_80.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x16/cuda_x16_simd512_80.cu -------------------------------------------------------------------------------- /x16/x16r.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x16/x16r.cu -------------------------------------------------------------------------------- /x16/x16s.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x16/x16s.cu -------------------------------------------------------------------------------- /x17/cuda_x17_haval256.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x17/cuda_x17_haval256.cu -------------------------------------------------------------------------------- /x17/cuda_x17_sha512.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x17/cuda_x17_sha512.cu -------------------------------------------------------------------------------- /x17/hmq17.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x17/hmq17.cu -------------------------------------------------------------------------------- /x17/x17.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/x17/x17.cu -------------------------------------------------------------------------------- /zr5.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nemosminer/ccminerx16r-x16s/HEAD/zr5.cu --------------------------------------------------------------------------------