Home
last modified time | relevance | path

Searched refs:src_strides (Results 1 – 8 of 8) sorted by relevance

/external/ComputeLibrary/src/cpu/kernels/
DCpuWinogradConv2dKernel.cpp47 const auto src_strides = input_nhwc->info()->strides_in_bytes(); in run_op() local
49 const size_t input_row_stride = src_strides[height_idx] / element_size_in_bytes; in run_op()
50 const size_t input_col_stride = src_strides[width_idx] / element_size_in_bytes; in run_op()
51 const size_t input_batch_stride = src_strides[batch_idx] / element_size_in_bytes; in run_op()
/external/libvpx/vp9/encoder/
Dvp9_frame_scale.c25 const int src_strides[3] = { src->y_stride, src->uv_stride, src->uv_stride }; in vp9_scale_and_extend_frame_c() local
76 const int src_stride = src_strides[i]; in vp9_scale_and_extend_frame_c()
96 const int src_stride = src_strides[i]; in vp9_scale_and_extend_frame_c()
Dvp9_encoder.c2985 const int src_strides[3] = { src->y_stride, src->uv_stride, src->uv_stride }; local
3001 src_strides[i], dsts[i], dst_heights[i],
3004 vp9_resize_plane(srcs[i], src_heights[i], src_widths[i], src_strides[i],
3008 vp9_resize_plane(srcs[i], src_heights[i], src_widths[i], src_strides[i],
3026 const int src_strides[3] = { src->y_stride, src->uv_stride, src->uv_stride }; local
3034 const int src_stride = src_strides[i];
/external/tensorflow/tensorflow/core/kernels/mkl/
Dmkl_eltwise_activation_base_op.h272 auto src_strides = CalculateTFStrides(src_dims); in Compute() local
275 src_md = MklDnnData<T>::CreateBlockedMemDesc(src_dims, src_strides); in Compute()
Dmkl_relu_op.cc472 auto src_strides = CalculateTFStrides(src_dims); in Compute() local
474 src_md = MklDnnData<T>::CreateBlockedMemDesc(src_dims, src_strides); in Compute()
629 auto src_strides = CalculateTFStrides(src_dims); in Compute() local
630 src_md = MklDnnData<T>::CreateBlockedMemDesc(src_dims, src_strides); in Compute()
/external/libvpx/vp9/common/
Dvp9_postproc.c239 const int src_strides[3] = { src->y_stride, src->uv_stride, in vp9_deblock() local
251 src_strides[i], dst_strides[i], src_heights[i], src_widths[i], ppl); in vp9_deblock()
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorBlock.h1164 Src(const Dimensions& src_strides, const Scalar* src,
1166 : strides(src_strides), data(src), offset(src_offset) {}
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_evaluator.cc1941 const absl::Span<const int64_t> src_strides, in GenerateIndices() argument
1946 CHECK_EQ(src_lengths.size() + 1, src_strides.size()); in GenerateIndices()
1960 src_index += src_strides[axis]; in GenerateIndices()