OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BLOCK_SIZE_X
(Results
1 - 4
of
4
) sorted by null
/external/opencv3/modules/cudev/include/opencv2/cudev/grid/detail/
reduce_to_row.hpp
57
template <class Reductor, int
BLOCK_SIZE_X
, int BLOCK_SIZE_Y, class SrcPtr, typename ResType, class MaskPtr>
62
__shared__ work_type smem[
BLOCK_SIZE_X
* BLOCK_SIZE_Y];
64
const int x = blockIdx.x *
BLOCK_SIZE_X
+ threadIdx.x;
85
volatile work_type* srow = smem + threadIdx.y *
BLOCK_SIZE_X
;
88
blockReduce<
BLOCK_SIZE_X
>(srow, myVal, threadIdx.x, op);
96
dst[x] = saturate_cast<ResType>(Reductor::result(smem[threadIdx.x *
BLOCK_SIZE_X
], rows));
102
const int
BLOCK_SIZE_X
= 16;
105
const dim3 block(
BLOCK_SIZE_X
, BLOCK_SIZE_Y);
108
reduceToRow<Reductor,
BLOCK_SIZE_X
, BLOCK_SIZE_Y><<<grid, block, 0, stream>>>(src, dst, mask, rows, cols);
reduce_to_column.hpp
127
const int
BLOCK_SIZE_X
= Policy::
block_size_x
;
130
const int BLOCK_SIZE =
BLOCK_SIZE_X
* BLOCK_SIZE_Y;
/external/opencv3/modules/calib3d/src/opencl/
stereobm.cl
147
int gx = get_global_id(1) *
BLOCK_SIZE_X
;
234
for (int i = 0; i < BLOCK_SIZE_Y *
BLOCK_SIZE_X
/ 2; i++)
236
x = (lx <
BLOCK_SIZE_X
) ? gx + shiftX + lx : cols;
/external/opencv3/modules/imgproc/src/
smooth.cpp
[
all
...]
Completed in 37 milliseconds