Searched refs:inputRow (Results 1 - 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/core/kernels/
H A Deigen_volume_patch.h287 const Index inputRow = rowIndex * m_row_strides + local
291 ? inputRow
292 : ((inputRow >= 0) ? (inputRow / m_fastInputRowStride) : 0);
293 if (inputRow < 0 || inputRow >= m_input_rows_eff ||
295 (inputRow != origInputRow * m_row_inflate_strides))) {
494 const Index inputRow = rowIndex * m_row_strides + local
498 ? inputRow
499 : ((inputRow >
[all...]
H A Deigen_spatial_convolutions.h254 const Index inputRow = rowIndex + rowOffset * m_in_row_strides; local
257 ? inputRow
258 : ((inputRow >= 0) ? (inputRow / m_fastInputRowStride) : 0);
262 (inputRow != origInputRow * m_patch_row_inflate_strides)) {
283 const Index inputRow = rowIndex + rowOffset; local
284 if (inputCol < 0 || inputCol >= m_inputCols || inputRow < 0 ||
285 inputRow >= m_inputRows) {
289 const Index inputIndex = depth + inputRow * m_rowInputStride +
376 const Index inputRow
[all...]
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorImagePatch.h348 const Index inputRow = rowIndex * m_row_strides + rowOffset * m_in_row_strides - m_rowPaddingTop; local
349 const Index origInputRow = (m_row_inflate_strides == 1) ? inputRow : ((inputRow >= 0) ? (inputRow / m_fastInflateRowStride) : 0);
350 if (inputRow < 0 || inputRow >= m_input_rows_eff ||
351 ((m_row_inflate_strides != 1) && (inputRow != origInputRow * m_row_inflate_strides))) {
H A DTensorVolumePatch.h379 const Index inputRow = rowIndex * m_row_strides + rowOffset * m_in_row_strides - m_rowPaddingTop; local
380 const Index origInputRow = (m_row_inflate_strides == 1) ? inputRow : ((inputRow >= 0) ? (inputRow / m_fastInputRowStride) : 0);
381 if (inputRow < 0 || inputRow >= m_input_rows_eff ||
382 ((m_row_inflate_strides != 1) && (inputRow != origInputRow * m_row_inflate_strides))) {

Completed in 1094 milliseconds