Searched refs:patch_cols (Results 1 – 4 of 4) sorted by relevance
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | TensorImagePatch.h | 68 …STRONG_INLINE TensorImagePatchOp(const XprType& expr, DenseIndex patch_rows, DenseIndex patch_cols, 73 : m_xpr(expr), m_patch_rows(patch_rows), m_patch_cols(patch_cols), 80 …STRONG_INLINE TensorImagePatchOp(const XprType& expr, DenseIndex patch_rows, DenseIndex patch_cols, 87 : m_xpr(expr), m_patch_rows(patch_rows), m_patch_cols(patch_cols), 98 DenseIndex patch_cols() const { return m_patch_cols; } 218 m_patch_cols_eff = op.patch_cols() + (op.patch_cols() - 1) * (m_in_col_strides - 1); 259 m_dimensions[2] = op.patch_cols(); 273 m_dimensions[NumDims-3] = op.patch_cols();
|
D | TensorVolumePatch.h | 63 …PatchOp(const XprType& expr, DenseIndex patch_planes, DenseIndex patch_rows, DenseIndex patch_cols, 68 … : m_xpr(expr), m_patch_planes(patch_planes), m_patch_rows(patch_rows), m_patch_cols(patch_cols), 75 …PatchOp(const XprType& expr, DenseIndex patch_planes, DenseIndex patch_rows, DenseIndex patch_cols, 83 … : m_xpr(expr), m_patch_planes(patch_planes), m_patch_rows(patch_rows), m_patch_cols(patch_cols), 96 DenseIndex patch_cols() const { return m_patch_cols; } 227 m_patch_cols_eff = op.patch_cols() + (op.patch_cols() - 1) * (m_in_col_strides - 1); 279 m_dimensions[3] = op.patch_cols(); 295 m_dimensions[NumDims-4] = op.patch_cols();
|
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 … Dynamic, Dynamic, const Derived>(derived(), patch_planes, patch_rows, patch_cols, plane_stride, r… 721 extract_volume_patches(const Index patch_planes, const Index patch_rows, const Index patch_cols, 727 … Dynamic, Dynamic, const Derived>(derived(), patch_planes, patch_rows, patch_cols, plane_stride, r…
|
D | README.md | 1647 ### <Operation> extract_image_patches(const Index patch_rows, const Index patch_cols,
|