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

  /external/tensorflow/tensorflow/core/kernels/
eigen_volume_patch.h 262 const Index patch3DIndex =
268 const Index colIndex = patch3DIndex / m_fastOutputPlanesRows;
284 (patch3DIndex - colIndex * m_outputPlanesRows) / m_fastOutputPlanes;
301 (patch3DIndex - m_outputPlanes * (colIndex * m_outputRows + rowIndex));
357 const Index patch3DIndex =
361 eigen_assert(patch3DIndex ==
364 const Index colIndex = patch3DIndex / m_fastOutputPlanesRows;
381 (patch3DIndex - colIndex * m_outputPlanesRows) / m_fastOutputPlanes;
400 (patch3DIndex - m_outputPlanes * (colIndex * m_outputRows + rowIndex));
468 const Index patch3DIndex
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorVolumePatch.h 364 const Index patch3DIndex = (NumDims == 5) ? patchIndex : (index - otherIndex * m_otherStride) / m_fastPatchStride;
367 const Index colIndex = patch3DIndex / m_fastOutputPlanesRows;
377 const Index rowIndex = (patch3DIndex - colIndex * m_outputPlanesRows) / m_fastOutputPlanes;
387 const Index planeIndex = (patch3DIndex - m_outputPlanes * (colIndex * m_outputRows + rowIndex));
431 const Index patch3DIndex = (NumDims == 5) ? patchIndex : (indices[0] - otherIndex * m_otherStride) / m_fastPatchStride;
432 eigen_assert(patch3DIndex == (indices[1] - otherIndex * m_otherStride) / m_fastPatchStride);
434 const Index colIndex = patch3DIndex / m_fastOutputPlanesRows;
451 const Index rowIndex = (patch3DIndex - colIndex * m_outputPlanesRows) / m_fastOutputPlanes;
469 const Index planeIndex = (patch3DIndex - m_outputPlanes * (colIndex * m_outputRows + rowIndex));

Completed in 162 milliseconds