Lines Matching refs:int8_t

39 const int8_t avgpooling_2_input[60] = {
45 const int8_t avgpooling_2_output_ref[60] = {
53 int8_t output[AVGPOOLING_2_DST_SIZE] = {0}; in ZTEST()
120 const int8_t conv_4_weights[54] = {
125 const int8_t conv_4_input[225] = {
147 const int8_t conv_4_output_ref[36] = {-5, -39, -31, 20, -37, -26, -109, -7, -10, -51, -58, 48,
153 int8_t output[CONV_4_DST_SIZE] = {0}; in ZTEST()
164 const int8_t *kernel_data = conv_4_weights; in ZTEST()
165 const int8_t *input_data = conv_4_input; in ZTEST()
259 const int8_t stride2pad1_weights[9] = {-54, 57, -19, -127, 87, 70, 74, -110, 66};
261 const int8_t stride2pad1_input[49] = {
270 const int8_t stride2pad1_output_ref[16] = {26, -11, 33, -25, -96, -52, -78, -86,
275 int8_t output[STRIDE2PAD1_DST_SIZE] = {0}; in ZTEST()
286 const int8_t *kernel_data = stride2pad1_weights; in ZTEST()
287 const int8_t *input_data = stride2pad1_input; in ZTEST()
353 const int8_t fully_connected_mve_0_input[16] = {-43, 68, 79, -12, -119, -56, -102, -46,
356 const int8_t fully_connected_mve_0_output_ref[9] = {-9, -3, 26, 8, 3, -88, 75, 34, 5};
358 const int8_t fully_connected_mve_0_weights[144] = {
371 int8_t output[FULLY_CONNECTED_MVE_0_DST_SIZE] = {0}; in ZTEST()
382 const int8_t *kernel_data = fully_connected_mve_0_weights; in ZTEST()
383 const int8_t *input_data = fully_connected_mve_0_input; in ZTEST()
442 const int8_t maxpooling_2_input[60] = {
448 const int8_t maxpooling_2_output_ref[60] = {
456 int8_t output[MAXPOOLING_2_DST_SIZE] = {0}; in ZTEST()
464 const int8_t *input_data = maxpooling_2_input; in ZTEST()
501 const int8_t softmax_input[10] = {101, 49, 6, -34, -75, -79, -38, 120, -55, 115};
503 const int8_t softmax_output_ref[10] = {-57, -70, -79, -86, -92, -94, -88, -54, -91, -56};
512 const int8_t *input_data = softmax_input; in ZTEST()
513 int8_t output[SOFTMAX_DST_SIZE]; in ZTEST()
544 const int8_t svdf_2_weights_feature[70] = {
554 const int8_t svdf_2_input_sequence[42] = {
559 const int8_t svdf_2_output_ref[15] = {-53, 45, 27, -24, -53, 26, -82, -38,
588 int8_t output_data[SVDF_2_DST_SIZE]; in ZTEST()
590 const int8_t *weights_feature_data = svdf_2_weights_feature; in ZTEST()
620 int8_t *input_data = malloc(input_round_size); in ZTEST()