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

  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorImagePatch.h 283 m_patchStride = m_colStride * m_dimensions[2] * m_dimensions[0];
284 m_otherStride = m_patchStride * m_dimensions[3];
287 m_patchStride = m_colStride * m_dimensions[NumDims-3] * m_dimensions[NumDims-1];
288 m_otherStride = m_patchStride * m_dimensions[NumDims-4];
298 m_fastPatchStride = internal::TensorIntDivisor<Index>(m_patchStride);
329 const Index patchOffset = (index - patchIndex * m_patchStride) / m_fastOutputDepth;
381 const Index patchOffsets[2] = {(indices[0] - patchIndex * m_patchStride) / m_fastOutputDepth,
382 (indices[1] - patchIndex * m_patchStride) / m_fastOutputDepth};
462 Index m_patchStride;
TensorVolumePatch.h 306 m_patchStride = m_colStride * m_dimensions[3] * m_dimensions[0];
307 m_otherStride = m_patchStride * m_dimensions[4];
311 m_patchStride = m_colStride * m_dimensions[NumDims-4] * m_dimensions[NumDims-1];
312 m_otherStride = m_patchStride * m_dimensions[NumDims-5];
325 m_fastPatchStride = internal::TensorIntDivisor<Index>(m_patchStride);
360 const Index patchOffset = (index - patchIndex * m_patchStride) / m_fastOutputDepth;
428 const Index patchOffsets[2] = {(indices[0] - patchIndex * m_patchStride) / m_fastOutputDepth,
429 (indices[1] - patchIndex * m_patchStride) / m_fastOutputDepth};
578 Index m_patchStride;
  /external/tensorflow/tensorflow/core/kernels/
eigen_volume_patch.h 195 m_patchStride = m_colStride * m_dimensions[3] * m_dimensions[0];
196 m_otherStride = m_patchStride * m_dimensions[4];
200 m_patchStride =
202 m_otherStride = m_patchStride * m_dimensions[NumDims - 5];
216 m_fastPatchStride = internal::TensorIntDivisor<Index>(m_patchStride);
258 (index - patchIndex * m_patchStride) / m_fastOutputDepth;
354 (indices[0] - patchIndex * m_patchStride) / m_fastOutputDepth,
355 (indices[1] - patchIndex * m_patchStride) / m_fastOutputDepth};
607 Index m_patchStride;

Completed in 64 milliseconds