Home
last modified time | relevance | path

Searched refs:MAX_COL_COUNT (Results 1 – 6 of 6) sorted by relevance

/cmsis-nn-latest/Source/NNSupportFunctions/
Darm_nn_mat_mult_nt_t_s16.c70 …nt32_t rhs_cols_fast = is_int32_bias ? rhs_cols : (rhs_cols > MAX_COL_COUNT ? MAX_COL_COUNT : rhs_… in arm_nn_mat_mult_nt_t_s16()
71 const int32_t rhs_cols_slow = rhs_cols - MAX_COL_COUNT; in arm_nn_mat_mult_nt_t_s16()
161 if (rhs_cols > MAX_COL_COUNT) in arm_nn_mat_mult_nt_t_s16()
163 ip_row_0 = lhs + MAX_COL_COUNT; in arm_nn_mat_mult_nt_t_s16()
164 ip_row_1 = lhs + rhs_cols + MAX_COL_COUNT; in arm_nn_mat_mult_nt_t_s16()
165 ip_row_2 = lhs + (2 * rhs_cols) + MAX_COL_COUNT; in arm_nn_mat_mult_nt_t_s16()
166 ip_row_3 = lhs + (3 * rhs_cols) + MAX_COL_COUNT; in arm_nn_mat_mult_nt_t_s16()
167 col_base = rhs + i * rhs_cols + MAX_COL_COUNT; in arm_nn_mat_mult_nt_t_s16()
310 if (rhs_cols > MAX_COL_COUNT) in arm_nn_mat_mult_nt_t_s16()
312 ip_row_0 = lhs + MAX_COL_COUNT; in arm_nn_mat_mult_nt_t_s16()
[all …]
Darm_nn_vec_mat_mult_t_s16.c63 if (rhs_cols > MAX_COL_COUNT) in arm_nn_vec_mat_mult_t_s16()
65 rhs_cols_fast = MAX_COL_COUNT; in arm_nn_vec_mat_mult_t_s16()
117 if (rhs_cols > MAX_COL_COUNT) in arm_nn_vec_mat_mult_t_s16()
119 for (int i_rhs_cols = MAX_COL_COUNT; i_rhs_cols < rhs_cols; i_rhs_cols++) in arm_nn_vec_mat_mult_t_s16()
197 if (rhs_cols > MAX_COL_COUNT) in arm_nn_vec_mat_mult_t_s16()
199 for (int i_rhs_cols = MAX_COL_COUNT; i_rhs_cols < rhs_cols; i_rhs_cols++) in arm_nn_vec_mat_mult_t_s16()
Darm_nn_vec_mat_mul_result_acc_s16.c72 if (rhs_cols > MAX_COL_COUNT) in arm_nn_vec_mat_mul_result_acc_s16()
74 rhs_cols_fast = MAX_COL_COUNT; in arm_nn_vec_mat_mul_result_acc_s16()
126 if (rhs_cols > MAX_COL_COUNT) in arm_nn_vec_mat_mul_result_acc_s16()
128 for (int i_rhs_cols = MAX_COL_COUNT; i_rhs_cols < rhs_cols; i_rhs_cols++) in arm_nn_vec_mat_mul_result_acc_s16()
195 if (rhs_cols > MAX_COL_COUNT) in arm_nn_vec_mat_mul_result_acc_s16()
197 for (int i_rhs_cols = MAX_COL_COUNT; i_rhs_cols < rhs_cols; i_rhs_cols++) in arm_nn_vec_mat_mul_result_acc_s16()
/cmsis-nn-latest/Source/ConvolutionFunctions/
Darm_nn_mat_mult_kernel_s16.c65 …2_t num_col_a_fast = is_int32_bias ? num_col_a : (num_col_a > MAX_COL_COUNT ? MAX_COL_COUNT : num_… in arm_nn_mat_mult_kernel_s16()
66 const int32_t num_col_a_slow = num_col_a - MAX_COL_COUNT; in arm_nn_mat_mult_kernel_s16()
178 if (num_col_a > MAX_COL_COUNT) in arm_nn_mat_mult_kernel_s16()
310 if (num_col_a > MAX_COL_COUNT) in arm_nn_mat_mult_kernel_s16()
Darm_depthwise_conv_fast_s16.c72 if (filter_dims->w * filter_dims->h >= MAX_COL_COUNT) in arm_depthwise_conv_fast_s16()
/cmsis-nn-latest/Include/
Darm_nnsupportfunctions.h73 #define MAX_COL_COUNT (512) macro