Skip to content
This repository has been archived by the owner on Jan 9, 2021. It is now read-only.

Commit

Permalink
lyra2rev2 speedup
Browse files Browse the repository at this point in the history
  • Loading branch information
kenshirothefist committed Jun 7, 2016
1 parent 995b96c commit 8fd0d35
Show file tree
Hide file tree
Showing 17 changed files with 2,852 additions and 2,551 deletions.
930 changes: 464 additions & 466 deletions Algo256/cuda_cubehash256.cu

Large diffs are not rendered by default.

Empty file modified autogen.sh
100755 → 100644
Empty file.
Empty file modified build.sh
100755 → 100644
Empty file.
8 changes: 7 additions & 1 deletion ccminer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ static const char *algo_names[] = {
};

bool opt_broken_neo_wallet = false; // HACK: Drop this flag once neoscrypt wallets are fixed to send 80byte data
bool opt_eco_mode = false;
bool opt_debug = false;
bool opt_protocol = false;
bool opt_benchmark = false;
Expand Down Expand Up @@ -357,6 +358,7 @@ Options:\n\
-h, --help display this help text and exit\n\
-X, --XIntensity intensity GPU intensity(default: auto) \n\
--broken-neo-wallet Use 84byte data for broken neoscrypt wallets.\n\
--eco Use Eco mode.\n\
";

char const short_options[] = "SX:a:c:i:Dhp:Px:qr:R:s:t:T:o:u:O:Vd:f:mv:N:n:b:g:l:L:e:M:C";
Expand Down Expand Up @@ -408,7 +410,8 @@ struct option const options[] = {
{ "diff", 1, NULL, 'f' },
{ "X", 1, NULL, 'X'},
{ "cpu-mining", 0, NULL, 'C'},
{ "broken-neo-wallet", 0, NULL, 1030},
{ "broken-neo-wallet", 0, NULL, 1030 },
{ "eco", 0, NULL, 1080 },
{ 0, 0, 0, 0 }
};

Expand Down Expand Up @@ -2552,6 +2555,9 @@ static void parse_arg(int key, char *arg)
case 1030:
opt_broken_neo_wallet = true;
break;
case 1080:
opt_eco_mode = true;
break;
case 'D':
opt_debug = true;
break;
Expand Down
Binary file added ccminer.sdf
Binary file not shown.
Binary file modified ccminer.v12.suo
Binary file not shown.
1,081 changes: 543 additions & 538 deletions ccminer.vcxproj

Large diffs are not rendered by default.

Loading

0 comments on commit 8fd0d35

Please sign in to comment.