GOSTCoin CUDA miner project, compatible with most nvidia cards, containing only gostd algo
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Tanguy Pruvot c3d10db873 algos: move cmdline algo/alias parser in a func 9 years ago
Algo256 lyra2v2: set a better TPB for intensity 20 (sm52) 9 years ago
JHA various fixes for SM 2.1 and the benchmark 9 years ago
api diff: store solved blocs count, update the api 9 years ago
compat
heavy intensity: do not reduce throughput before init 9 years ago
lyra2 lyra2v2: typo in type, its a struct of 4x uint2 :p 9 years ago
neoscrypt warn on cuda errors + various small changes 9 years ago
quark various fixes for SM 2.1 and the benchmark 9 years ago
qubit various fixes for SM 2.1 and the benchmark 9 years ago
res v1.6.6 release 9 years ago
scrypt lyra2: support for SM 2.1 cards (GTX 460) 9 years ago
sph blake: change dynamic round system 9 years ago
x11 intensity: do not reduce throughput before init 9 years ago
x13 warn on cuda errors + various small changes 9 years ago
x15 various fixes for SM 2.1 and the benchmark 9 years ago
x17 warn on cuda errors + various small changes 9 years ago
.gitignore
INSTALL
LICENSE.txt
Makefile.am refactor: create bench.cpp and algos.h 9 years ago
README.md
README.txt lyra2: improve cuda implementation (part 1, SM5+) 9 years ago
algos.h algos: move cmdline algo/alias parser in a func 9 years ago
api.cpp diff: store solved blocs count, update the api 9 years ago
autogen.sh
bench.cpp various fixes for SM 2.1 and the benchmark 9 years ago
bignum.cpp diff: rename functions like cpuminer-multi 9 years ago
bignum.hpp
build.cmd
build.sh
ccminer.conf
ccminer.cpp algos: move cmdline algo/alias parser in a func 9 years ago
ccminer.sln
ccminer.vcxproj lyra2/v2: fixes for vstudio 9 years ago
ccminer.vcxproj.filters lyra2/v2: fixes for vstudio 9 years ago
compat.h applog: remove useless mutex 9 years ago
compile update autoconf scripts 9 years ago
config.guess update autoconf scripts 9 years ago
configure.ac start v1.7, apply new prototypes to all algos 9 years ago
configure.sh lyra2: improve cuda implementation (part 1, SM5+) 9 years ago
cpuminer-config.h start v1.7, apply new prototypes to all algos 9 years ago
crc32.c
cuda.cpp warn on cuda errors + various small changes 9 years ago
cuda_checkhash.cu algos: add functions to free allocated resources 9 years ago
cuda_fugue256.h algos: add functions to free allocated resources 9 years ago
cuda_groestlcoin.cu various fixes for SM 2.1 and the benchmark 9 years ago
cuda_groestlcoin.h algos: add functions to free allocated resources 9 years ago
cuda_helper.h refactor: create bench.cpp and algos.h 9 years ago
cuda_myriadgroestl.cu algos: add functions to free allocated resources 9 years ago
cuda_nist5.cu intensity: do not reduce throughput before init 9 years ago
cuda_skeincoin.cu algos: free allocated mem for algo switch 9 years ago
cuda_vector.h
elist.h
fuguecoin.cpp intensity: do not reduce throughput before init 9 years ago
groestlcoin.cpp intensity: do not reduce throughput before init 9 years ago
hashlog.cpp
hefty1.c
hefty1.h
install-sh update autoconf scripts 9 years ago
miner.h algos: move cmdline algo/alias parser in a func 9 years ago
myriadgroestl.cpp intensity: do not reduce throughput before init 9 years ago
nvml.cpp Fix windows linkage, C/C++ mismatch 9 years ago
nvml.h
pentablake.cu various fixes for SM 2.1 and the benchmark 9 years ago
pools.conf Restore default timeout (300s) for normal use 9 years ago
pools.cpp
scrypt-jane.cpp warn on cuda errors + various small changes 9 years ago
scrypt.cpp benchmark: free last memory leaks on algo switch 9 years ago
serialize.hpp
skein.cu intensity: do not reduce throughput before init 9 years ago
skein2.cpp intensity: do not reduce throughput before init 9 years ago
stats.cpp algos: move cmdline algo/alias parser in a func 9 years ago
sysinfos.cpp
uint256.h
util.cpp lyra2v2: set a better TPB for intensity 20 (sm52) 9 years ago
zr5.cu various fixes for SM 2.1 and the benchmark 9 years ago

README.md

ccminer

Based on Christian Buchner's & Christian H.'s CUDA project, no more active on github recently.

Fork by tpruvot@github with X14,X15,X17,Blake256,BlakeCoin,Lyra2RE,Skein,ZR5 and others, check the README.txt

BTC donation address: 1AJdfCpLWPNoAMDfHF1wD5y8VgKSSTHxPo tip for next commit

A part of the recent algos were originally wrote by djm34.

This variant was tested and built on Linux (ubuntu server 14.04) and VStudio 2013 on Windows 7.

Note that the x86 releases are generally faster than x64 ones on Windows.

About source code dependencies

This project requires some libraries to be built :

  • OpenSSL (prebuilt for win)

  • Curl (prebuilt for win)

  • pthreads (prebuilt for win)

The tree now contains recent prebuilt openssl and curl .lib for both x86 and x64 platforms (windows).

To rebuild them, you need to clone this repository and its submodules : git clone https://github.com/peters/curl-for-windows.git compat/curl-for-windows

On Linux, you can use the helper ./build.sh (edit it if required)

There is also an old Tutorial for windows on CudaMining website.