Searched defs:m_col_strides (Results 1 - 2 of 2) sorted by relevance

/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorImagePatch.h74 m_row_strides(row_strides), m_col_strides(col_strides),
88 m_row_strides(row_strides), m_col_strides(col_strides),
102 DenseIndex col_strides() const { return m_col_strides; }
135 const DenseIndex m_col_strides; member in class:Eigen::TensorImagePatchOp
195 m_col_strides = op.col_strides();
222 m_outputCols = numext::ceil((m_input_cols_eff + op.padding_left() + op.padding_right() - m_patch_cols_eff + 1.f) / static_cast<float>(m_col_strides));
230 m_outputCols = numext::ceil((m_input_cols_eff - m_patch_cols_eff + 1.f) / static_cast<float>(m_col_strides));
233 m_colPaddingLeft = numext::maxi<Index>(0, ((m_outputCols - 1) * m_col_strides + m_patch_cols_eff - m_input_cols_eff) / 2);
237 m_outputCols = numext::ceil(m_input_cols_eff / static_cast<float>(m_col_strides));
240 m_colPaddingLeft = ((m_outputCols - 1) * m_col_strides
465 Index m_col_strides; member in struct:Eigen::TensorEvaluator
[all...]
H A DTensorVolumePatch.h69 m_plane_strides(plane_strides), m_row_strides(row_strides), m_col_strides(col_strides),
84 m_plane_strides(plane_strides), m_row_strides(row_strides), m_col_strides(col_strides),
102 DenseIndex col_strides() const { return m_col_strides; }
145 const DenseIndex m_col_strides; member in class:Eigen::TensorVolumePatchOp
211 m_col_strides = op.col_strides();
232 m_outputCols = numext::ceil((m_input_cols_eff + op.padding_left() + op.padding_right() - m_patch_cols_eff + 1.f) / static_cast<float>(m_col_strides));
242 m_outputCols = numext::ceil((m_input_cols_eff - m_patch_cols_eff + 1.f) / static_cast<float>(m_col_strides));
250 m_outputCols = numext::ceil(m_input_cols_eff / static_cast<float>(m_col_strides));
253 const Index dx = m_outputCols * m_col_strides + m_patch_cols_eff - 1 - m_input_cols_eff;
369 const Index inputCol = colIndex * m_col_strides
541 Index m_col_strides; member in struct:Eigen::TensorEvaluator
[all...]

Completed in 59 milliseconds