HomeSort by relevance Sort by last modified time
    Searched full:output_stride_index (Results 1 - 1 of 1) sorted by null

  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorPatch.h 157 Index output_stride_index = (static_cast<int>(Layout) == static_cast<int>(ColMajor)) ? NumDims - 1 : 0; local
159 Index patchIndex = index / m_outputStrides[output_stride_index];
161 Index patchOffset = index - patchIndex * m_outputStrides[output_stride_index];
190 Index output_stride_index = (static_cast<int>(Layout) == static_cast<int>(ColMajor)) ? NumDims - 1 : 0; local
192 Index patchIndices[2] = {indices[0] / m_outputStrides[output_stride_index],
193 indices[1] / m_outputStrides[output_stride_index]};
194 Index patchOffsets[2] = {indices[0] - patchIndices[0] * m_outputStrides[output_stride_index],
195 indices[1] - patchIndices[1] * m_outputStrides[output_stride_index]};

Completed in 1698 milliseconds