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

Merge pull request #2232 from fireice-uk/dev

release 2.8.2
parents aacab3de 853ade25
No related branches found
No related tags found
No related merge requests found
......@@ -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);
{
......@@ -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;
}
}
......
......@@ -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"
......
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