Searched defs:warpSize (Results 1 - 7 of 7) sorted by relevance

/external/clang/lib/Headers/
H A Dcuda_builtin_vars.h101 // warpSize should translate to read of %WARP_SZ but there's currently no
104 __attribute__((device)) const int warpSize = 32; variable
/external/opencv3/modules/core/include/opencv2/core/cuda/
H A Dwarp_shuffle.hpp55 __device__ __forceinline__ T shfl(T val, int srcLane, int width = warpSize) argument
63 __device__ __forceinline__ unsigned int shfl(unsigned int val, int srcLane, int width = warpSize) argument
71 __device__ __forceinline__ double shfl(double val, int srcLane, int width = warpSize) argument
87 __device__ __forceinline__ T shfl_down(T val, unsigned int delta, int width = warpSize) argument
95 __device__ __forceinline__ unsigned int shfl_down(unsigned int val, unsigned int delta, int width = warpSize) argument
103 __device__ __forceinline__ double shfl_down(double val, unsigned int delta, int width = warpSize) argument
119 __device__ __forceinline__ T shfl_up(T val, unsigned int delta, int width = warpSize) argument
127 __device__ __forceinline__ unsigned int shfl_up(unsigned int val, unsigned int delta, int width = warpSize) argument
135 __device__ __forceinline__ double shfl_up(double val, unsigned int delta, int width = warpSize) argument
/external/v8/third_party/llvm-build/Release+Asserts/lib/clang/3.9.0/include/
H A Dcuda_builtin_vars.h117 // warpSize should translate to read of %WARP_SZ but there's currently no
120 __attribute__((device)) const int warpSize = 32; variable
/external/opencv3/modules/cudev/include/opencv2/cudev/warp/
H A Dshuffle.hpp61 __device__ __forceinline__ uchar shfl(uchar val, int srcLane, int width = warpSize) argument
66 __device__ __forceinline__ schar shfl(schar val, int srcLane, int width = warpSize) argument
71 __device__ __forceinline__ ushort shfl(ushort val, int srcLane, int width = warpSize) argument
76 __device__ __forceinline__ short shfl(short val, int srcLane, int width = warpSize) argument
81 __device__ __forceinline__ int shfl(int val, int srcLane, int width = warpSize) argument
86 __device__ __forceinline__ uint shfl(uint val, int srcLane, int width = warpSize) argument
91 __device__ __forceinline__ float shfl(float val, int srcLane, int width = warpSize) argument
96 __device__ double shfl(double val, int srcLane, int width = warpSize) argument
108 __device__ __forceinline__ input_type ## 1 shfl(const input_type ## 1 & val, int srcLane, int width = warpSize) \
114 __device__ __forceinline__ input_type ## 2 shfl(const input_type ## 2 & val, int srcLane, int width = warpSize) \
152 shfl_up(uchar val, uint delta, int width = warpSize) argument
157 shfl_up(schar val, uint delta, int width = warpSize) argument
162 shfl_up(ushort val, uint delta, int width = warpSize) argument
167 shfl_up(short val, uint delta, int width = warpSize) argument
172 shfl_up(int val, uint delta, int width = warpSize) argument
177 shfl_up(uint val, uint delta, int width = warpSize) argument
182 shfl_up(float val, uint delta, int width = warpSize) argument
187 shfl_up(double val, uint delta, int width = warpSize) argument
243 shfl_down(uchar val, uint delta, int width = warpSize) argument
248 shfl_down(schar val, uint delta, int width = warpSize) argument
253 shfl_down(ushort val, uint delta, int width = warpSize) argument
258 shfl_down(short val, uint delta, int width = warpSize) argument
263 shfl_down(int val, uint delta, int width = warpSize) argument
268 shfl_down(uint val, uint delta, int width = warpSize) argument
273 shfl_down(float val, uint delta, int width = warpSize) argument
278 shfl_down(double val, uint delta, int width = warpSize) argument
334 shfl_xor(uchar val, int laneMask, int width = warpSize) argument
339 shfl_xor(schar val, int laneMask, int width = warpSize) argument
344 shfl_xor(ushort val, int laneMask, int width = warpSize) argument
349 shfl_xor(short val, int laneMask, int width = warpSize) argument
354 shfl_xor(int val, int laneMask, int width = warpSize) argument
359 shfl_xor(uint val, int laneMask, int width = warpSize) argument
364 shfl_xor(float val, int laneMask, int width = warpSize) argument
369 shfl_xor(double val, int laneMask, int width = warpSize) argument
[all...]
/external/opencv3/modules/core/src/
H A Dcuda_info.cpp388 int cv::cuda::DeviceInfo::warpSize() const function in class:cv::cuda::DeviceInfo
394 return deviceProps().get(device_id_)->warpSize;
1008 printf(" Warp size: %d\n", prop.warpSize);
/external/opencv/cvaux/include/
H A Dcvaux.h532 CvSize warpSize; member in struct:CvStereoCamera
693 CvSize* warpSize,
/external/opencv/cvaux/src/
H A Dcvepilines.cpp326 stereoCamera->warpSize.height,
1302 CvSize* warpSize,
1656 warpSize->width = (int)warpWidth;
1657 warpSize->height = (int)warpHeight;
1659 warpSize->width = cvRound(warpWidth-1);
1660 warpSize->height = cvRound(warpHeight-1);
1663 warpSize->width = imageSize.width;
1664 warpSize->height = imageSize.height;
1677 CvSize* warpSize,
1725 warpSize,
1294 icvGetQuadsTransform( CvSize imageSize, CvMatr64d camMatr1, CvMatr64d rotMatr1, CvVect64d transVect1, CvMatr64d camMatr2, CvMatr64d rotMatr2, CvVect64d transVect2, CvSize* warpSize, double quad1[4][2], double quad2[4][2], CvMatr64d fundMatr, CvPoint3D64d* epipole1, CvPoint3D64d* epipole2 ) argument
1672 icvGetQuadsTransformNew( CvSize imageSize, CvMatr32f camMatr1, CvMatr32f camMatr2, CvMatr32f rotMatr1, CvVect32f transVect1, CvSize* warpSize, double quad1[4][2], double quad2[4][2], CvMatr32f fundMatr, CvPoint3D32f* epipole1, CvPoint3D32f* epipole2 ) argument
[all...]

Completed in 190 milliseconds