Skip to content

Commit

Permalink
Release 8.22
Browse files Browse the repository at this point in the history
  • Loading branch information
KlausT committed Jul 12, 2018
1 parent fc0f792 commit 78b052f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ccMiner release 8.21(KlausT-mod) (March 15th, 2018)
ccMiner release 8.22(KlausT-mod) (Juli 12th, 2018)
---------------------------------------------------------------

***************************************************************
Expand Down Expand Up @@ -258,6 +258,8 @@ features.
Neoscrypt: detect P104-100 and Tesla P100/V100
Linux: fix Lyra2v2 verification bug
fix for intensities between 8 and 9
2018-07-12 v8.22: add --hwmonitor option
some bug fixes

>>> AUTHORS <<<

Expand Down
2 changes: 2 additions & 0 deletions cuda_helper.h
Original file line number Diff line number Diff line change
Expand Up @@ -603,13 +603,15 @@ static __device__ __forceinline__ uint2 operator+ (uint2 a, uint2 b)

static __device__ __forceinline__ uint2 operator+ (uint2 a, uint32_t b)
{
#ifdef __CUDA_ARCH__
uint2 result;
asm("{\n\t"
"add.cc.u32 %0,%2,%4; \n\t"
"addc.u32 %1,%3,%5; \n\t"
"}\n\t"
: "=r"(result.x), "=r"(result.y) : "r"(a.x), "r"(a.y), "r"(b), "r"(0));
return result;
#endif
}
static __device__ __forceinline__ uint2 operator- (uint2 a, uint2 b)
{
Expand Down

0 comments on commit 78b052f

Please sign in to comment.