/cmsis-nn-3.6.0-3.5.0/Tests/UnitTest/TestCases/test_arm_avgpool_s8/ |
D | test_arm_avgpool_s8.c | 35 cmsis_nn_context ctx; in avgpooling_arm_avgpool_s8() local 61 ctx.size = arm_avgpool_s8_get_buffer_size(AVGPOOLING_OUTPUT_W, AVGPOOLING_IN_CH); in avgpooling_arm_avgpool_s8() 62 ctx.buf = malloc(ctx.size); in avgpooling_arm_avgpool_s8() 65 … arm_avgpool_s8(&ctx, &pool_params, &input_dims, input_data, &filter_dims, &output_dims, output); in avgpooling_arm_avgpool_s8() 67 if (ctx.buf) in avgpooling_arm_avgpool_s8() 70 memset(ctx.buf, 0, ctx.size); in avgpooling_arm_avgpool_s8() 71 free(ctx.buf); in avgpooling_arm_avgpool_s8() 82 cmsis_nn_context ctx; in avgpooling_1_arm_avgpool_s8() local 108 ctx.size = arm_avgpool_s8_get_buffer_size(AVGPOOLING_1_OUTPUT_W, AVGPOOLING_1_IN_CH); in avgpooling_1_arm_avgpool_s8() 109 ctx.buf = malloc(ctx.size); in avgpooling_1_arm_avgpool_s8() [all …]
|
/cmsis-nn-3.6.0-3.5.0/Tests/UnitTest/TestCases/test_arm_avgpool_s16/ |
D | test_arm_avgpool_s16.c | 33 cmsis_nn_context ctx; in avgpooling_int16_arm_avgpool_s16() local 59 ctx.size = arm_avgpool_s16_get_buffer_size(AVGPOOLING_INT16_OUTPUT_W, AVGPOOLING_INT16_IN_CH); in avgpooling_int16_arm_avgpool_s16() 60 ctx.buf = malloc(ctx.size); in avgpooling_int16_arm_avgpool_s16() 63 … arm_avgpool_s16(&ctx, &pool_params, &input_dims, input_data, &filter_dims, &output_dims, output); in avgpooling_int16_arm_avgpool_s16() 65 if (ctx.buf) in avgpooling_int16_arm_avgpool_s16() 68 memset(ctx.buf, 0, ctx.size); in avgpooling_int16_arm_avgpool_s16() 69 free(ctx.buf); in avgpooling_int16_arm_avgpool_s16() 80 cmsis_nn_context ctx; in avgpooling_int16_1_arm_avgpool_s16() local 106 … ctx.size = arm_avgpool_s16_get_buffer_size(AVGPOOLING_INT16_1_OUTPUT_W, AVGPOOLING_INT16_1_IN_CH); in avgpooling_int16_1_arm_avgpool_s16() 107 ctx.buf = malloc(ctx.size); in avgpooling_int16_1_arm_avgpool_s16() [all …]
|
/cmsis-nn-3.6.0-3.5.0/Tests/UnitTest/TestCases/test_arm_depthwise_conv_s8_opt/ |
D | test_arm_depthwise_conv_s8_opt.c | 37 cmsis_nn_context ctx; in basic_arm_depthwise_conv_s8_opt() local 75 ctx.size = arm_depthwise_conv_s8_opt_get_buffer_size(&input_dims, &filter_dims); in basic_arm_depthwise_conv_s8_opt() 78 TEST_ASSERT_TRUE(ctx.size > 0); in basic_arm_depthwise_conv_s8_opt() 80 TEST_ASSERT_EQUAL(ctx.size, 0); in basic_arm_depthwise_conv_s8_opt() 83 ctx.buf = malloc(ctx.size); in basic_arm_depthwise_conv_s8_opt() 85 arm_cmsis_nn_status result = arm_depthwise_conv_s8_opt(&ctx, in basic_arm_depthwise_conv_s8_opt() 97 if (ctx.buf) in basic_arm_depthwise_conv_s8_opt() 100 memset(ctx.buf, 0, ctx.size); in basic_arm_depthwise_conv_s8_opt() 101 free(ctx.buf); in basic_arm_depthwise_conv_s8_opt() 109 TEST_ASSERT_EQUAL(wrapper_buf_size, ctx.size); in basic_arm_depthwise_conv_s8_opt() [all …]
|
/cmsis-nn-3.6.0-3.5.0/Tests/UnitTest/TestCases/test_arm_convolve_1_x_n_s8/ |
D | test_arm_convolve_1_x_n_s8.c | 36 cmsis_nn_context ctx; in conv_1_x_n_1_arm_convolve_s8() local 75 ctx.buf = malloc(buf_size); in conv_1_x_n_1_arm_convolve_s8() 76 ctx.size = 0; in conv_1_x_n_1_arm_convolve_s8() 78 arm_cmsis_nn_status result = arm_convolve_1_x_n_s8(&ctx, in conv_1_x_n_1_arm_convolve_s8() 90 if (ctx.buf) in conv_1_x_n_1_arm_convolve_s8() 92 memset(ctx.buf, 0, buf_size); in conv_1_x_n_1_arm_convolve_s8() 93 free(ctx.buf); in conv_1_x_n_1_arm_convolve_s8() 100 ctx.buf = malloc(buf_size); in conv_1_x_n_1_arm_convolve_s8() 102 result = arm_convolve_s8(&ctx, in conv_1_x_n_1_arm_convolve_s8() 113 if (ctx.buf) in conv_1_x_n_1_arm_convolve_s8() [all …]
|
/cmsis-nn-3.6.0-3.5.0/Tests/UnitTest/TestCases/test_arm_convolve_s8/ |
D | test_arm_convolve_s8.c | 44 cmsis_nn_context ctx; in basic_arm_convolve_s8() local 83 ctx.buf = malloc(buf_size); in basic_arm_convolve_s8() 84 ctx.size = 0; in basic_arm_convolve_s8() 86 arm_cmsis_nn_status result = arm_convolve_s8(&ctx, in basic_arm_convolve_s8() 98 if (ctx.buf) in basic_arm_convolve_s8() 101 memset(ctx.buf, 0, buf_size); in basic_arm_convolve_s8() 102 free(ctx.buf); in basic_arm_convolve_s8() 109 ctx.buf = malloc(buf_size); in basic_arm_convolve_s8() 110 ctx.size = 0; in basic_arm_convolve_s8() 112 result = arm_convolve_wrapper_s8(&ctx, in basic_arm_convolve_s8() [all …]
|
/cmsis-nn-3.6.0-3.5.0/Tests/UnitTest/TestCases/test_arm_depthwise_conv_3x3_s8/ |
D | test_arm_depthwise_conv_3x3_s8.c | 34 cmsis_nn_context ctx; in depthwise_kernel_3x3_arm_depthwise_conv_3x3_s8() local 73 ctx.buf = NULL; in depthwise_kernel_3x3_arm_depthwise_conv_3x3_s8() 74 ctx.size = 0; in depthwise_kernel_3x3_arm_depthwise_conv_3x3_s8() 76 arm_cmsis_nn_status result = arm_depthwise_conv_3x3_s8(&ctx, in depthwise_kernel_3x3_arm_depthwise_conv_3x3_s8() 88 if (ctx.buf) in depthwise_kernel_3x3_arm_depthwise_conv_3x3_s8() 91 memset(ctx.buf, 0, ctx.size); in depthwise_kernel_3x3_arm_depthwise_conv_3x3_s8() 92 free(ctx.buf); in depthwise_kernel_3x3_arm_depthwise_conv_3x3_s8() 107 ctx.buf = malloc(buf_size); in depthwise_kernel_3x3_arm_depthwise_conv_3x3_s8() 108 ctx.size = buf_size; in depthwise_kernel_3x3_arm_depthwise_conv_3x3_s8() 110 result = arm_depthwise_conv_wrapper_s8(&ctx, in depthwise_kernel_3x3_arm_depthwise_conv_3x3_s8() [all …]
|
/cmsis-nn-3.6.0-3.5.0/Tests/UnitTest/TestCases/test_arm_depthwise_conv_s8/ |
D | test_arm_depthwise_conv_s8.c | 34 cmsis_nn_context ctx; in depthwise_2_arm_depthwise_conv_s8() local 73 ctx.buf = NULL; in depthwise_2_arm_depthwise_conv_s8() 74 ctx.size = 0; in depthwise_2_arm_depthwise_conv_s8() 76 arm_cmsis_nn_status result = arm_depthwise_conv_s8(&ctx, in depthwise_2_arm_depthwise_conv_s8() 88 if (ctx.buf) in depthwise_2_arm_depthwise_conv_s8() 90 memset(ctx.buf, 0, ctx.size); in depthwise_2_arm_depthwise_conv_s8() 91 free(ctx.buf); in depthwise_2_arm_depthwise_conv_s8() 101 ctx.buf = malloc(buf_size); in depthwise_2_arm_depthwise_conv_s8() 102 ctx.size = buf_size; in depthwise_2_arm_depthwise_conv_s8() 104 result = arm_depthwise_conv_wrapper_s8(&ctx, in depthwise_2_arm_depthwise_conv_s8() [all …]
|
/cmsis-nn-3.6.0-3.5.0/Tests/UnitTest/TestCases/test_arm_fully_connected_s8/ |
D | test_arm_fully_connected_s8.c | 35 cmsis_nn_context ctx; in fully_connected_arm_fully_connected_s8() local 68 ctx.buf = malloc(buf_size); in fully_connected_arm_fully_connected_s8() 69 ctx.size = buf_size; in fully_connected_arm_fully_connected_s8() 71 arm_cmsis_nn_status result = arm_fully_connected_s8(&ctx, in fully_connected_arm_fully_connected_s8() 83 if (ctx.buf) in fully_connected_arm_fully_connected_s8() 86 memset(ctx.buf, 0, buf_size); in fully_connected_arm_fully_connected_s8() 87 free(ctx.buf); in fully_connected_arm_fully_connected_s8() 97 cmsis_nn_context ctx; in fully_connected_mve_0_arm_fully_connected_s8() local 126 ctx.buf = malloc(buf_size); in fully_connected_mve_0_arm_fully_connected_s8() 127 ctx.size = buf_size; in fully_connected_mve_0_arm_fully_connected_s8() [all …]
|
/cmsis-nn-3.6.0-3.5.0/Tests/UnitTest/TestCases/test_arm_fully_connected_s16/ |
D | test_arm_fully_connected_s16.c | 33 cmsis_nn_context ctx; in fully_connected_int16_arm_fully_connected_s16() local 68 ctx.buf = malloc(buf_size); in fully_connected_int16_arm_fully_connected_s16() 69 ctx.size = buf_size; in fully_connected_int16_arm_fully_connected_s16() 71 arm_cmsis_nn_status result = arm_fully_connected_s16(&ctx, in fully_connected_int16_arm_fully_connected_s16() 83 if (ctx.buf) in fully_connected_int16_arm_fully_connected_s16() 86 memset(ctx.buf, 0, buf_size); in fully_connected_int16_arm_fully_connected_s16() 87 free(ctx.buf); in fully_connected_int16_arm_fully_connected_s16() 98 cmsis_nn_context ctx; in fully_connected_int16_big_arm_fully_connected_s16() local 133 ctx.buf = malloc(buf_size); in fully_connected_int16_big_arm_fully_connected_s16() 134 ctx.size = buf_size; in fully_connected_int16_big_arm_fully_connected_s16() [all …]
|
/cmsis-nn-3.6.0-3.5.0/Tests/UnitTest/TestCases/test_arm_depthwise_conv_fast_s16/ |
D | test_arm_depthwise_conv_fast_s16.c | 39 cmsis_nn_context ctx; in dw_int16xint8_fast_arm_depthwise_conv_fast_s16() local 80 ctx.buf = malloc(buf_size); in dw_int16xint8_fast_arm_depthwise_conv_fast_s16() 82 arm_cmsis_nn_status result = arm_depthwise_conv_fast_s16(&ctx, in dw_int16xint8_fast_arm_depthwise_conv_fast_s16() 94 if (ctx.buf) in dw_int16xint8_fast_arm_depthwise_conv_fast_s16() 97 memset(ctx.buf, 0, buf_size); in dw_int16xint8_fast_arm_depthwise_conv_fast_s16() 98 free(ctx.buf); in dw_int16xint8_fast_arm_depthwise_conv_fast_s16() 108 ctx.buf = malloc(buf_size); in dw_int16xint8_fast_arm_depthwise_conv_fast_s16() 110 result = arm_depthwise_conv_wrapper_s16(&ctx, in dw_int16xint8_fast_arm_depthwise_conv_fast_s16() 122 if (ctx.buf) in dw_int16xint8_fast_arm_depthwise_conv_fast_s16() 124 memset(ctx.buf, 0, buf_size); in dw_int16xint8_fast_arm_depthwise_conv_fast_s16() [all …]
|
/cmsis-nn-3.6.0-3.5.0/Tests/UnitTest/TestCases/test_arm_convolve_s16/ |
D | test_arm_convolve_s16.c | 36 cmsis_nn_context ctx; in int16xint8_arm_convolve_s16() local 75 ctx.buf = malloc(buf_size); in int16xint8_arm_convolve_s16() 77 arm_cmsis_nn_status result = arm_convolve_s16(&ctx, in int16xint8_arm_convolve_s16() 88 if (ctx.buf) in int16xint8_arm_convolve_s16() 91 memset(ctx.buf, 0, buf_size); in int16xint8_arm_convolve_s16() 92 free(ctx.buf); in int16xint8_arm_convolve_s16() 99 ctx.buf = malloc(buf_size); in int16xint8_arm_convolve_s16() 101 result = arm_convolve_wrapper_s16(&ctx, in int16xint8_arm_convolve_s16() 113 if (ctx.buf) in int16xint8_arm_convolve_s16() 115 memset(ctx.buf, 0, buf_size); in int16xint8_arm_convolve_s16() [all …]
|
/cmsis-nn-3.6.0-3.5.0/Tests/UnitTest/TestCases/test_arm_depthwise_conv_s16/ |
D | test_arm_depthwise_conv_s16.c | 32 cmsis_nn_context ctx; in dw_int16xint8_arm_depthwise_conv_s16() local 72 ctx.buf = NULL; in dw_int16xint8_arm_depthwise_conv_s16() 73 ctx.size = 0; in dw_int16xint8_arm_depthwise_conv_s16() 75 arm_cmsis_nn_status result = arm_depthwise_conv_s16(&ctx, in dw_int16xint8_arm_depthwise_conv_s16() 86 if (ctx.buf) in dw_int16xint8_arm_depthwise_conv_s16() 89 memset(ctx.buf, 0, ctx.size); in dw_int16xint8_arm_depthwise_conv_s16() 90 free(ctx.buf); in dw_int16xint8_arm_depthwise_conv_s16() 101 ctx.buf = malloc(buf_size); in dw_int16xint8_arm_depthwise_conv_s16() 103 result = arm_depthwise_conv_wrapper_s16(&ctx, in dw_int16xint8_arm_depthwise_conv_s16() 115 if (ctx.buf) in dw_int16xint8_arm_depthwise_conv_s16() [all …]
|
/cmsis-nn-3.6.0-3.5.0/Source/ConvolutionFunctions/ |
D | arm_convolve_wrapper_s16.c | 50 arm_cmsis_nn_status arm_convolve_wrapper_s16(const cmsis_nn_context *ctx, in arm_convolve_wrapper_s16() argument 66 return arm_convolve_fast_s16(ctx, in arm_convolve_wrapper_s16() 80 return arm_convolve_s16(ctx, in arm_convolve_wrapper_s16() 93 return arm_convolve_s16(ctx, in arm_convolve_wrapper_s16()
|
D | arm_convolve_wrapper_s8.c | 50 arm_cmsis_nn_status arm_convolve_wrapper_s8(const cmsis_nn_context *ctx, in arm_convolve_wrapper_s8() argument 67 return arm_convolve_1x1_s8_fast(ctx, in arm_convolve_wrapper_s8() 81 return arm_convolve_1x1_s8(ctx, in arm_convolve_wrapper_s8() 97 return arm_convolve_1_x_n_s8(ctx, in arm_convolve_wrapper_s8() 111 return arm_convolve_s8(ctx, in arm_convolve_wrapper_s8()
|
D | arm_depthwise_conv_wrapper_s16.c | 50 arm_cmsis_nn_status arm_depthwise_conv_wrapper_s16(const cmsis_nn_context *ctx, in arm_depthwise_conv_wrapper_s16() argument 66 status = arm_depthwise_conv_fast_s16(ctx, in arm_depthwise_conv_wrapper_s16() 80 status = arm_depthwise_conv_s16(ctx, in arm_depthwise_conv_wrapper_s16()
|
D | arm_depthwise_conv_wrapper_s8.c | 49 arm_cmsis_nn_status arm_depthwise_conv_wrapper_s8(const cmsis_nn_context *ctx, in arm_depthwise_conv_wrapper_s8() argument 69 status = arm_depthwise_conv_3x3_s8(ctx, in arm_depthwise_conv_wrapper_s8() 84 status = arm_depthwise_conv_s8_opt(ctx, in arm_depthwise_conv_wrapper_s8() 99 status = arm_depthwise_conv_s8(ctx, in arm_depthwise_conv_wrapper_s8()
|
/cmsis-nn-3.6.0-3.5.0/Tests/UnitTest/TestCases/test_arm_convolve_fast_s16/ |
D | test_arm_convolve_fast_s16.c | 33 cmsis_nn_context ctx; in int16xint8_arm_convolve_fast_s16() local 72 ctx.buf = malloc(buf_size); in int16xint8_arm_convolve_fast_s16() 74 arm_cmsis_nn_status result = arm_convolve_wrapper_s16(&ctx, in int16xint8_arm_convolve_fast_s16() 85 if (ctx.buf) in int16xint8_arm_convolve_fast_s16() 88 memset(ctx.buf, 0, buf_size); in int16xint8_arm_convolve_fast_s16() 89 free(ctx.buf); in int16xint8_arm_convolve_fast_s16() 97 ctx.buf = malloc(buf_size); in int16xint8_arm_convolve_fast_s16() 99 result = arm_convolve_fast_s16(&ctx, in int16xint8_arm_convolve_fast_s16() 110 if (ctx.buf) in int16xint8_arm_convolve_fast_s16() 112 memset(ctx.buf, 0, buf_size); in int16xint8_arm_convolve_fast_s16() [all …]
|
/cmsis-nn-3.6.0-3.5.0/Tests/UnitTest/TestCases/test_arm_convolve_1x1_s8_fast/ |
D | test_arm_convolve_1x1_s8_fast.c | 35 cmsis_nn_context ctx; in kernel1x1_arm_convolve_1x1_s8_fast() local 77 ctx.buf = malloc(buf_size); in kernel1x1_arm_convolve_1x1_s8_fast() 78 ctx.size = 0; in kernel1x1_arm_convolve_1x1_s8_fast() 80 arm_cmsis_nn_status result = arm_convolve_1x1_s8_fast(&ctx, in kernel1x1_arm_convolve_1x1_s8_fast() 92 if (ctx.buf) in kernel1x1_arm_convolve_1x1_s8_fast() 95 memset(ctx.buf, 0, buf_size); in kernel1x1_arm_convolve_1x1_s8_fast() 96 free(ctx.buf); in kernel1x1_arm_convolve_1x1_s8_fast() 107 cmsis_nn_context ctx; in kernel1x1_stride_x_arm_convolve_1x1_s8() local 151 ctx.buf = NULL; in kernel1x1_stride_x_arm_convolve_1x1_s8() 152 ctx.size = 0; in kernel1x1_stride_x_arm_convolve_1x1_s8() [all …]
|
/cmsis-nn-3.6.0-3.5.0/Tests/UnitTest/TestCases/test_arm_max_pool_s8/ |
D | test_arm_max_pool_s8.c | 39 cmsis_nn_context ctx; in maxpooling_arm_max_pool_s8() local 68 … arm_max_pool_s8(&ctx, &pool_params, &input_dims, input_data, &filter_dims, &output_dims, output); in maxpooling_arm_max_pool_s8() 80 cmsis_nn_context ctx; in maxpooling_1_arm_max_pool_s8() local 109 … arm_max_pool_s8(&ctx, &pool_params, &input_dims, input_data, &filter_dims, &output_dims, output); in maxpooling_1_arm_max_pool_s8() 121 cmsis_nn_context ctx; in maxpooling_2_arm_max_pool_s8() local 150 … arm_max_pool_s8(&ctx, &pool_params, &input_dims, input_data, &filter_dims, &output_dims, output); in maxpooling_2_arm_max_pool_s8() 162 cmsis_nn_context ctx; in maxpooling_3_arm_max_pool_s8() local 191 … arm_max_pool_s8(&ctx, &pool_params, &input_dims, input_data, &filter_dims, &output_dims, output); in maxpooling_3_arm_max_pool_s8() 203 cmsis_nn_context ctx; in maxpooling_4_arm_max_pool_s8() local 232 … arm_max_pool_s8(&ctx, &pool_params, &input_dims, input_data, &filter_dims, &output_dims, output); in maxpooling_4_arm_max_pool_s8() [all …]
|
/cmsis-nn-3.6.0-3.5.0/Tests/UnitTest/TestCases/test_arm_ds_cnn_s_s8/ |
D | test_arm_ds_cnn_s_s8.c | 109 cmsis_nn_context ctx; in ds_cnn_s_s8_inference() local 112 ctx.size = ds_cnn_s_s8_get_buffer_size(); in ds_cnn_s_s8_inference() 113 ctx.buf = malloc(ctx.size); in ds_cnn_s_s8_inference() 159 arm_cmsis_nn_status status = arm_convolve_wrapper_s8(&ctx, in ds_cnn_s_s8_inference() 202 status |= arm_depthwise_conv_wrapper_s8(&ctx, in ds_cnn_s_s8_inference() 235 status |= arm_convolve_wrapper_s8(&ctx, in ds_cnn_s_s8_inference() 255 status |= arm_depthwise_conv_wrapper_s8(&ctx, in ds_cnn_s_s8_inference() 274 status |= arm_convolve_wrapper_s8(&ctx, in ds_cnn_s_s8_inference() 294 status |= arm_depthwise_conv_wrapper_s8(&ctx, in ds_cnn_s_s8_inference() 312 status |= arm_convolve_wrapper_s8(&ctx, in ds_cnn_s_s8_inference() [all …]
|
/cmsis-nn-3.6.0-3.5.0/Source/FullyConnectedFunctions/ |
D | arm_fully_connected_s16.c | 49 arm_cmsis_nn_status arm_fully_connected_s16(const cmsis_nn_context *ctx, in arm_fully_connected_s16() argument 62 (void)ctx; in arm_fully_connected_s16()
|
D | arm_fully_connected_s8.c | 50 arm_cmsis_nn_status arm_fully_connected_s8(const cmsis_nn_context *ctx, in arm_fully_connected_s8() argument 63 (void)ctx; in arm_fully_connected_s8()
|
/cmsis-nn-3.6.0-3.5.0/Tests/UnitTest/TestCases/test_arm_ds_cnn_l_s8/ |
D | test_arm_ds_cnn_l_s8.c | 130 cmsis_nn_context ctx; in ds_cnn_l_s8_inference() local 133 ctx.size = ds_cnn_l_s8_get_buffer_size(); in ds_cnn_l_s8_inference() 134 ctx.buf = malloc(ctx.size); in ds_cnn_l_s8_inference() 180 arm_cmsis_nn_status status = arm_convolve_wrapper_s8(&ctx, in ds_cnn_l_s8_inference() 220 status |= arm_depthwise_conv_wrapper_s8(&ctx, in ds_cnn_l_s8_inference() 253 status |= arm_convolve_wrapper_s8(&ctx, in ds_cnn_l_s8_inference() 279 status |= arm_depthwise_conv_wrapper_s8(&ctx, in ds_cnn_l_s8_inference() 298 status |= arm_convolve_wrapper_s8(&ctx, in ds_cnn_l_s8_inference() 318 status |= arm_depthwise_conv_wrapper_s8(&ctx, in ds_cnn_l_s8_inference() 336 status |= arm_convolve_wrapper_s8(&ctx, in ds_cnn_l_s8_inference() [all …]
|
/cmsis-nn-3.6.0-3.5.0/Include/ |
D | arm_nnfunctions.h | 167 arm_cmsis_nn_status arm_convolve_wrapper_s8(const cmsis_nn_context *ctx, 251 arm_cmsis_nn_status arm_convolve_wrapper_s16(const cmsis_nn_context *ctx, 335 arm_cmsis_nn_status arm_convolve_s8(const cmsis_nn_context *ctx, 385 arm_cmsis_nn_status arm_convolve_s16(const cmsis_nn_context *ctx, 426 arm_cmsis_nn_status arm_convolve_fast_s16(const cmsis_nn_context *ctx, 491 arm_cmsis_nn_status arm_convolve_1x1_s8_fast(const cmsis_nn_context *ctx, 540 arm_cmsis_nn_status arm_convolve_1x1_s8(const cmsis_nn_context *ctx, 589 arm_cmsis_nn_status arm_convolve_1_x_n_s8(const cmsis_nn_context *ctx, 648 arm_cmsis_nn_status arm_depthwise_conv_wrapper_s8(const cmsis_nn_context *ctx, 733 arm_cmsis_nn_status arm_depthwise_conv_s8(const cmsis_nn_context *ctx, [all …]
|
/cmsis-nn-3.6.0-3.5.0/Tests/UnitTest/TestCases/test_arm_max_pool_s16/ |
D | test_arm_max_pool_s16.c | 34 cmsis_nn_context ctx; in maxpool_int16_arm_max_pool_s16() local 63 … arm_max_pool_s16(&ctx, &pool_params, &input_dims, input_data, &filter_dims, &output_dims, output); in maxpool_int16_arm_max_pool_s16() 75 cmsis_nn_context ctx; in maxpool_int16_1_arm_max_pool_s16() local 104 … arm_max_pool_s16(&ctx, &pool_params, &input_dims, input_data, &filter_dims, &output_dims, output); in maxpool_int16_1_arm_max_pool_s16() 116 cmsis_nn_context ctx; in maxpool_int16_2_arm_max_pool_s16() local 145 … arm_max_pool_s16(&ctx, &pool_params, &input_dims, input_data, &filter_dims, &output_dims, output); in maxpool_int16_2_arm_max_pool_s16()
|