add some code

This commit is contained in:
2025-09-05 13:25:11 +08:00
parent 9ff0a99e7a
commit 3cf1229a85
8911 changed files with 2535396 additions and 0 deletions

View File

@@ -0,0 +1,70 @@
// 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 "dsp_platform.h"
#include "esp_log.h"
#include "dsp_tests.h"
#include "dsps_mulc.h"
#include "esp_attr.h"
static const char *TAG = "dsps_mulc";
TEST_CASE("dsps_mulc_f32_ansi functionality", "[dsps]")
{
int n = 64;
float x[n];
float y[n];
for (int i = 0 ; i < n ; i++) {
x[i] = i;
y[i] = i * 10;
}
dsps_mulc_f32_ansi(x, x, n, 10, 1, 1);
for (int i = 0 ; i < n ; i++) {
if (x[i] != y[i]) {
TEST_ASSERT_EQUAL(x[i], y[i]);
}
}
}
TEST_CASE("dsps_mulc_f32 functionality", "[dsps]")
{
int n = 64;
float x[n];
float y[n];
for (int i = 0 ; i < n ; i++) {
x[i] = i;
y[i] = i * 10;
}
dsps_mulc_f32(x, x, n, 10, 1, 1);
for (int i = 0 ; i < n ; i++) {
if (x[i] != y[i]) {
TEST_ASSERT_EQUAL(x[i], y[i]);
}
}
int repeat_count = 1;
dsps_mulc_f32(x, x, n, 10, 1, 1);
unsigned int start_b = dsp_get_cpu_cycle_count();
dsps_mulc_f32(x, x, n, 10, 1, 1);
unsigned int end_b = dsp_get_cpu_cycle_count();
float total_b = end_b - start_b;
float cycles = total_b / (n * repeat_count);
ESP_LOGI(TAG, "dsps_mulc_f32 - %f cycles per sample \n", cycles);
}

View File

@@ -0,0 +1,61 @@
// 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 "dsp_platform.h"
#include "esp_log.h"
#include "dsp_tests.h"
#include "dsps_mulc.h"
#include "esp_attr.h"
static const char *TAG = "dsps_mulc";
TEST_CASE("dsps_mulc_s16 functionality", "[dsps]")
{
int n = 64;
int16_t x[n];
int16_t y[n];
int32_t temp;
int16_t test_const = 0x2000;
for (int i = 0 ; i < n ; i++) {
x[i] = i << 4;
temp = (int32_t)x[i] * (int32_t)test_const;
y[i] = temp >> 15;
}
dsps_mulc_s16(x, x, n, test_const, 1, 1);
for (int i = 0 ; i < n ; i++) {
if (x[i] != y[i]) {
TEST_ASSERT_EQUAL(x[i], y[i]);
}
}
}
TEST_CASE("dsps_mulc_s16 benchmark", "[dsps]")
{
const int n = 256;
int16_t x[n];
for (int i = 0 ; i < n ; i++) {
x[i] = i << 4;
}
unsigned int start_b = dsp_get_cpu_cycle_count();
dsps_mulc_s16(x, x, n, 10, 1, 1);
unsigned int end_b = dsp_get_cpu_cycle_count();
float cycles = end_b - start_b;
ESP_LOGI(TAG, "dsps_mulc_s16 - %f cycles per sample \n", cycles);
}

View File

@@ -0,0 +1,61 @@
// 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 "dsp_platform.h"
#include "esp_log.h"
#include "dsp_tests.h"
#include "dsps_mulc.h"
#include "esp_attr.h"
static const char *TAG = "dsps_mulc";
TEST_CASE("dsps_mulc_s16_ansi functionality", "[dsps]")
{
int n = 64;
int16_t x[n];
int16_t y[n];
int32_t temp;
int16_t test_const = 0x2000;
for (int i = 0 ; i < n ; i++) {
x[i] = i << 4;
temp = (int32_t)x[i] * (int32_t)test_const;
y[i] = temp >> 15;
}
dsps_mulc_s16_ansi(x, x, n, test_const, 1, 1);
for (int i = 0 ; i < n ; i++) {
if (x[i] != y[i]) {
TEST_ASSERT_EQUAL(x[i], y[i]);
}
}
}
TEST_CASE("dsps_mulc_s16 benchmark", "[dsps]")
{
const int n = 256;
int16_t x[n];
for (int i = 0 ; i < n ; i++) {
x[i] = i << 4;
}
unsigned int start_b = dsp_get_cpu_cycle_count();
dsps_mulc_s16_ansi(x, x, n, 10, 1, 1);
unsigned int end_b = dsp_get_cpu_cycle_count();
float cycles = end_b - start_b;
ESP_LOGI(TAG, "dsps_mulc_f32 - %f cycles per sample \n", cycles);
}