Searched refs:x (Results 1 – 10 of 10) sorted by relevance
/cmsis-nn-latest/Tests/UnitTest/ |
D | README.md | 138 | convolution | x | x | 139 | fully_connected | x | x | 140 | lstm | | x | 141 | svdf | | x | Operator is only fully supported by TFLM. 142 | softmax | x | x | 143 | avgpool | x | x | 144 | maxpool | x | x | 145 | add | x | x | 146 | mul | x | x | 162 | convolution | x | x | New version only supports 16x8 [all …]
|
D | conv_settings.py | 170 while any((x > 31 or x < -31) for x in per_channel_shift): 202 quantized_data = [(x // scale) + zero_point for x in data]
|
D | add_mul_settings.py | 102 out = keras.layers.Lambda(function=lambda x: x)(layer)
|
/cmsis-nn-latest/Source/SoftmaxFunctions/ |
D | arm_softmax_s8.c | 46 const int32x4_t x = vaddq_n_s32(val_mod_minus_quarter << 5, 1 << 28); in arm_exp_on_negative_values_mve_32x4() local 47 const int32x4_t x2 = MUL_SAT_MVE(x, x); in arm_exp_on_negative_values_mve_32x4() 48 const int32x4_t op_1 = DIV_POW2_MVE(MUL_SAT_MVE(x2, x2), 2) + MUL_SAT_MVE(x2, x); in arm_exp_on_negative_values_mve_32x4() 49 const int32x4_t op_2 = x + DIV_POW2_MVE(MUL_SAT_MVE(op_1, vdupq_n_s32(715827883)) + x2, 1); in arm_exp_on_negative_values_mve_32x4() 52 …#define SELECT_IF_NON_ZERO(x) … in arm_exp_on_negative_values_mve_32x4() argument 56 …result = SELECT_USING_MASK(mask, MUL_SAT_MVE(result, vdupq_n_s32(x)), result); … in arm_exp_on_negative_values_mve_32x4()
|
/cmsis-nn-latest/Include/ |
D | arm_nnsupportfunctions.h | 49 #define MASK_IF_ZERO(x) (x) == 0 ? ~0 : 0 argument 50 #define MASK_IF_NON_ZERO(x) (x) != 0 ? ~0 : 0 argument 55 #define CLAMP(x, h, l) MAX(MIN((x), (h)), (l)) argument 1281 #define EXP_ON_NEG(x) arm_nn_exp_on_negative_values((x)) argument 1282 #define ONE_OVER1(x) arm_nn_one_over_one_plus_x_for_x_in_0_1((x)) argument 1653 const int32_t x = (val_mod_minus_quarter << 5) + (1 << 28); in arm_nn_exp_on_negative_values() local 1654 const int32_t x2 = MUL_SAT(x, x); in arm_nn_exp_on_negative_values() 1657 …MUL_SAT(1895147668, x + DIV_POW2(MUL_SAT(DIV_POW2(MUL_SAT(x2, x2), 2) + MUL_SAT(x2, x), 715827883)… in arm_nn_exp_on_negative_values() 1659 #define SELECT_IF_NON_ZERO(x) … in arm_nn_exp_on_negative_values() argument 1662 …result = SELECT_USING_MASK(mask, MUL_SAT(result, x), result); … in arm_nn_exp_on_negative_values() [all …]
|
/cmsis-nn-latest/Source/NNSupportFunctions/ |
D | arm_nn_mat_mult_nt_t_s8.c | 238 for (int32_t x = 0; x < rhs_cols; ++x) in arm_nn_mat_mult_nt_t_s8() 240 lhs_offset_contribution0 += rhs[x]; in arm_nn_mat_mult_nt_t_s8() 241 lhs_offset_contribution1 += rhs[x + rhs_cols]; in arm_nn_mat_mult_nt_t_s8() 634 for (int32_t x = 0; x < rhs_cols; ++x) in arm_nn_mat_mult_nt_t_s8() 636 lhs_offset_contribution0 += rhs[x]; in arm_nn_mat_mult_nt_t_s8() 637 lhs_offset_contribution1 += rhs[x + rhs_cols]; in arm_nn_mat_mult_nt_t_s8()
|
/cmsis-nn-latest/Include/Internal/ |
D | arm_nn_compiler.h | 91 #define __ALIGNED(x) __declspec(align(x)) argument
|
/cmsis-nn-latest/Documentation/Doxygen/style_template/ |
D | search.css | 276 background-repeat: repeat-x;
|
D | extra_stylesheet.css | 690 overflow-x: overlay;
|
/cmsis-nn-latest/Documentation/Doxygen/ |
D | nn.dxy.in | 35 # doxygen -x [configFile] 2028 # Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x 2029 # 14 inches) and executive (7.25 x 10.5 inches). 2413 …ATH_NEON=1 ARM_FLOAT16_SUPPORTED=1 __STATIC_FORCEINLINE=static __STATIC_INLINE=static __ALIGNED(x)=
|