Home
last modified time | relevance | path

Searched refs:m_fastOtherStride (Results 1 – 3 of 3) sorted by relevance

/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorImagePatch.h297 m_fastOtherStride = internal::TensorIntDivisor<Index>(m_otherStride);
332 const Index otherIndex = (NumDims == 4) ? 0 : index / m_fastOtherStride;
377 const Index otherIndex = (NumDims == 4) ? 0 : indices[0] / m_fastOtherStride;
378 eigen_assert(otherIndex == indices[1] / m_fastOtherStride);
477 internal::TensorIntDivisor<Index> m_fastOtherStride;
DTensorVolumePatch.h324 m_fastOtherStride = internal::TensorIntDivisor<Index>(m_otherStride);
363 const Index otherIndex = (NumDims == 5) ? 0 : index / m_fastOtherStride;
424 const Index otherIndex = (NumDims == 5) ? 0 : indices[0] / m_fastOtherStride;
425 eigen_assert(otherIndex == indices[1] / m_fastOtherStride);
588 internal::TensorIntDivisor<Index> m_fastOtherStride;
/external/tensorflow/tensorflow/core/kernels/
Deigen_volume_patch.h216 m_fastOtherStride = internal::TensorIntDivisor<Index>(m_otherStride); in CustomTensorEvaluator()
262 const Index otherIndex = (NumDims == 5) ? 0 : index / m_fastOtherStride; in coeff()
350 (NumDims == 5) ? 0 : indices[0] / m_fastOtherStride; in packet()
351 eigen_assert(otherIndex == indices[1] / m_fastOtherStride); in packet()
618 internal::TensorIntDivisor<Index> m_fastOtherStride; member