Home
last modified time | relevance | path

Searched defs:L1Dist (Results 1 – 1 of 1) sorted by relevance

/external/opencv3/modules/core/include/opencv2/core/cuda/
Dvec_distance.hpp58 template <typename T> struct L1Dist struct
60 typedef int value_type;
61 typedef int result_type;
63 __device__ __forceinline__ L1Dist() : mySum(0) {} in L1Dist() argument
65 __device__ __forceinline__ void reduceIter(int val1, int val2) in reduceIter()
70 template <int THREAD_DIM> __device__ __forceinline__ void reduceAll(int* smem, int tid) in reduceAll()
75 __device__ __forceinline__ operator int() const in operator int()
80 int mySum;
82 template <> struct L1Dist<float> struct
84 typedef float value_type;
[all …]