Home
last modified time | relevance | path

Searched refs:LOG_WARP_SIZE (Results 1 – 4 of 4) sorted by relevance

/external/opencv3/modules/cudev/include/opencv2/cudev/block/
Dscan.hpp71 smem[tid >> LOG_WARP_SIZE] = warpResult; in blockScanInclusive()
88 return warpResult + smem[tid >> LOG_WARP_SIZE]; in blockScanInclusive()
/external/opencv3/modules/cudev/include/opencv2/cudev/warp/
Dwarp.hpp58 LOG_WARP_SIZE = 5, enumerator
59 WARP_SIZE = 1 << LOG_WARP_SIZE
/external/opencv3/modules/core/include/opencv2/core/cuda/
Dwarp.hpp58 LOG_WARP_SIZE = 5, enumerator
59 WARP_SIZE = 1 << LOG_WARP_SIZE,
/external/opencv3/modules/cudalegacy/src/cuda/
Dfgd.cu62 const int LOG_WARP_SIZE = 5; variable
63 const int WARP_SIZE = 1 << LOG_WARP_SIZE;
65 const unsigned int TAG_MASK = (1U << (UINT_BITS - LOG_WARP_SIZE)) - 1U;
113 const unsigned int warpId = threadIdx.x >> LOG_WARP_SIZE; in calcPartialHistogram()
119 const unsigned int tag = threadIdx.x << (UINT_BITS - LOG_WARP_SIZE); in calcPartialHistogram()