Merge branch 'evo' into feature-self-select

This commit is contained in:
XMRig 2019-10-12 13:08:12 +07:00
commit a62f6f9552
3 changed files with 5 additions and 2 deletions

View file

@ -1,3 +1,6 @@
# v4.3.1-beta
- Fixed regression in v4.3.0, miner didn't create `cn` mining profile with default config example.
# v4.3.0-beta # v4.3.0-beta
- [#1227](https://github.com/xmrig/xmrig/pull/1227) Added new algorithm `rx/arq`, RandomX variant for upcoming ArQmA fork. - [#1227](https://github.com/xmrig/xmrig/pull/1227) Added new algorithm `rx/arq`, RandomX variant for upcoming ArQmA fork.
- [#808](https://github.com/xmrig/xmrig/issues/808#issuecomment-539297156) Added experimental support for persistent memory for CPU mining threads. - [#808](https://github.com/xmrig/xmrig/issues/808#issuecomment-539297156) Added experimental support for persistent memory for CPU mining threads.

View file

@ -53,7 +53,7 @@ size_t inline generate<Algorithm::CN>(Threads<CpuThreads> &threads, uint32_t lim
{ {
size_t count = 0; size_t count = 0;
count += generate("cn", threads, Algorithm::CN_0, limit); count += generate("cn", threads, Algorithm::CN_1, limit);
if (!threads.isExist(Algorithm::CN_0)) { if (!threads.isExist(Algorithm::CN_0)) {
threads.disable(Algorithm::CN_0); threads.disable(Algorithm::CN_0);

View file

@ -55,7 +55,7 @@ size_t inline generate<Algorithm::CN>(Threads<OclThreads> &threads, const std::v
{ {
size_t count = 0; size_t count = 0;
count += generate("cn", threads, Algorithm::CN_0, devices); count += generate("cn", threads, Algorithm::CN_1, devices);
count += generate("cn/2", threads, Algorithm::CN_2, devices); count += generate("cn/2", threads, Algorithm::CN_2, devices);
if (!threads.isExist(Algorithm::CN_0)) { if (!threads.isExist(Algorithm::CN_0)) {