GNU Radio Manual and C++ API Reference  3.10.9.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 
18 namespace gr {
19 namespace digital {
20 
22 {
23 public:
24  typedef std::shared_ptr<adaptive_algorithm_lms> sptr;
25 
26 private:
27  const float d_step_size;
28 
29 protected:
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 
35 public:
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 #if VOLK_VERSION >= 030100
55  volk_32fc_s32fc_multiply2_32fc(
56  prod_vector.data(), conj_vector.data(), &err_x_mu, num_taps);
57 #else
58  volk_32fc_s32fc_multiply_32fc(
59  prod_vector.data(), conj_vector.data(), err_x_mu, num_taps);
60 #endif
61  volk_32fc_x2_add_32fc(taps, taps, prod_vector.data(), num_taps);
62  }
63 
65  const gr_complex& u_n,
66  const gr_complex err,
67  const gr_complex decision) override
68  {
69  return conj(conj(tap) + d_step_size * u_n * conj(err));
70  }
71 
72  void initialize_taps(std::vector<gr_complex>& taps) override
73  {
74  std::fill(taps.begin(), taps.end(), gr_complex(0.0, 0.0));
75  }
76 };
77 
78 } // namespace digital
79 } // namespace gr
80 
81 #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:64
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:72
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.