Searched refs:op (Results 1 – 3 of 3) sorted by relevance
/cmsis-nn-3.6.0-3.5.0/Source/SVDFunctions/ |
D | arm_svdf_state_s16_s8.c | 241 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()
|
D | arm_svdf_s8.c | 245 int32x4_t op = vldrwq_z_s32(buffer_b, p); in arm_svdf_s8() local 246 op = arm_requantize_mve(op, multiplier_out, shift_2); in arm_svdf_s8() 247 op = vaddq_n_s32(op, zp_out); in arm_svdf_s8() 250 op = vmaxq_s32(op, min_vec); in arm_svdf_s8() 251 op = vminq_s32(op, max_vec); in arm_svdf_s8() 252 vstrbq_p_s32(output_data, op, p); in arm_svdf_s8()
|
/cmsis-nn-3.6.0-3.5.0/Tests/UnitTest/ |
D | model_extractor.py | 185 for op in operators: 186 if 'opcode_index' in op: 187 builtin_name = operator_codes[op['opcode_index']]['builtin_code'] 193 if 'builtin_options' in op: 194 builtin_options = op['builtin_options'] 211 input_index = op['inputs'][0] 212 output_index = op['outputs'][0] 226 weights_index = op['inputs'][1] 227 bias_index = op['inputs'][2]
|