Skip to content

Commit

Permalink
Merge pull request #2232 from fireice-uk/dev
Browse files Browse the repository at this point in the history
release 2.8.2
  • Loading branch information
fireice-uk committed Feb 11, 2019
2 parents aacab3d + 853ade2 commit 36f2e5c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions xmrstak/backend/amd/amd_gpu/opencl/cryptonight_gpu.cl
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ __kernel void JOIN(cn1_cn_gpu,ALGO)(__global int *lpad_in, __global int *spad, u
{
mem_fence(CLK_LOCAL_MEM_FENCE);
int tmp = ((__global int*)scratchpad_ptr(s, tidd, lpad))[tidm];
((__local int*)smem)[tid] = tmp;
((__local int*)(smem->out))[tid] = tmp;
mem_fence(CLK_LOCAL_MEM_FENCE);

{
Expand Down Expand Up @@ -278,7 +278,7 @@ __kernel void JOIN(cn1_cn_gpu,ALGO)(__global int *lpad_in, __global int *spad, u
mem_fence(CLK_LOCAL_MEM_FENCE);

vs = smem->va[0];
s = smem->out->x ^ smem->out->y ^ smem->out->z ^ smem->out->w;
s = smem->out[0].x ^ smem->out[0].y ^ smem->out[0].z ^ smem->out[0].w;
}
}

Expand Down
2 changes: 1 addition & 1 deletion xmrstak/version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#endif

#define XMR_STAK_NAME "xmr-stak"
#define XMR_STAK_VERSION "2.8.1"
#define XMR_STAK_VERSION "2.8.2"

#if defined(_WIN32)
#define OS_TYPE "win"
Expand Down

0 comments on commit 36f2e5c

Please sign in to comment.