add some code
This commit is contained in:
@@ -0,0 +1,103 @@
|
||||
// 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_tone_gen.h"
|
||||
#include "dsps_d_gen.h"
|
||||
#include "dsps_biquad_gen.h"
|
||||
#include "dsps_biquad.h"
|
||||
|
||||
static const char *TAG = "dsps_biquad_f32";
|
||||
static const int bq_len = 1024;
|
||||
TEST_CASE("dsps_biquad_f32 functionality", "[dsps]")
|
||||
{
|
||||
float *x = calloc(bq_len, sizeof(float));
|
||||
float *y = calloc(bq_len, sizeof(float));
|
||||
float *z = calloc(bq_len, sizeof(float));
|
||||
|
||||
// In the test we generate filter with cutt off frequency 0.1
|
||||
// and then filtering 0.1 and 0.3 frequencis.
|
||||
// Result must be better then 24 dB
|
||||
int len = bq_len;
|
||||
|
||||
dsps_d_gen_f32(x, len, 0);
|
||||
float coeffs[5];
|
||||
float w1[2] = {0};
|
||||
float w2[2] = {0};
|
||||
dsps_biquad_gen_lpf_f32(coeffs, 0.1, 1);
|
||||
dsps_biquad_f32(x, y, len, coeffs, w1);
|
||||
dsps_biquad_f32_ansi(x, z, len, coeffs, w2);
|
||||
|
||||
for (int i = 0 ; i < 32 ; i++) {
|
||||
if (y[i] != z[i]) {
|
||||
ESP_LOGI(TAG, "[%i]calc = %f, expected=%f", i, y[i], z[i]);
|
||||
TEST_ASSERT_EQUAL( y[i] * 100000, z[i] * 100000);
|
||||
}
|
||||
}
|
||||
free(x);
|
||||
free(y);
|
||||
free(z);
|
||||
}
|
||||
|
||||
TEST_CASE("dsps_biquad_f32 benchmark", "[dsps]")
|
||||
{
|
||||
float *x = calloc(bq_len, sizeof(float));
|
||||
float *y = calloc(bq_len, sizeof(float));
|
||||
float *z = calloc(bq_len, sizeof(float));
|
||||
|
||||
float w1[2] = {0};
|
||||
int len = bq_len;
|
||||
int repeat_count = 1024;
|
||||
dsps_d_gen_f32(x, len, 0);
|
||||
float coeffs[5];
|
||||
dsps_biquad_gen_lpf_f32(coeffs, 0.1, 1);
|
||||
|
||||
|
||||
unsigned int start_b = dsp_get_cpu_cycle_count();
|
||||
for (int i = 0 ; i < repeat_count ; i++) {
|
||||
dsps_biquad_f32(x, y, len, coeffs, w1);
|
||||
}
|
||||
unsigned int end_b = dsp_get_cpu_cycle_count();
|
||||
|
||||
float total_b = end_b - start_b;
|
||||
float cycles = total_b / (len * repeat_count);
|
||||
|
||||
start_b = dsp_get_cpu_cycle_count();
|
||||
for (int i = 0 ; i < repeat_count ; i++) {
|
||||
dsps_biquad_f32_ansi(x, y, len, coeffs, w1);
|
||||
}
|
||||
end_b = dsp_get_cpu_cycle_count();
|
||||
float total_b_ansi = end_b - start_b;
|
||||
float cycles_ansi = total_b_ansi / (len * repeat_count);
|
||||
|
||||
ESP_LOGI(TAG, "dsps_biquad_f32 - %f per sample\n", cycles);
|
||||
ESP_LOGI(TAG, "dsps_biquad_f32_ansi - %f per sample\n", cycles_ansi);
|
||||
// float min_exec = 10;
|
||||
// float max_exec = 20;
|
||||
// if (cycles >= max_exec) {
|
||||
// TEST_ASSERT_MESSAGE (false, "Exec time takes more than expected!");
|
||||
// }
|
||||
// if (cycles < min_exec) {
|
||||
// TEST_ASSERT_MESSAGE (false, "Exec time takes less then expected!");
|
||||
// }
|
||||
free(x);
|
||||
free(y);
|
||||
free(z);
|
||||
|
||||
}
|
||||
@@ -0,0 +1,63 @@
|
||||
// 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 "dsps_tone_gen.h"
|
||||
#include "dsps_d_gen.h"
|
||||
#include "dsps_biquad_gen.h"
|
||||
#include "dsps_biquad.h"
|
||||
|
||||
static const char *TAG = "dsps_biquad_f32_ansi";
|
||||
|
||||
float x[1024];
|
||||
float y[1024];
|
||||
|
||||
TEST_CASE("dsps_biquad_f32_ansi functionality", "[dsps]")
|
||||
{
|
||||
// In the test we generate filter with cutt off frequency 0.1
|
||||
// and then filtering 0.1 and 0.3 frequencis.
|
||||
// Result must be better then 24 dB
|
||||
int len = sizeof(x) / sizeof(float);
|
||||
|
||||
dsps_tone_gen_f32(x, len, 1, 0.1, 0);
|
||||
|
||||
float coeffs[5];
|
||||
float w1[2] = {0};
|
||||
float w2[2] = {0};
|
||||
dsps_biquad_gen_lpf_f32(coeffs, 0.1, 1);
|
||||
dsps_biquad_f32_ansi(x, y, len, coeffs, w1);
|
||||
float pow_band = 0;
|
||||
for (int i = len / 2 ; i < len ; i++) {
|
||||
pow_band += y[i] * y[i];
|
||||
}
|
||||
float pow_out_band = 0;
|
||||
dsps_tone_gen_f32(x, len, 1, 0.3, 0);
|
||||
dsps_biquad_f32_ansi(x, y, len, coeffs, w2);
|
||||
for (int i = len / 2 ; i < len ; i++) {
|
||||
pow_out_band += y[i] * y[i];
|
||||
}
|
||||
pow_band = 2 * pow_band / (float)len;
|
||||
pow_out_band = 2 * pow_out_band / (float)len;
|
||||
float diff_db = -10 * log10f(0.000000001 + pow_out_band / pow_band);
|
||||
ESP_LOGI(TAG, "Power: pass =%f, stop= %f, diff = %f dB", pow_band, pow_out_band, diff_db);
|
||||
|
||||
if (diff_db < 24) {
|
||||
ESP_LOGE(TAG, "Attenuation for LPF must be not less then 24! Now it is: %f", diff_db);
|
||||
TEST_ASSERT_MESSAGE (false, "LPF attenuation is less then expected");
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,104 @@
|
||||
// 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_tone_gen.h"
|
||||
#include "dsps_d_gen.h"
|
||||
#include "dsps_biquad_gen.h"
|
||||
#include "dsps_biquad.h"
|
||||
|
||||
static const char *TAG = "dsps_biquad_sf32";
|
||||
static const int bq_len = 1024;
|
||||
TEST_CASE("dsps_biquad_sf32 functionality", "[dsps]")
|
||||
{
|
||||
float *x = calloc(bq_len * 2, sizeof(float));
|
||||
float *y = calloc(bq_len * 2, sizeof(float));
|
||||
float *z = calloc(bq_len * 2, sizeof(float));
|
||||
|
||||
// In the test we generate filter with cutt off frequency 0.1
|
||||
// and then filtering 0.1 and 0.3 frequencis.
|
||||
// Result must be better then 24 dB
|
||||
int len = bq_len;
|
||||
|
||||
dsps_d_gen_f32(x, len * 2, 0);
|
||||
x[1] = 1;
|
||||
float coeffs[5];
|
||||
float w1[4] = {0};
|
||||
float w2[4] = {0};
|
||||
dsps_biquad_gen_lpf_f32(coeffs, 0.1, 1);
|
||||
dsps_biquad_sf32(x, y, len, coeffs, w1);
|
||||
dsps_biquad_sf32_ansi(x, z, len, coeffs, w2);
|
||||
|
||||
for (int i = 0 ; i < 32 * 2 ; i++) {
|
||||
if (y[i] != z[i]) {
|
||||
ESP_LOGI(TAG, "[%i]calc = %f, expected=%f", i, y[i], z[i]);
|
||||
//TEST_ASSERT_EQUAL( y[i] * 100000, z[i] * 100000);
|
||||
}
|
||||
}
|
||||
free(x);
|
||||
free(y);
|
||||
free(z);
|
||||
}
|
||||
|
||||
TEST_CASE("dsps_biquad_sf32 benchmark", "[dsps]")
|
||||
{
|
||||
float *x = calloc(bq_len * 2, sizeof(float));
|
||||
float *y = calloc(bq_len * 2, sizeof(float));
|
||||
float *z = calloc(bq_len * 2, sizeof(float));
|
||||
|
||||
float w1[4] = {0};
|
||||
int len = bq_len;
|
||||
int repeat_count = 1024;
|
||||
dsps_d_gen_f32(x, len * 2, 0);
|
||||
float coeffs[5];
|
||||
dsps_biquad_gen_lpf_f32(coeffs, 0.1, 1);
|
||||
|
||||
|
||||
unsigned int start_b = dsp_get_cpu_cycle_count();
|
||||
for (int i = 0 ; i < repeat_count ; i++) {
|
||||
dsps_biquad_sf32(x, y, len, coeffs, w1);
|
||||
}
|
||||
unsigned int end_b = dsp_get_cpu_cycle_count();
|
||||
|
||||
float total_b = end_b - start_b;
|
||||
float cycles = total_b / (len * repeat_count);
|
||||
|
||||
start_b = dsp_get_cpu_cycle_count();
|
||||
for (int i = 0 ; i < repeat_count ; i++) {
|
||||
dsps_biquad_sf32_ansi(x, y, len, coeffs, w1);
|
||||
}
|
||||
end_b = dsp_get_cpu_cycle_count();
|
||||
float total_b_ansi = end_b - start_b;
|
||||
float cycles_ansi = total_b_ansi / (len * repeat_count);
|
||||
|
||||
ESP_LOGI(TAG, "dsps_biquad_f32 - %f per sample\n", cycles);
|
||||
ESP_LOGI(TAG, "dsps_biquad_f32_ansi - %f per sample\n", cycles_ansi);
|
||||
// float min_exec = 10;
|
||||
// float max_exec = 20;
|
||||
// if (cycles >= max_exec) {
|
||||
// TEST_ASSERT_MESSAGE (false, "Exec time takes more than expected!");
|
||||
// }
|
||||
// if (cycles < min_exec) {
|
||||
// TEST_ASSERT_MESSAGE (false, "Exec time takes less then expected!");
|
||||
// }
|
||||
free(x);
|
||||
free(y);
|
||||
free(z);
|
||||
|
||||
}
|
||||
@@ -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 "dsp_platform.h"
|
||||
#include "esp_log.h"
|
||||
#include "dsp_tests.h"
|
||||
|
||||
#include "dsps_tone_gen.h"
|
||||
#include "dsps_d_gen.h"
|
||||
#include "dsps_biquad_gen.h"
|
||||
#include "dsps_biquad.h"
|
||||
#include <malloc.h>
|
||||
|
||||
static const char *TAG = "dsps_biquad_sf32_ansi";
|
||||
|
||||
TEST_CASE("dsps_biquad_sf32_ansi functionality", "[dsps]")
|
||||
{
|
||||
|
||||
float *x = (float *)memalign(16, sizeof(float) * 1024 * 2);
|
||||
float *y = (float *)memalign(16, sizeof(float) * 1024 * 2);
|
||||
|
||||
// In the test we generate filter with cutt off frequency 0.1
|
||||
// and then filtering 0.1 and 0.3 frequencis.
|
||||
// Result must be better then 24 dB
|
||||
int len = 1024;
|
||||
|
||||
dsps_tone_gen_f32(x, len * 2, 1, 0.1, 0);
|
||||
for (int i = len / 2 ; i < len ; i++) {
|
||||
y[i * 2 + 0] *= 10;
|
||||
y[i * 2 + 1] *= 0.1;
|
||||
}
|
||||
|
||||
float coeffs[5];
|
||||
float w1[4] = {0};
|
||||
float w2[4] = {0};
|
||||
dsps_biquad_gen_lpf_f32(coeffs, 0.1, 1);
|
||||
dsps_biquad_sf32_ansi(x, y, len, coeffs, w1);
|
||||
float pow_band0 = 0;
|
||||
float pow_band1 = 0;
|
||||
for (int i = len / 2 ; i < len ; i++) {
|
||||
pow_band0 += y[i * 2 + 0] * y[i * 2 + 0];
|
||||
pow_band1 += y[i * 2 + 1] * y[i * 2 + 1];
|
||||
}
|
||||
float pow_out_band0 = 0;
|
||||
float pow_out_band1 = 0;
|
||||
dsps_tone_gen_f32(x, len * 2, 1, 0.3, 0);
|
||||
for (int i = len / 2 ; i < len ; i++) {
|
||||
y[i * 2 + 0] *= 10;
|
||||
y[i * 2 + 1] *= 0.1;
|
||||
}
|
||||
dsps_biquad_sf32_ansi(x, y, len, coeffs, w2);
|
||||
for (int i = len / 2 ; i < len ; i++) {
|
||||
pow_out_band0 += y[i * 2 + 0] * y[i * 2 + 0];
|
||||
pow_out_band1 += y[i * 2 + 1] * y[i * 2 + 1];
|
||||
}
|
||||
pow_band0 = 2 * pow_band0 / (float)len;
|
||||
pow_band1 = 2 * pow_band1 / (float)len;
|
||||
pow_out_band0 = 2 * pow_out_band0 / (float)len;
|
||||
pow_out_band1 = 2 * pow_out_band1 / (float)len;
|
||||
float diff0_db = -10 * log10f(0.000000001 + pow_out_band0 / pow_band0);
|
||||
float diff1_db = -10 * log10f(0.000000001 + pow_out_band1 / pow_band1);
|
||||
ESP_LOGI(TAG, "Power0: pass =%f, stop= %f, diff = %f dB", pow_band0, pow_out_band0, diff0_db);
|
||||
ESP_LOGI(TAG, "Power1: pass =%f, stop= %f, diff = %f dB", pow_band1, pow_out_band1, diff1_db);
|
||||
|
||||
if (diff0_db < 24) {
|
||||
ESP_LOGE(TAG, "Attenuation for LPF must be not less then 24! Now it is: %f", diff0_db);
|
||||
TEST_ASSERT_MESSAGE (false, "LPF attenuation is less then expected");
|
||||
}
|
||||
if (diff1_db < 24) {
|
||||
ESP_LOGE(TAG, "Attenuation for HPF must be not less then 24! Now it is: %f", diff1_db);
|
||||
TEST_ASSERT_MESSAGE (false, "HPF attenuation is less then expected");
|
||||
}
|
||||
|
||||
|
||||
free(x);
|
||||
free(y);
|
||||
}
|
||||
Reference in New Issue
Block a user