Home
last modified time | relevance | path

Searched refs:last_col (Results 1 – 13 of 13) sorted by relevance

/external/ruy/ruy/
Dkernel_common.h113 std::int32_t last_col;
169 params->last_col = end_col - RhsCols;
198 RUY_DCHECK_LT(params->last_col, params->dst_cols);
214 std::int32_t last_col;
259 params->last_col = end_col - RhsCols;
270 RUY_DCHECK_LT(params->last_col, params->dst_cols);
Dkernel_arm32.cc66 static_assert(offsetof(Params, last_col) == RUY_OFFSET_LAST_COL, ""); in CheckOffsetsInKernelParamsFloat32()
617 static_assert(offsetof(Params, last_col) == RUY_OFFSET_LAST_COL, ""); in CheckOffsetsInKernelParams8bit()
Dkernel_avx512.cc112 for (int col = params.start_col; col <= params.last_col; col += 16) {
664 RUY_DCHECK_EQ(params.last_col, 0);
907 const int end_col = std::min(params.dst_cols, params.last_col + 16);
1468 RUY_DCHECK_EQ(params.last_col, 0);
Dkernel_x86.h562 const int end_col = std::min(params.dst_cols, params.last_col + 8);
769 RUY_DCHECK_EQ(params.last_col, 0);
Dkernel_avx2_fma.cc127 for (int col = params.start_col; col <= params.last_col;
733 RUY_DCHECK_EQ(params.last_col, 0);
Dkernel_arm64.cc86 static_assert(offsetof(Params, last_col) == RUY_OFFSET_LAST_COL, ""); in CheckOffsetsInKernelParams8bit()
6422 static_assert(offsetof(Params, last_col) == RUY_OFFSET_LAST_COL, ""); in CheckOffsetsInKernelParamsFloat()
Dkernel_avx.cc468 for (int col = params.start_col; col <= params.last_col;
1174 RUY_DCHECK_EQ(params.last_col, 0);
Dtest.h2190 int last_col = std::min(matrix.layout().cols() - 1, center_col + kRadius);
2193 for (int col = first_col; col <= last_col; col++) {
/external/libhevc/encoder/
Dihevce_deblk.c279 deblk_ctb_params_t *ps_deblk, WORD32 last_col, deblk_ctbrow_prms_t *ps_deblk_ctb_row_params) in ihevce_deblk_ctb() argument
487 col_size += last_col; in ihevce_deblk_ctb()
489 else if(!last_col) in ihevce_deblk_ctb()
588 col_size += last_col; in ihevce_deblk_ctb()
590 else if(!last_col) in ihevce_deblk_ctb()
Dihevce_deblk.h76 deblk_ctb_params_t *ps_deblk, WORD32 last_col, deblk_ctbrow_prms_t *ps_deblk_ctb_row_params);
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorReductionCuda.h410 const Index last_col = col_begin + blockDim.x * (j + unroll_times - 1);
411 if (last_col >= num_coeffs_to_reduce) {
487 const Index last_col = col_begin + blockDim.x * (j + unroll_times - 1) * 2;
488 if (last_col >= num_coeffs_to_reduce) {
/external/mesa3d/src/compiler/glsl/
Dast_function.cpp1805 const unsigned last_col = MIN2(src_matrix->type->matrix_columns, in emit_inline_matrix_constructor() local
1814 for (unsigned i = 0; i < last_col; i++) { in emit_inline_matrix_constructor()
/external/tensorflow/tensorflow/core/kernels/
Deigen_spatial_convolutions-inl.h893 const Index last_col = in hasPadding() local
895 if (last_col + (patchCols() - 1) >= m_base_mapper.m_inputCols) return true; in hasPadding()