Lines Matching +full:- +full:- +full:header
2 …* SPDX-FileCopyrightText: Copyright 2010-2024 Arm Limited and/or its affiliates <open-source-offic…
4 * SPDX-License-Identifier: Apache-2.0
10 * www.apache.org/licenses/LICENSE-2.0
19 /* ----------------------------------------------------------------------
27 * Target : Arm(R) M-Profile Architecture
29 * -------------------------------------------------------------------- */
44 * S8 basic fully-connected and matrix multiplication layer function for TensorFlow Lite
46 * Refer header file for details.
64 int32_t batch_cnt = input_dims->n; in arm_fully_connected_s8()
67 if (ctx->buf == NULL) in arm_fully_connected_s8()
73 const int32_t *kernel_sum = (const int32_t *)ctx->buf; in arm_fully_connected_s8()
83 fc_params->input_offset, in arm_fully_connected_s8()
84 fc_params->output_offset, in arm_fully_connected_s8()
85 quant_params->multiplier, in arm_fully_connected_s8()
86 quant_params->shift, in arm_fully_connected_s8()
87 filter_dims->n, /* col_dim or accum_depth */ in arm_fully_connected_s8()
88 output_dims->c, /* row_dim or output_depth */ in arm_fully_connected_s8()
89 fc_params->activation.min, in arm_fully_connected_s8()
90 fc_params->activation.max, in arm_fully_connected_s8()
92 fc_params->filter_offset); in arm_fully_connected_s8()
94 input += filter_dims->n; in arm_fully_connected_s8()
95 output += output_dims->c; in arm_fully_connected_s8()
96 batch_cnt--; in arm_fully_connected_s8()