Home
last modified time | relevance | path

Searched refs:patch2DIndex (Results 1 – 2 of 2) sorted by relevance

/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorImagePatch.h333 …const Index patch2DIndex = (NumDims == 4) ? patchIndex : (index - otherIndex * m_otherStride) / m_…
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)…
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/
Deigen_spatial_convolutions-inl.h618 const Index patch2DIndex = (NumInputDims == 3) in computeBaseIndices() local
622 colIndex = patch2DIndex / m_fastOutputRows; in computeBaseIndices()
623 rowIndex = patch2DIndex - colIndex * m_outputRows; in computeBaseIndices()