Use %% for inline assembly rather than % so this compiles with clang.

Same as 9210cefb36 but for this file too.
This commit is contained in:
nnorwitz 2017-04-06 12:54:56 -07:00 committed by GitHub
parent 9210cefb36
commit 24e8cd1a78

View File

@ -64,7 +64,7 @@ namespace cv { namespace cuda { namespace device
static __device__ __forceinline__ unsigned int laneId()
{
unsigned int ret;
asm("mov.u32 %0, %laneid;" : "=r"(ret) );
asm("mov.u32 %0, %%laneid;" : "=r"(ret) );
return ret;
}