GNU Radio Manual and C++ API Reference 3.10.5.1
The Free & Open Software Radio Ecosystem
adaptive_algorithm_lms.h
Go to the documentation of this file.
1/* -*- c++ -*- */
2/*
3 * Copyright 2020 Free Software Foundation, Inc.
4 *
5 * This file is part of GNU Radio
6 *
7 * SPDX-License-Identifier: GPL-3.0-or-later
8 *
9 */
10
11#ifndef INCLUDED_DIGITAL_ADAPTIVE_ALGORITHM_LMS_H
12#define INCLUDED_DIGITAL_ADAPTIVE_ALGORITHM_LMS_H
13
15#include <volk/volk.h>
16#include <volk/volk_alloc.hh>
17
18namespace gr {
19namespace digital {
20
22{
23public:
24 typedef std::shared_ptr<adaptive_algorithm_lms> sptr;
25
26private:
27 const float d_step_size;
28
29protected:
30 adaptive_algorithm_lms(constellation_sptr cons, float step_size)
31 : adaptive_algorithm(adaptive_algorithm_t::LMS, cons), d_step_size(step_size)
32 {
33 }
34
35public:
36 static sptr make(constellation_sptr cons, float step_size)
37 {
39 }
40
42
44 const gr_complex* in,
45 const gr_complex error,
46 const gr_complex decision,
47 unsigned int num_taps) override
48 {
49 volk::vector<gr_complex> prod_vector(num_taps), conj_vector(num_taps);
50
51 gr_complex err_x_mu = d_step_size * error;
52
53 volk_32fc_conjugate_32fc(conj_vector.data(), in, num_taps);
54 volk_32fc_s32fc_multiply_32fc(
55 prod_vector.data(), conj_vector.data(), err_x_mu, num_taps);
56 volk_32fc_x2_add_32fc(taps, taps, prod_vector.data(), num_taps);
57 }
58
60 const gr_complex& u_n,
61 const gr_complex err,
62 const gr_complex decision) override
63 {
64 return conj(conj(tap) + d_step_size * u_n * conj(err));
65 }
66
67 void initialize_taps(std::vector<gr_complex>& taps) override
68 {
69 std::fill(taps.begin(), taps.end(), gr_complex(0.0, 0.0));
70 }
71};
72
73} // namespace digital
74} // namespace gr
75
76#endif
Definition: adaptive_algorithm_lms.h:22
std::shared_ptr< adaptive_algorithm_lms > sptr
Definition: adaptive_algorithm_lms.h:24
adaptive_algorithm_lms(constellation_sptr cons, float step_size)
Definition: adaptive_algorithm_lms.h:30
gr_complex update_tap(const gr_complex tap, const gr_complex &u_n, const gr_complex err, const gr_complex decision) override
Definition: adaptive_algorithm_lms.h:59
static sptr make(constellation_sptr cons, float step_size)
Definition: adaptive_algorithm_lms.h:36
~adaptive_algorithm_lms() override
Definition: adaptive_algorithm_lms.h:41
void initialize_taps(std::vector< gr_complex > &taps) override
Definition: adaptive_algorithm_lms.h:67
void update_taps(gr_complex *taps, const gr_complex *in, const gr_complex error, const gr_complex decision, unsigned int num_taps) override
Definition: adaptive_algorithm_lms.h:43
Definition: adaptive_algorithm.h:30
#define DIGITAL_API
Definition: gr-digital/include/gnuradio/digital/api.h:18
std::complex< float > gr_complex
Definition: gr_complex.h:15
static constexpr float taps[NSTEPS+1][NTAPS]
Definition: interpolator_taps.h:9
adaptive_algorithm_t
Definition: adaptive_algorithm.h:23
GNU Radio logging wrapper.
Definition: basic_block.h:29
PMT_API pmt_t cons(const pmt_t &x, const pmt_t &y)
Return a newly allocated pair whose car is x and whose cdr is y.