1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
/* -*- c++ -*- */
/*
* Copyright 2020 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifndef INCLUDED_DIGITAL_ADAPTIVE_ALGORITHM_CMA_H
#define INCLUDED_DIGITAL_ADAPTIVE_ALGORITHM_CMA_H
#include <gnuradio/digital/adaptive_algorithm.h>
#include <volk/volk.h>
#include <volk/volk_alloc.hh>
namespace gr {
namespace digital {
class DIGITAL_API adaptive_algorithm_cma : public adaptive_algorithm
{
public:
typedef std::shared_ptr<adaptive_algorithm_cma> sptr;
private:
const float d_step_size;
const float d_modulus;
protected:
adaptive_algorithm_cma(constellation_sptr cons, float step_size, float modulus)
: adaptive_algorithm(adaptive_algorithm_t::CMA, cons),
d_step_size(step_size),
d_modulus(modulus)
{
}
public:
static sptr make(constellation_sptr cons, float step_size, float modulus)
{
return adaptive_algorithm_cma::sptr(
new adaptive_algorithm_cma(cons, step_size, modulus));
}
gr_complex error(const gr_complex& out) const
{
gr_complex error = out * (norm(out) - d_modulus);
float re = gr::clip(error.real(), 1.0);
float im = gr::clip(error.imag(), 1.0);
return gr_complex(re, im);
}
gr_complex error_dd(gr_complex& u_n, gr_complex& decision) const override
{
return error(u_n);
}
gr_complex error_tr(const gr_complex& u_n, const gr_complex& d_n) const override
{
return error(u_n);
}
void update_taps(gr_complex* taps,
const gr_complex* in,
const gr_complex error,
const gr_complex decision,
unsigned int num_taps) override
{
volk::vector<gr_complex> prod_vector(num_taps), conj_vector(num_taps);
gr_complex err_x_mu = -d_step_size * error;
volk_32fc_conjugate_32fc(conj_vector.data(), in, num_taps);
volk_32fc_s32fc_multiply_32fc(
prod_vector.data(), conj_vector.data(), err_x_mu, num_taps);
volk_32fc_x2_add_32fc(taps, taps, prod_vector.data(), num_taps);
}
gr_complex update_tap(const gr_complex tap,
const gr_complex& u_n,
const gr_complex err,
const gr_complex decision) override
{
return conj(conj(tap) - d_step_size * u_n * conj(err));
}
~adaptive_algorithm_cma() override {}
};
} // namespace digital
} // namespace gr
#endif
|