Skip to content
Snippets Groups Projects
Unverified Commit 752fd1e7 authored by fireice-uk's avatar fireice-uk Committed by GitHub
Browse files

Merge pull request #2011 from fireice-uk/dev

bug fix release 2.5.2
parents 4e72408f 07d2de33
No related branches found
No related tags found
No related merge requests found
......@@ -734,7 +734,7 @@ void cryptonight_core_gpu_hash(nvid_ctx* ctx, uint32_t nonce)
{
dim3 grid( ctx->device_blocks );
dim3 block( ctx->device_threads );
dim3 block2( ctx->device_threads << 2 );
dim3 block2( ctx->device_threads << 1 );
dim3 block4( ctx->device_threads << 2 );
dim3 block8( ctx->device_threads << 3 );
......
......@@ -101,7 +101,7 @@ xmrstak::coin_selection coins[] = {
{ "cryptonight_v7", {cryptonight_monero_v8, cryptonight_monero, 255u}, {cryptonight_monero_v8, cryptonight_monero, 8u}, nullptr },
{ "cryptonight_v8", {cryptonight_monero, cryptonight_monero_v8, 255u}, {cryptonight_monero_v8, cryptonight_monero, 8u}, nullptr },
{ "cryptonight_v7_stellite", {cryptonight_monero_v8, cryptonight_stellite, 255u}, {cryptonight_monero_v8, cryptonight_monero_v8, 0u}, nullptr },
{ "graft", {cryptonight_monero_v8, cryptonight_monero, 255u}, {cryptonight_monero_v8, cryptonight_monero, 8u}, nullptr },
{ "graft", {cryptonight_monero_v8, cryptonight_monero, 11u}, {cryptonight_monero_v8, cryptonight_monero, 8u}, nullptr },
{ "haven", {cryptonight_heavy, cryptonight_haven, 255u}, {cryptonight_heavy, cryptonight_heavy, 0u}, nullptr },
{ "intense", {cryptonight_monero_v8, cryptonight_monero, 255u}, {cryptonight_monero_v8, cryptonight_monero, 8u}, nullptr },
{ "masari", {cryptonight_monero_v8, cryptonight_masari, 255u}, {cryptonight_monero_v8, cryptonight_monero_v8, 0u},nullptr },
......
......@@ -18,7 +18,7 @@
#endif
#define XMR_STAK_NAME "xmr-stak"
#define XMR_STAK_VERSION "2.5.1"
#define XMR_STAK_VERSION "2.5.2"
#if defined(_WIN32)
#define OS_TYPE "win"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment