OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BLOCK_SIZE_Y
(Results
1 - 5
of
5
) 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
];
72
for (int y = threadIdx.y; y < rows; y +=
BLOCK_SIZE_Y
)
81
smem[threadIdx.x *
BLOCK_SIZE_Y
+ threadIdx.y] = myVal;
103
const int
BLOCK_SIZE_Y
= 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
128
const int
BLOCK_SIZE_Y
= Policy::
block_size_y
;
130
const int BLOCK_SIZE = BLOCK_SIZE_X *
BLOCK_SIZE_Y
;
/external/opencv3/modules/calib3d/src/opencl/
stereobm.cl
80
yp = cost[-2 *
BLOCK_SIZE_Y
];
81
yn = cost[2 *
BLOCK_SIZE_Y
];
148
int gy = get_global_id(2) *
BLOCK_SIZE_Y
;
156
__local short costFunc[2 *
BLOCK_SIZE_Y
* NUM_DISP];
173
int costIdx = disp_idx * 2 *
BLOCK_SIZE_Y
+ (
BLOCK_SIZE_Y
- 1);
234
for (int i = 0; i <
BLOCK_SIZE_Y
* BLOCK_SIZE_X / 2; i++)
237
y = (ly <
BLOCK_SIZE_Y
) ? gy + shiftY + ly : rows;
243
costIdx = mad24(2 *
BLOCK_SIZE_Y
, disp_idx, (
BLOCK_SIZE_Y
- 1 - ly + lx))
[
all
...]
/external/opencv3/modules/imgproc/src/opencl/
boxFilter.cl
176
int y = get_global_id(1) *
BLOCK_SIZE_Y
;
199
for (int i = 0, stepY = min(rows - y,
BLOCK_SIZE_Y
); i < stepY; ++i)
/external/opencv3/modules/imgproc/src/
smooth.cpp
[
all
...]
Completed in 67 milliseconds