Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/kernels/
Deigen_volume_patch.h305 const Index inputPlane = planeIndex * m_plane_strides + in coeff() local
310 ? inputPlane in coeff()
311 : ((inputPlane >= 0) ? (inputPlane / m_fastInputPlaneStride) : 0); in coeff()
312 if (inputPlane < 0 || inputPlane >= m_input_planes_eff || in coeff()
314 (inputPlane != origInputPlane * m_plane_inflate_strides))) { in coeff()
509 const Index inputPlane = planeIndex * m_plane_strides + in coeff() local
514 ? inputPlane in coeff()
515 : ((inputPlane >= 0) ? (inputPlane / m_fastInputPlaneStride) : 0); in coeff()
516 if (inputPlane < 0 || inputPlane >= m_input_planes_eff || in coeff()
518 (inputPlane != origInputPlane * m_plane_inflate_strides))) { in coeff()
Deigen_cuboid_convolution.h376 const Index inputPlane = planeIndex + planeOffset * m_in_plane_strides; in loadCoeff() local
379 ? inputPlane in loadCoeff()
380 : ((inputPlane >= 0) ? (inputPlane / m_fastInputPlaneStride) : 0); in loadCoeff()
387 (inputPlane != origInputPlane * m_patch_plane_inflate_strides)) { in loadCoeff()
418 const Index inputPlane = planeIndex + planeOffset; in loadCoeffStandard() local
421 inputRow >= m_inputRows || inputPlane < 0 || in loadCoeffStandard()
422 inputPlane >= m_inputPlanes) { in loadCoeffStandard()
427 const Index inputIndex = depth + inputPlane * m_planeInputStride + in loadCoeffStandard()
741 const Index inputPlane = planeIndex + planeOffset; in loadPacketFast() local
743 if (inputCol < 0 || inputRow < 0 || inputPlane < 0 || in loadPacketFast()
[all …]
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorVolumePatch.h389 …const Index inputPlane = planeIndex * m_plane_strides + planeOffset * m_in_plane_strides - m_plane…
390 …dex origInputPlane = (m_plane_inflate_strides == 1) ? inputPlane : ((inputPlane >= 0) ? (inputPlan…
391 if (inputPlane < 0 || inputPlane >= m_input_planes_eff ||
392 … ((m_plane_inflate_strides != 1) && (inputPlane != origInputPlane * m_plane_inflate_strides))) {