Searched defs:patch_rows (Results 1 - 3 of 3) sorted by relevance

/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorBase.h688 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_stride, col_stride,
698 extract_image_patches(const Index patch_rows, const Index patch_cols, argument
705 return TensorImagePatchOp<Dynamic, Dynamic, const Derived>(derived(), patch_rows, patch_cols, row_stride, col_stride,
712 extract_volume_patches(const Index patch_planes, const Index patch_rows, const Index patch_cols, argument
715 return TensorVolumePatchOp<Dynamic, Dynamic, Dynamic, const Derived>(derived(), patch_planes, patch_rows, patch_cols, plane_stride, row_stride, col_stride, 1, 1, 1, 1, 1, 1, padding_type, padding_value);
721 extract_volume_patches(const Index patch_planes, const Index patch_rows, const Index patch_cols, argument
727 return TensorVolumePatchOp<Dynamic, Dynamic, Dynamic, const Derived>(derived(), patch_planes, patch_rows, patch_cols, plane_stride, row_stride, col_stride, 1, 1, 1, plane_inflate_stride, row_inflate_stride, col_inflate_stride, padding_top_z, padding_bottom_z, padding_top, padding_bottom, padding_left, padding_right, padding_value);
H A DTensorImagePatch.h25 * Calling the image patch code with patch_rows and patch_cols is equivalent
26 * to calling the regular patch extraction code with parameters d, patch_rows,
68 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorImagePatchOp(const XprType& expr, DenseIndex patch_rows, DenseIndex patch_cols, argument
73 : m_xpr(expr), m_patch_rows(patch_rows), m_patch_cols(patch_cols),
80 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorImagePatchOp(const XprType& expr, DenseIndex patch_rows, DenseIndex patch_cols, argument
87 : m_xpr(expr), m_patch_rows(patch_rows), m_patch_cols(patch_cols),
96 DenseIndex patch_rows() const { return m_patch_rows; } function in class:Eigen::TensorImagePatchOp
217 m_patch_rows_eff = op.patch_rows() + (op.patch_rows() - 1) * (m_in_row_strides - 1);
253 // 1: patch_rows
[all...]
H A DTensorVolumePatch.h19 * Calling the volume patch code with patch_planes, patch_rows, and patch_cols
21 * d, patch_planes, patch_rows, patch_cols, and 1 for all the additional
63 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorVolumePatchOp(const XprType& expr, DenseIndex patch_planes, DenseIndex patch_rows, DenseIndex patch_cols, argument
68 : m_xpr(expr), m_patch_planes(patch_planes), m_patch_rows(patch_rows), m_patch_cols(patch_cols),
75 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorVolumePatchOp(const XprType& expr, DenseIndex patch_planes, DenseIndex patch_rows, DenseIndex patch_cols, argument
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; } function in class:Eigen::TensorVolumePatchOp
226 m_patch_rows_eff = op.patch_rows() + (op.patch_rows() - 1) * (m_in_row_strides - 1);
272 // 2: patch_rows
[all...]

Completed in 131 milliseconds