Home
last modified time | relevance | path

Searched refs:first_y (Results 1 – 2 of 2) sorted by relevance

/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorConvolution.h633 const int first_y = blockIdx.y * maxY;
634 const int last_y = (first_y + maxY < numY ? first_y + maxY : numY) - 1;
635 const int num_y_input = last_y - first_y + GetKernelSize<StaticKernelSizeY>()(kernelSizeY);
636 const int num_y_output = last_y - first_y + 1;
652 …dex = plane_input_offset + indexMapper.mapCudaInputKernelToTensorInputOffset(i+first_x, j+first_y);
676 … = plane_output_offset + indexMapper.mapCudaOutputKernelToTensorOutputOffset(i+first_x, j+first_y);
701 const int first_y = blockIdx.y * maxY;
702 const int last_y = (first_y + maxY < numY ? first_y + maxY : numY) - 1;
703 const int num_y_input = last_y - first_y + kernelSizeY;
717 …_input_offset + indexMapper.mapCudaInputKernelToTensorInputOffset(i+first_x, j+first_y, k+first_z);
[all …]
/external/fio/
Dgraph.c951 int first_y = g->yoffset; in graph_contains_xy() local
954 return (x >= first_x && x <= last_x) && (y >= first_y && y <= last_y); in graph_contains_xy()