HomeSort by relevance Sort by last modified time
    Searched refs:m_outputRows (Results 1 - 4 of 4) sorted by null

  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorImagePatch.h 221 m_outputRows = numext::ceil((m_input_rows_eff + op.padding_top() + op.padding_bottom() - m_patch_rows_eff + 1.f) / static_cast<float>(m_row_strides));
229 m_outputRows = numext::ceil((m_input_rows_eff - m_patch_rows_eff + 1.f) / static_cast<float>(m_row_strides));
232 m_rowPaddingTop = numext::maxi<Index>(0, ((m_outputRows - 1) * m_row_strides + m_patch_rows_eff - m_input_rows_eff) / 2);
236 m_outputRows = numext::ceil(m_input_rows_eff / static_cast<float>(m_row_strides));
239 m_rowPaddingTop = ((m_outputRows - 1) * m_row_strides + m_patch_rows_eff - m_input_rows_eff) / 2;
246 eigen_assert(m_outputRows > 0);
260 m_dimensions[3] = m_outputRows * m_outputCols;
274 m_dimensions[NumDims-4] = m_outputRows * m_outputCols;
305 m_fastOutputRows = internal::TensorIntDivisor<Index>(m_outputRows);
346 const Index rowIndex = patch2DIndex - colIndex * m_outputRows;
    [all...]
TensorVolumePatch.h 231 m_outputRows = numext::ceil((m_input_rows_eff + op.padding_top() + op.padding_bottom() - m_patch_rows_eff + 1.f) / static_cast<float>(m_row_strides));
241 m_outputRows = numext::ceil((m_input_rows_eff - m_patch_rows_eff + 1.f) / static_cast<float>(m_row_strides));
249 m_outputRows = numext::ceil(m_input_rows_eff / static_cast<float>(m_row_strides));
252 const Index dy = m_outputRows * m_row_strides + m_patch_rows_eff - 1 - m_input_rows_eff;
263 eigen_assert(m_outputRows > 0);
280 m_dimensions[4] = m_outputPlanes * m_outputRows * m_outputCols;
296 m_dimensions[NumDims-5] = m_outputPlanes * m_outputRows * m_outputCols;
321 m_outputPlanesRows = m_outputPlanes * m_outputRows;
387 const Index planeIndex = (patch3DIndex - m_outputPlanes * (colIndex * m_outputRows + rowIndex));
469 const Index planeIndex = (patch3DIndex - m_outputPlanes * (colIndex * m_outputRows + rowIndex))
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
eigen_volume_patch.h 103 m_outputRows = Eigen::divup(
122 m_outputRows = Eigen::divup(m_input_rows_eff - m_patch_rows_eff + 1,
132 m_outputRows = Eigen::divup(m_input_rows_eff, m_row_strides);
138 0, (m_outputRows - 1) * m_row_strides + m_patch_rows_eff -
152 eigen_assert(m_outputRows > 0);
169 m_dimensions[4] = m_outputPlanes * m_outputRows * m_outputCols;
185 m_dimensions[NumDims - 5] = m_outputPlanes * m_outputRows * m_outputCols;
212 m_outputPlanesRows = m_outputPlanes * m_outputRows;
301 (patch3DIndex - m_outputPlanes * (colIndex * m_outputRows + rowIndex));
400 (patch3DIndex - m_outputPlanes * (colIndex * m_outputRows + rowIndex))
    [all...]
eigen_spatial_convolutions.h 91 m_outputRows = tensor.impl().outputRows();
120 m_fastOutputRows = internal::TensorIntDivisor<Index>(m_outputRows);
141 m_outputRows = base_mapper.m_outputRows;
412 rowIndex = patch2DIndex - colIndex * m_outputRows;
439 Index m_outputRows; // Number of patch rows
    [all...]

Completed in 182 milliseconds