Home
last modified time | relevance | path

Searched refs:TILE_ROWS (Results 1 – 3 of 3) sorted by relevance

/external/opencv3/modules/cudalegacy/src/cuda/
Dbm_fast.cu60 TILE_ROWS = 32, enumerator
215 int tby = blockIdx.y * TILE_ROWS; in operator ()()
218 int tey = ::min(tby + TILE_ROWS, I0.rows); in operator ()()
269 dim3 grid(divUp(src_cols, TILE_COLS), divUp(src_rows, TILE_ROWS)); in get_buffer_size()
281 dim3 grid(divUp(I0.cols, TILE_COLS), divUp(I0.rows, TILE_ROWS)); in calc()
Dccomponetns.cu72 TILE_ROWS = CTA_SIZE_Y * TPB_Y enumerator
235 int y = threadIdx.y + blockIdx.y * TILE_ROWS; in lableTiles()
242 __shared__ int labelsTile[TILE_ROWS][TILE_COLS]; in lableTiles()
243 __shared__ int edgesTile[TILE_ROWS][TILE_COLS]; in lableTiles()
261 if (yloc == TILE_ROWS -1) c &= ~DOWN; in lableTiles()
358 yloc += blockIdx.y * TILE_ROWS; in lableTiles()
503 dim3 grid(divUp(edges.cols, TILE_COLS), divUp(edges.rows, TILE_ROWS)); in labelComponents()
508 int tileSizeX = TILE_COLS, tileSizeY = TILE_ROWS; in labelComponents()
/external/opencv3/modules/photo/src/cuda/
Dnlm.cu274 TILE_ROWS = 32, enumerator
433 int tby = blockIdx.y * TILE_ROWS; in operator ()()
436 int tey = ::min(tby + TILE_ROWS, dst.rows); in operator ()()
484 dim3 grid(divUp(src.cols, FNLM::TILE_COLS), divUp(src.rows, FNLM::TILE_ROWS)); in nln_fast_get_buffer_size()
501 dim3 grid(divUp(src.cols, FNLM::TILE_COLS), divUp(src.rows, FNLM::TILE_ROWS)); in nlm_fast_gpu()