From 5579b91cfbae327b0ae5fe57b2f718037dcd694c Mon Sep 17 00:00:00 2001 From: Tanguy Pruvot Date: Sat, 27 Sep 2014 09:02:08 +0200 Subject: [PATCH] build for both GM104 and GM204 For the GTX 750 and new 970/980 also fix -a luffa parameter for 1.4.4 release --- README.md | 2 +- README.txt | 2 +- ccminer.vcxproj | 4 ++-- cpu-miner.c | 1 + 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4ca9fab..bf21286 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ This project requires some libraries to be built : - Curl -- pthreads +- pthreads (in tree) You can download prebuilt .lib and dll on the [bitcointalk forum thread](https://bitcointalk.org/?topic=167229.0) diff --git a/README.txt b/README.txt index cee450a..89022f7 100644 --- a/README.txt +++ b/README.txt @@ -1,5 +1,5 @@ -ccMiner release 1.4.3-tpruvot (Sep 10th 2014) - "Qubit and Doom" +ccMiner release 1.4.4-tpruvot (Sep 27th 2014) - "GTX 750 & 900" --------------------------------------------------------------- *************************************************************** diff --git a/ccminer.vcxproj b/ccminer.vcxproj index 7d15d86..e8920c7 100644 --- a/ccminer.vcxproj +++ b/ccminer.vcxproj @@ -177,7 +177,7 @@ copy "$(CudaToolkitBinDir)\cudart32*.dll" "$(OutDir)" true false - compute_50,sm_50 + compute_50,sm_50;compute_50,sm_52 @@ -590,4 +590,4 @@ copy "$(CudaToolkitBinDir)\cudart64*.dll" "$(OutDir)" - + \ No newline at end of file diff --git a/cpu-miner.c b/cpu-miner.c index 7ada599..37d8ec2 100644 --- a/cpu-miner.c +++ b/cpu-miner.c @@ -1105,6 +1105,7 @@ continue_scan: break; case ALGO_DOOM: + case ALGO_LUFFA_DOOM: rc = scanhash_doom(thr_id, work.data, work.target, max_nonce, &hashes_done); break;