This commit is contained in:
2026-05-06 20:17:26 +07:00
parent 801dac9328
commit d6a8619e70
589 changed files with 3132 additions and 2405 deletions
@@ -0,0 +1,90 @@
// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include <string.h>
#include "unity.h"
#include "esp_dsp.h"
#include "dsp_platform.h"
#include "esp_log.h"
#include <malloc.h>
#include "dspm_mult.h"
#include "esp_attr.h"
#include "dsp_tests.h"
static const char *TAG = "dspm_mult_mxn_1xm_int8_ansi";
// Test dspm_mult_mxn_1xm_int8_ansi functionality
TEST_CASE("dspm_mult_mxn_1xm_int8_ansi functionality", "[dspm]")
{
int m = 32;
int n = 32;
int8_t *A = (int8_t *)memalign(16, m * n * sizeof(int8_t));
int8_t *B = (int8_t *)memalign(16, n * sizeof(int8_t));
int32_t *C = (int32_t *)memalign(16, m * sizeof(int32_t));
for (int i = 0 ; i < m; i++) {
for (int j = 0 ; j < n; j++) {
A[i * n + j] = i;
}
}
for (int i = 0 ; i < n; i++) {
B[i] = 1;
}
dspm_mult_mxn_1xm_int8_ansi(A, B, C, m, n);
for (int i = 0 ; i < m ; i++) {
ESP_LOGD(TAG, "C[%i] calc=%i, expected =%i", i, (int)C[i], i * n);
TEST_ASSERT_EQUAL(i * n, C[i]);
}
free(A);
free(B);
free(C);
}
TEST_CASE("dspm_mult_mxn_1xm_int8_ansi benchmark", "[dspm]")
{
int m = 128;
int n = 128;
int8_t *A = (int8_t *)memalign(16, m * n * sizeof(int8_t));
int8_t *B = (int8_t *)memalign(16, n * sizeof(int8_t));
int32_t *C = (int32_t *)memalign(16, m * sizeof(int32_t));
for (int i = 0 ; i < m; i++) {
for (int j = 0 ; j < n; j++) {
A[i * n + j] = i;
}
}
for (int i = 0 ; i < n; i++) {
B[i] = 1;
}
int check_m_max[] = {16, 32, 64, 128};
for (int i = 0 ; i < sizeof(check_m_max) / sizeof(check_m_max[0]) ; i++) {
int m = check_m_max[i];
int n = check_m_max[i];
unsigned int start_b = dsp_get_cpu_cycle_count();
int repeat_count = 128;
for (int i = 0 ; i < repeat_count ; i++) {
dspm_mult_mxn_1xm_int8_ansi(A, B, C, m, n);
}
unsigned int end_b = dsp_get_cpu_cycle_count();
float cycles = end_b - start_b;
ESP_LOGI(TAG, "dspm_mult_mxn_1xm_int8_ansi - %f cycles per row for %d columns", cycles / repeat_count / m, n);
}
free(A);
free(B);
free(C);
}