Home
last modified time | relevance | path

Searched refs:srcLane (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/cudev/include/opencv2/cudev/warp/
Dshuffle.hpp61 __device__ __forceinline__ uchar shfl(uchar val, int srcLane, int width = warpSize) in shfl() argument
63 return (uchar) __shfl((int) val, srcLane, width); in shfl()
66 __device__ __forceinline__ schar shfl(schar val, int srcLane, int width = warpSize) in shfl() argument
68 return (schar) __shfl((int) val, srcLane, width); in shfl()
71 __device__ __forceinline__ ushort shfl(ushort val, int srcLane, int width = warpSize) in shfl() argument
73 return (ushort) __shfl((int) val, srcLane, width); in shfl()
76 __device__ __forceinline__ short shfl(short val, int srcLane, int width = warpSize) in shfl() argument
78 return (short) __shfl((int) val, srcLane, width); in shfl()
81 __device__ __forceinline__ int shfl(int val, int srcLane, int width = warpSize) in shfl() argument
83 return __shfl(val, srcLane, width); in shfl()
[all …]
/external/opencv3/modules/core/include/opencv2/core/cuda/
Dwarp_shuffle.hpp55 __device__ __forceinline__ T shfl(T val, int srcLane, int width = warpSize) in shfl() argument
58 return __shfl(val, srcLane, width); in shfl()
63 … __device__ __forceinline__ unsigned int shfl(unsigned int val, int srcLane, int width = warpSize) in shfl() argument
66 return (unsigned int) __shfl((int) val, srcLane, width); in shfl()
71 __device__ __forceinline__ double shfl(double val, int srcLane, int width = warpSize) in shfl() argument
77 lo = __shfl(lo, srcLane, width); in shfl()
78 hi = __shfl(hi, srcLane, width); in shfl()