mirror of
https://github.com/xmrig/xmrig.git
synced 2024-11-05 16:07:42 +00:00
Removed excess code for v0 & v1
This commit is contained in:
parent
36a562e1f1
commit
f151c7131d
2 changed files with 17 additions and 7 deletions
|
@ -527,7 +527,9 @@ inline void cryptonight_single_hash(const uint8_t *__restrict__ input, size_t si
|
|||
idx0 = d ^ q;
|
||||
}
|
||||
}
|
||||
bx1 = bx0;
|
||||
if (VARIANT == xmrig::VARIANT_2) {
|
||||
bx1 = bx0;
|
||||
}
|
||||
bx0 = cx;
|
||||
}
|
||||
|
||||
|
@ -699,9 +701,11 @@ inline void cryptonight_double_hash(const uint8_t *__restrict__ input, size_t si
|
|||
idx1 = d ^ q;
|
||||
}
|
||||
}
|
||||
bx01 = bx00;
|
||||
if (VARIANT == xmrig::VARIANT_2) {
|
||||
bx01 = bx00;
|
||||
bx11 = bx10;
|
||||
}
|
||||
bx00 = cx0;
|
||||
bx11 = bx10;
|
||||
bx10 = cx1;
|
||||
}
|
||||
|
||||
|
|
|
@ -553,7 +553,9 @@ inline void cryptonight_single_hash(const uint8_t *__restrict__ input, size_t si
|
|||
idx0 = d ^ q;
|
||||
ptr0 = (uint64_t*)&l0[idx0 & MASK];
|
||||
}
|
||||
bx1 = bx0;
|
||||
if (VARIANT == xmrig::VARIANT_2) {
|
||||
bx1 = bx0;
|
||||
}
|
||||
bx0 = cx;
|
||||
}
|
||||
|
||||
|
@ -731,9 +733,11 @@ inline void cryptonight_double_hash(const uint8_t *__restrict__ input, size_t si
|
|||
ptr1 = (uint64_t*)&l1[idx1 & MASK];
|
||||
}
|
||||
|
||||
bx01 = bx00;
|
||||
if (VARIANT == xmrig::VARIANT_2) {
|
||||
bx01 = bx00;
|
||||
bx11 = bx10;
|
||||
}
|
||||
bx00 = cx0;
|
||||
bx11 = bx10;
|
||||
bx10 = cx1;
|
||||
}
|
||||
|
||||
|
@ -812,7 +816,9 @@ inline void cryptonight_double_hash(const uint8_t *__restrict__ input, size_t si
|
|||
\
|
||||
idx = d ^ q; \
|
||||
} \
|
||||
b1 = b0; \
|
||||
if (VARIANT == xmrig::VARIANT_2) { \
|
||||
b1 = b0; \
|
||||
} \
|
||||
b0 = c;
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue