summaryrefslogtreecommitdiff
path: root/gr-trellis/lib/viterbi_combined_impl.cc
blob: 73cf50153d06d937794d560633d4a368dc886b6c (plain)
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/* -*- c++ -*- */
/*
 * Copyright 2004,2010,2012,2018 Free Software Foundation, Inc.
 *
 * This file is part of GNU Radio
 *
 * SPDX-License-Identifier: GPL-3.0-or-later
 *
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include "viterbi_combined_impl.h"
#include <gnuradio/io_signature.h>
#include <iostream>

namespace gr {
namespace trellis {

template <class IN_T, class OUT_T>
typename viterbi_combined<IN_T, OUT_T>::sptr
viterbi_combined<IN_T, OUT_T>::make(const fsm& FSM,
                                    int K,
                                    int S0,
                                    int SK,
                                    int D,
                                    const std::vector<IN_T>& TABLE,
                                    digital::trellis_metric_type_t TYPE)
{
    return gnuradio::get_initial_sptr(
        new viterbi_combined_impl<IN_T, OUT_T>(FSM, K, S0, SK, D, TABLE, TYPE));
}

template <class IN_T, class OUT_T>
viterbi_combined_impl<IN_T, OUT_T>::viterbi_combined_impl(
    const fsm& FSM,
    int K,
    int S0,
    int SK,
    int D,
    const std::vector<IN_T>& TABLE,
    digital::trellis_metric_type_t TYPE)
    : block("viterbi_combined<IN_T,OUT_T>",
            io_signature::make(1, -1, sizeof(IN_T)),
            io_signature::make(1, -1, sizeof(OUT_T))),
      d_FSM(FSM),
      d_K(K),
      d_S0(S0),
      d_SK(SK),
      d_D(D),
      d_TABLE(TABLE),
      d_TYPE(TYPE) //,
                   // d_trace(FSM.S()*K)
{
    this->set_relative_rate(1, (uint64_t)d_D);
    this->set_output_multiple(d_K);
}

template <class IN_T, class OUT_T>
void viterbi_combined_impl<IN_T, OUT_T>::set_K(int K)
{
    gr::thread::scoped_lock guard(this->d_setlock);
    d_K = K;
    this->set_output_multiple(d_K);
}

template <class IN_T, class OUT_T>
void viterbi_combined_impl<IN_T, OUT_T>::set_D(int D)
{
    gr::thread::scoped_lock guard(this->d_setlock);
    d_D = D;
    this->set_relative_rate(1, (uint64_t)d_D);
}

template <class IN_T, class OUT_T>
void viterbi_combined_impl<IN_T, OUT_T>::set_FSM(const fsm& FSM)
{
    gr::thread::scoped_lock guard(this->d_setlock);
    d_FSM = FSM;
}

template <class IN_T, class OUT_T>
void viterbi_combined_impl<IN_T, OUT_T>::set_S0(int S0)
{
    gr::thread::scoped_lock guard(this->d_setlock);
    d_S0 = S0;
}

template <class IN_T, class OUT_T>
void viterbi_combined_impl<IN_T, OUT_T>::set_SK(int SK)
{
    gr::thread::scoped_lock guard(this->d_setlock);
    d_SK = SK;
}

template <class IN_T, class OUT_T>
void viterbi_combined_impl<IN_T, OUT_T>::set_TYPE(digital::trellis_metric_type_t type)
{
    gr::thread::scoped_lock guard(this->d_setlock);
    d_TYPE = type;
}

template <class IN_T, class OUT_T>
void viterbi_combined_impl<IN_T, OUT_T>::set_TABLE(const std::vector<IN_T>& table)
{
    gr::thread::scoped_lock guard(this->d_setlock);
    d_TABLE = table;
}

template <class IN_T, class OUT_T>
viterbi_combined_impl<IN_T, OUT_T>::~viterbi_combined_impl()
{
}

template <class IN_T, class OUT_T>
void viterbi_combined_impl<IN_T, OUT_T>::forecast(int noutput_items,
                                                  gr_vector_int& ninput_items_required)
{
    int input_required = d_D * noutput_items;
    unsigned ninputs = ninput_items_required.size();
    for (unsigned int i = 0; i < ninputs; i++) {
        ninput_items_required[i] = input_required;
    }
}

template <class IN_T, class OUT_T>
int viterbi_combined_impl<IN_T, OUT_T>::general_work(
    int noutput_items,
    gr_vector_int& ninput_items,
    gr_vector_const_void_star& input_items,
    gr_vector_void_star& output_items)
{
    gr::thread::scoped_lock guard(this->d_setlock);
    int nstreams = input_items.size();
    int nblocks = noutput_items / d_K;

    for (int m = 0; m < nstreams; m++) {
        const IN_T* in = (const IN_T*)input_items[m];
        OUT_T* out = (OUT_T*)output_items[m];

        for (int n = 0; n < nblocks; n++) {
            viterbi_algorithm_combined(d_FSM.I(),
                                       d_FSM.S(),
                                       d_FSM.O(),
                                       d_FSM.NS(),
                                       d_FSM.OS(),
                                       d_FSM.PS(),
                                       d_FSM.PI(),
                                       d_K,
                                       d_S0,
                                       d_SK,
                                       d_D,
                                       d_TABLE,
                                       d_TYPE,
                                       &(in[n * d_K * d_D]),
                                       &(out[n * d_K]));
        }
    }

    this->consume_each(d_D * noutput_items);
    return noutput_items;
}

template class viterbi_combined<std::int16_t, std::uint8_t>;
template class viterbi_combined<std::int16_t, std::int16_t>;
template class viterbi_combined<std::int16_t, std::int32_t>;
template class viterbi_combined<std::int32_t, std::uint8_t>;
template class viterbi_combined<std::int32_t, std::int16_t>;
template class viterbi_combined<std::int32_t, std::int32_t>;
template class viterbi_combined<float, std::uint8_t>;
template class viterbi_combined<float, std::int16_t>;
template class viterbi_combined<float, std::int32_t>;
template class viterbi_combined<gr_complex, std::uint8_t>;
template class viterbi_combined<gr_complex, std::int16_t>;
template class viterbi_combined<gr_complex, std::int32_t>;


} /* namespace trellis */
} /* namespace gr */