Home
last modified time | relevance | path

Searched refs:op (Results 1 – 3 of 3) sorted by relevance

/cmsis-nn-latest/Source/SVDFunctions/
Darm_svdf_state_s16_s8.c241 int32x4_t op = vldrwq_z_s32(buffer_b, p); in arm_svdf_state_s16_s8() local
242 op = arm_requantize_mve(op, multiplier_out, shift_2); in arm_svdf_state_s16_s8()
243 op = vaddq_n_s32(op, zp_out); in arm_svdf_state_s16_s8()
246 op = vmaxq_s32(op, min_vec); in arm_svdf_state_s16_s8()
247 op = vminq_s32(op, max_vec); in arm_svdf_state_s16_s8()
248 vstrbq_p_s32(output_data, op, p); in arm_svdf_state_s16_s8()
Darm_svdf_s8.c256 int32x4_t op = vldrwq_z_s32(buffer_b, p); in arm_svdf_s8() local
257 op = arm_requantize_mve(op, multiplier_out, shift_2); in arm_svdf_s8()
258 op = vaddq_n_s32(op, zp_out); in arm_svdf_s8()
261 op = vmaxq_s32(op, min_vec); in arm_svdf_s8()
262 op = vminq_s32(op, max_vec); in arm_svdf_s8()
263 vstrbq_p_s32(output_data, op, p); in arm_svdf_s8()
/cmsis-nn-latest/Tests/UnitTest/
Dmodel_extractor.py181 for op in operators:
182 if 'opcode_index' in op:
183 builtin_name = operator_codes[op['opcode_index']]['builtin_code']
188 if 'builtin_options' in op:
189 builtin_options = op['builtin_options']
206 input_index = op['inputs'][0]
207 output_index = op['outputs'][0]
221 weights_index = op['inputs'][1]
222 bias_index = op['inputs'][2]