Name for reference RandomX configuration changed to rx/text to avoid potential conflicts in future.
This commit is contained in:
parent
4583d979db
commit
5cb3ef9068
4 changed files with 12 additions and 1 deletions
|
@ -6,6 +6,7 @@
|
||||||
- [#1106](https://github.com/xmrig/xmrig/issues/1106) Fixed `hugepages` field in summary API.
|
- [#1106](https://github.com/xmrig/xmrig/issues/1106) Fixed `hugepages` field in summary API.
|
||||||
- Added alternative short format for CPU threads.
|
- Added alternative short format for CPU threads.
|
||||||
- Changed format for CPU threads with intensity above 1.
|
- Changed format for CPU threads with intensity above 1.
|
||||||
|
- Name for reference RandomX configuration changed to `rx/text` to avoid potential conflicts in future.
|
||||||
|
|
||||||
# v2.99.4-beta
|
# v2.99.4-beta
|
||||||
- [#1062](https://github.com/xmrig/xmrig/issues/1062) Fixed 32 bit support. **32 bit is slow and deprecated**.
|
- [#1062](https://github.com/xmrig/xmrig/issues/1062) Fixed 32 bit support. **32 bit is slow and deprecated**.
|
||||||
|
|
|
@ -44,6 +44,7 @@ Since version 3 mining [algorithm](#algorithm-names) should specified for each p
|
||||||
| `cn-heavy/xhv` | 4 MB | CryptoNight-Heavy (modified, TUBE only). |
|
| `cn-heavy/xhv` | 4 MB | CryptoNight-Heavy (modified, TUBE only). |
|
||||||
| `cn-heavy/tube` | 4 MB | CryptoNight-Heavy (modified, Haven Protocol only). |
|
| `cn-heavy/tube` | 4 MB | CryptoNight-Heavy (modified, Haven Protocol only). |
|
||||||
| `cn-pico` | 256 KB | TurtleCoin (TRTL) |
|
| `cn-pico` | 256 KB | TurtleCoin (TRTL) |
|
||||||
|
| `rx/test` | 2 MB | RandomX (reference configuration). |
|
||||||
| `rx/0` | 2 MB | RandomX (reference configuration), reserved for future use. |
|
| `rx/0` | 2 MB | RandomX (reference configuration), reserved for future use. |
|
||||||
| `rx/wow` | 1 MB | RandomWOW (Wownero). |
|
| `rx/wow` | 1 MB | RandomWOW (Wownero). |
|
||||||
| `rx/loki` | 2 MB | RandomXL (Loki). |
|
| `rx/loki` | 2 MB | RandomXL (Loki). |
|
||||||
|
|
|
@ -174,6 +174,13 @@ void xmrig::Job::copy(const Job &other)
|
||||||
m_target = other.m_target;
|
m_target = other.m_target;
|
||||||
m_index = other.m_index;
|
m_index = other.m_index;
|
||||||
|
|
||||||
memcpy(m_blob, other.m_blob, sizeof (m_blob));
|
memcpy(m_blob, other.m_blob, sizeof(m_blob));
|
||||||
memcpy(m_seedHash, other.m_seedHash, sizeof(m_seedHash));
|
memcpy(m_seedHash, other.m_seedHash, sizeof(m_seedHash));
|
||||||
|
|
||||||
|
# ifdef XMRIG_PROXY_PROJECT
|
||||||
|
m_rawSeedHash = other.m_rawSeedHash;
|
||||||
|
|
||||||
|
memcpy(m_rawBlob, other.m_rawBlob, sizeof(m_rawBlob));
|
||||||
|
memcpy(m_rawTarget, other.m_rawTarget, sizeof(m_rawTarget));
|
||||||
|
# endif
|
||||||
}
|
}
|
||||||
|
|
|
@ -107,6 +107,8 @@ static AlgoName const algorithm_names[] = {
|
||||||
{ "cryptonight_turtle", "cn_turtle", Algorithm::CN_PICO_0 },
|
{ "cryptonight_turtle", "cn_turtle", Algorithm::CN_PICO_0 },
|
||||||
# endif
|
# endif
|
||||||
# ifdef XMRIG_ALGO_RANDOMX
|
# ifdef XMRIG_ALGO_RANDOMX
|
||||||
|
{ "randomx/test", "rx/test", Algorithm::RX_0 },
|
||||||
|
{ "randomx/0", "rx/0", Algorithm::RX_0 },
|
||||||
{ "randomx/0", "rx/0", Algorithm::RX_0 },
|
{ "randomx/0", "rx/0", Algorithm::RX_0 },
|
||||||
{ "RandomX", "rx", Algorithm::RX_0 },
|
{ "RandomX", "rx", Algorithm::RX_0 },
|
||||||
{ "randomx/wow", "rx/wow", Algorithm::RX_WOW },
|
{ "randomx/wow", "rx/wow", Algorithm::RX_WOW },
|
||||||
|
|
Loading…
Reference in a new issue