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

  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorImagePatch.h 333 const Index patch2DIndex = (NumDims == 4) ? patchIndex : (index - otherIndex * m_otherStride) / m_fastPatchStride;
336 const Index colIndex = patch2DIndex / m_fastOutputRows;
346 const Index rowIndex = patch2DIndex - colIndex * m_outputRows;
384 const Index patch2DIndex = (NumDims == 4) ? patchIndex : (indices[0] - otherIndex * m_otherStride) / m_fastPatchStride;
385 eigen_assert(patch2DIndex == (indices[1] - otherIndex * m_otherStride) / m_fastPatchStride);
387 const Index colIndex = patch2DIndex / m_fastOutputRows;
398 const Index rowIndex = patch2DIndex - colIndex * m_outputRows;
  /external/tensorflow/tensorflow/core/kernels/
eigen_spatial_convolutions.h 407 const Index patch2DIndex = (NumInputDims == 3)
411 colIndex = patch2DIndex / m_fastOutputRows;
412 rowIndex = patch2DIndex - colIndex * m_outputRows;
    [all...]

Completed in 95 milliseconds