/external/tensorflow/tensorflow/core/kernels/ |
D | eigen_backward_spatial_convolutions_test.cc | 35 const int patch_rows = 2; in TEST() local 37 const int output_rows = input_rows - patch_rows + 1; in TEST() 41 Tensor<float, 4> kernel(output_depth, input_depth, patch_rows, patch_cols); in TEST() 60 for (int r = 0; r < patch_rows; ++r) { in TEST() 84 const int patch_rows = 2; in TEST() local 86 const int output_rows = input_rows - patch_rows + 1; in TEST() 91 Tensor<float, 4, RowMajor> kernel(patch_cols, patch_rows, input_depth, in TEST() 112 for (int r = 0; r < patch_rows; ++r) { in TEST() 136 const int patch_rows = 4; in TEST() local 142 Tensor<float, 4> kernel(output_depth, input_depth, patch_rows, patch_cols); in TEST() [all …]
|
D | eigen_backward_cuboid_convolutions_test.cc | 35 const int patch_rows = 2; in TEST() local 38 const int output_rows = input_rows - patch_rows + 1; in TEST() 45 Tensor<float, 5> kernel(output_depth, input_depth, patch_planes, patch_rows, in TEST() 68 for (int r = 0; r < patch_rows; ++r) { in TEST() 98 const int patch_rows = 2; in TEST() local 101 const int output_rows = input_rows - patch_rows + 1; in TEST() 108 Tensor<float, 5, RowMajor> kernel(patch_cols, patch_rows, patch_planes, in TEST() 131 for (int r = 0; r < patch_rows; ++r) { in TEST() 161 const int patch_rows = 3; in TEST() local 171 Tensor<float, 5> kernel(output_depth, input_depth, patch_planes, patch_rows, in TEST() [all …]
|
D | eigen_pooling_test.cc | 32 const int patch_rows = 4; in TEST() local 45 result = SpatialMaxPooling(input, patch_rows, patch_cols, stride, stride, in TEST() 58 for (int r = 0; r < patch_rows; ++r) { in TEST() 80 const int patch_rows = 4; in TEST() local 94 result = SpatialMaxPooling(input, patch_rows, patch_cols, stride, stride, in TEST() 107 for (int r = 0; r < patch_rows; ++r) { in TEST() 130 const int patch_rows = 4; in TEST() local 147 result = CuboidMaxPooling(input, patch_planes, patch_rows, patch_cols, stride, in TEST() 163 for (int r = 0; r < patch_rows; ++r) { in TEST() 190 const int patch_rows = 4; in TEST() local [all …]
|
D | eigen_spatial_convolutions_test.cc | 34 const int patch_rows = 3; in TEST() local 40 Tensor<float, 4> kernel(output_depth, input_depth, patch_rows, patch_cols); in TEST() 58 for (int r = 0; r < patch_rows; ++r) { in TEST() 79 const int patch_rows = 3; in TEST() local 85 Tensor<float, 4, RowMajor> kernel(patch_cols, patch_rows, input_depth, in TEST() 103 for (int r = 0; r < patch_rows; ++r) { in TEST() 199 const int patch_rows = 4; in TEST() local 201 const int output_rows = input_rows - patch_rows + 1; in TEST() 205 Tensor<float, 4> kernel(output_depth, input_depth, patch_rows, patch_cols); in TEST() 227 for (int r = 0; r < patch_rows; ++r) { in TEST() [all …]
|
D | eigen_volume_patch.h | 94 op.patch_rows() + (op.patch_rows() - 1) * (m_in_row_strides - 1); in CustomTensorEvaluator() 168 m_dimensions[2] = op.patch_rows(); in CustomTensorEvaluator() 184 m_dimensions[NumDims - 3] = op.patch_rows(); in CustomTensorEvaluator()
|
D | conv_ops.cc | 670 const int64 patch_rows = filter.dim_size(0); in operator ()() local 678 if (patch_rows == 1 && patch_cols == 1 && !is_grouped_convolution && in operator ()() 705 } else if (patch_rows == in_rows && patch_cols == in_cols && in operator ()() 712 const uint64 k = patch_rows * patch_cols * patch_depths; in operator ()() 772 in_rows, patch_rows, row_dilation, row_stride, padding, &out_rows_check, in operator ()() 892 filter_desc.set_input_filter_height(patch_rows) in operator ()() 973 {{patch_rows, // filter_rows in operator ()()
|
D | conv_ops_fused_impl.h | 465 const int64 patch_rows = filter.dim_size(0); 579 filter_desc.set_input_filter_height(patch_rows) 652 {{patch_rows, // filter_rows
|
D | eigen_spatial_convolutions-inl.h | 107 Index patch_rows; in TensorContractionInputMapper() local 111 patch_rows = tensor.impl().dimensions()[1]; in TensorContractionInputMapper() 117 patch_rows = tensor.impl().dimensions()[NumDims - 2]; in TensorContractionInputMapper() 124 m_patch_col_stride = patch_rows * m_patch_row_stride; in TensorContractionInputMapper() 129 m_colStride = patch_rows; in TensorContractionInputMapper()
|
/external/tensorflow/tensorflow/core/kernels/image/ |
D | extract_image_patches_op.h | 29 int patch_rows, int patch_cols, int stride_rows, in operator() 40 .extract_image_patches(patch_cols, patch_rows, stride_cols, in operator() 46 .extract_image_patches(patch_cols, patch_rows, stride_cols, in operator()
|
D | extract_volume_patches_op.h | 30 int patch_planes, int patch_rows, int patch_cols, in operator() 40 .extract_volume_patches(patch_cols, patch_rows, patch_planes, in operator() 47 .extract_volume_patches(patch_cols, patch_rows, patch_planes, in operator()
|
D | extract_volume_patches_op.cc | 174 int patch_planes, int patch_rows, int patch_cols, \
|
D | extract_image_patches_op.cc | 146 int patch_rows, int patch_cols, int stride_rows, int stride_cols, \
|
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | TensorImagePatch.h | 68 …EIGEN_STRONG_INLINE TensorImagePatchOp(const XprType& expr, DenseIndex patch_rows, DenseIndex patc… 73 : m_xpr(expr), m_patch_rows(patch_rows), m_patch_cols(patch_cols), 80 …EIGEN_STRONG_INLINE TensorImagePatchOp(const XprType& expr, DenseIndex patch_rows, DenseIndex patc… 87 : m_xpr(expr), m_patch_rows(patch_rows), m_patch_cols(patch_cols), 96 DenseIndex patch_rows() const { return m_patch_rows; } 217 m_patch_rows_eff = op.patch_rows() + (op.patch_rows() - 1) * (m_in_row_strides - 1); 258 m_dimensions[1] = op.patch_rows(); 272 m_dimensions[NumDims-2] = op.patch_rows();
|
D | TensorVolumePatch.h | 63 …VolumePatchOp(const XprType& expr, DenseIndex patch_planes, DenseIndex patch_rows, DenseIndex patc… 68 … : m_xpr(expr), m_patch_planes(patch_planes), m_patch_rows(patch_rows), m_patch_cols(patch_cols), 75 …VolumePatchOp(const XprType& expr, DenseIndex patch_planes, DenseIndex patch_rows, DenseIndex patc… 83 … : m_xpr(expr), m_patch_planes(patch_planes), m_patch_rows(patch_rows), m_patch_cols(patch_cols), 94 DenseIndex patch_rows() const { return m_patch_rows; } 226 m_patch_rows_eff = op.patch_rows() + (op.patch_rows() - 1) * (m_in_row_strides - 1); 278 m_dimensions[2] = op.patch_rows(); 294 m_dimensions[NumDims-3] = op.patch_rows();
|
D | TensorBase.h | 688 extract_image_patches(const Index patch_rows = 1, const Index patch_cols = 1, 692 …return TensorImagePatchOp<Dynamic, Dynamic, const Derived>(derived(), patch_rows, patch_cols, row_… 698 extract_image_patches(const Index patch_rows, const Index patch_cols, in extract_image_patches() argument 705 …return TensorImagePatchOp<Dynamic, Dynamic, const Derived>(derived(), patch_rows, patch_cols, row_… in extract_image_patches() 712 extract_volume_patches(const Index patch_planes, const Index patch_rows, const Index patch_cols, 715 …hOp<Dynamic, Dynamic, Dynamic, const Derived>(derived(), patch_planes, patch_rows, patch_cols, pla… 721 extract_volume_patches(const Index patch_planes, const Index patch_rows, const Index patch_cols, 727 …hOp<Dynamic, Dynamic, Dynamic, const Derived>(derived(), patch_planes, patch_rows, patch_cols, pla…
|
D | README.md | 1647 ### <Operation> extract_image_patches(const Index patch_rows, const Index patch_cols,
|