1
0
mirror of https://github.com/GOSTSec/ccminer synced 2025-01-10 14:57:53 +00:00

lyra2v2: aliases and readme

This commit is contained in:
Tanguy Pruvot 2015-08-18 09:25:28 +02:00
parent c9a66b696f
commit 4b04ca8027
2 changed files with 6 additions and 1 deletions

View File

@ -224,7 +224,8 @@ features.
>>> RELEASE HISTORY <<<
August 2015...
Restore WhirlpoolX algo
Add Lyra2REv2 algo (Vertcoin/Zoom)
Restore WhirlpoolX algo (VNL)
July 06th 2015 v1.6.5-C11
Nvml api power limits

View File

@ -2464,6 +2464,10 @@ void parse_arg(int key, char *arg)
i = opt_algo = ALGO_DMD_GR;
else if (!strcasecmp("doom", arg))
i = opt_algo = ALGO_LUFFA;
else if (!strcasecmp("lyra2re", arg))
i = opt_algo = ALGO_LYRA2;
else if (!strcasecmp("lyra2rev2", arg))
i = opt_algo = ALGO_LYRA2v2;
else if (!strcasecmp("ziftr", arg))
i = opt_algo = ALGO_ZR5;
else