[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] branch master updated (aae6445 -> 45faa98)
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] branch master updated (aae6445 -> 45faa98) |
Date: |
Wed, 23 Sep 2015 14:51:35 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
jcorgan pushed a change to branch master
in repository gnuradio.
from aae6445 Update to fec.dox to fix Introduction heading
new 649cf8c grc: no block alias param for Options blocks
new 7df835e Merge branch 'maint'
new edd7be6 Fix the VOLKized fft_vcc_fftw and QA code
new af0a2f4 Merge remote-tracking branch 'geiger/volkize_fft_fix'
new cfa67cb volk: update submodule to latest
new 8586a1f grc: defer check for gtk init until after arg parsing
new ffbd9d9 Merge remote-tracking branch
'gnuradio-wg-grc/master_grcwg'
new 8ac5a86 polar: Python test code for polar codes
new 87670ad polar: encoder implemented in C++
new 1359280 polar: SC and SC List decoder implemented in C++
new 8b48605 polar: Python implementation for channel construction
new 73d84a2 polar: VOLK kernel integration
new d9719d7 polar: refarctoring and clean-up
new f9a6900 polar: updated polar code example GRC
new f848bb4 polar: updated VOLK pointer to volk/volk/master with
polar kernels merged
new 48e1ab0 polar: fixed bugs in init code
new 39ce33f polar: rebased and fixed branch for merge again.
new 3474fcc polar: updated documentation and examples
new fa027dd polar: updated documentation and examples
new aa47616 fec: polar: moving polar codes into ::code:: namespace
like the others.
new 9df0fda fec: polar: whitespace fixes/tabs to go along with
namespace change from last commit.
new 65c31b5 fec: polar: renaming GRC file names to be consistent with
other codes and variable names.
new a527ab8 Merge branch 'socis/master' into polar
new f28eef2 polar: rearranged polar_code_example flowgraph
new ad3a02f fec: polar: Installing more FEC examples.
new 45faa98 Merge remote-tracking branch 'tom/socis/master'
The 26 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
.gitignore | 3 +
README | 150 +-
README.md | 23 +
gr-fec/doc/fec.dox | 3 +
gr-fec/examples/.gitignore | 3 +
gr-fec/examples/CMakeLists.txt | 6 +
.../fecapi_polar_async_packed_decoders.grc | 1626 +++++++++++
gr-fec/examples/fecapi_polar_decoders.grc | 2102 ++++++++++++++
gr-fec/examples/fecapi_polar_encoders.grc | 1808 ++++++++++++
gr-fec/examples/polar_ber_curve_gen.grc | 1602 +++++++++++
gr-fec/examples/polar_code_example.grc | 3022 ++++++++++++++++++++
gr-fec/grc/fec_block_tree.xml | 4 +
gr-fec/grc/variable_polar_code_configurator.xml | 51 +
gr-fec/grc/variable_polar_decoder_sc.xml | 74 +
gr-fec/grc/variable_polar_decoder_sc_list.xml | 80 +
gr-fec/grc/variable_polar_encoder.xml | 89 +
gr-fec/include/gnuradio/fec/CMakeLists.txt | 6 +-
gr-fec/include/gnuradio/fec/polar_common.h | 106 +
gr-fec/include/gnuradio/fec/polar_decoder_common.h | 100 +
gr-fec/include/gnuradio/fec/polar_decoder_sc.h | 84 +
.../include/gnuradio/fec/polar_decoder_sc_list.h | 94 +
gr-fec/include/gnuradio/fec/polar_encoder.h | 120 +
gr-fec/lib/CMakeLists.txt | 8 +-
gr-fec/lib/polar_common.cc | 136 +
gr-fec/lib/polar_decoder_common.cc | 193 ++
gr-fec/lib/polar_decoder_sc.cc | 97 +
gr-fec/lib/polar_decoder_sc_list.cc | 123 +
gr-fec/lib/polar_encoder.cc | 234 ++
gr-fec/lib/scl_list.cc | 193 ++
gr-fec/lib/scl_list.h | 87 +
gr-fec/python/fec/CMakeLists.txt | 2 +
.../{examples => python/fec/polar}/CMakeLists.txt | 33 +-
gr-fec/python/fec/polar/README.md | 9 +
gr-fec/python/fec/polar/__init__.py | 64 +
.../polar/bit_reversed_polar_encoding_scheme.svg | 1160 ++++++++
gr-fec/python/fec/polar/channel_construction.py | 139 +
.../python/fec/polar/channel_construction_bec.py | 115 +
.../python/fec/polar/channel_construction_bsc.py | 280 ++
gr-fec/python/fec/polar/common.py | 69 +
gr-fec/python/fec/polar/decoder.py | 269 ++
gr-fec/python/fec/polar/encoder.py | 114 +
gr-fec/python/fec/polar/helper_functions.py | 169 ++
gr-fec/python/fec/polar/polar_channel_construction | 76 +
gr-fec/python/fec/polar/testbed.py | 360 +++
gr-fec/python/fec/qa_polar_decoder_sc.py | 121 +
gr-fec/python/fec/qa_polar_decoder_sc_list.py | 130 +
gr-fec/python/fec/qa_polar_encoder.py | 125 +
gr-fec/swig/fec_swig.i | 10 +
gr-fft/lib/fft_vcc_fftw.cc | 4 +-
gr-fft/python/fft/qa_fft.py | 64 +-
grc/base/Block.py | 14 +-
grc/scripts/gnuradio-companion | 64 +-
volk | 2 +-
53 files changed, 15424 insertions(+), 196 deletions(-)
create mode 100644 README.md
create mode 100644 gr-fec/examples/.gitignore
create mode 100644 gr-fec/examples/fecapi_polar_async_packed_decoders.grc
create mode 100644 gr-fec/examples/fecapi_polar_decoders.grc
create mode 100644 gr-fec/examples/fecapi_polar_encoders.grc
create mode 100644 gr-fec/examples/polar_ber_curve_gen.grc
create mode 100644 gr-fec/examples/polar_code_example.grc
create mode 100644 gr-fec/grc/variable_polar_code_configurator.xml
create mode 100644 gr-fec/grc/variable_polar_decoder_sc.xml
create mode 100644 gr-fec/grc/variable_polar_decoder_sc_list.xml
create mode 100644 gr-fec/grc/variable_polar_encoder.xml
create mode 100644 gr-fec/include/gnuradio/fec/polar_common.h
create mode 100644 gr-fec/include/gnuradio/fec/polar_decoder_common.h
create mode 100644 gr-fec/include/gnuradio/fec/polar_decoder_sc.h
create mode 100644 gr-fec/include/gnuradio/fec/polar_decoder_sc_list.h
create mode 100644 gr-fec/include/gnuradio/fec/polar_encoder.h
create mode 100644 gr-fec/lib/polar_common.cc
create mode 100644 gr-fec/lib/polar_decoder_common.cc
create mode 100644 gr-fec/lib/polar_decoder_sc.cc
create mode 100644 gr-fec/lib/polar_decoder_sc_list.cc
create mode 100644 gr-fec/lib/polar_encoder.cc
create mode 100644 gr-fec/lib/scl_list.cc
create mode 100644 gr-fec/lib/scl_list.h
copy gr-fec/{examples => python/fec/polar}/CMakeLists.txt (63%)
create mode 100644 gr-fec/python/fec/polar/README.md
create mode 100644 gr-fec/python/fec/polar/__init__.py
create mode 100644
gr-fec/python/fec/polar/bit_reversed_polar_encoding_scheme.svg
create mode 100644 gr-fec/python/fec/polar/channel_construction.py
create mode 100644 gr-fec/python/fec/polar/channel_construction_bec.py
create mode 100755 gr-fec/python/fec/polar/channel_construction_bsc.py
create mode 100644 gr-fec/python/fec/polar/common.py
create mode 100644 gr-fec/python/fec/polar/decoder.py
create mode 100644 gr-fec/python/fec/polar/encoder.py
create mode 100644 gr-fec/python/fec/polar/helper_functions.py
create mode 100644 gr-fec/python/fec/polar/polar_channel_construction
create mode 100755 gr-fec/python/fec/polar/testbed.py
create mode 100644 gr-fec/python/fec/qa_polar_decoder_sc.py
create mode 100644 gr-fec/python/fec/qa_polar_decoder_sc_list.py
create mode 100644 gr-fec/python/fec/qa_polar_encoder.py
- [Commit-gnuradio] [gnuradio] branch master updated (aae6445 -> 45faa98),
git <=
- [Commit-gnuradio] [gnuradio] 08/25: polar: updated VOLK pointer to volk/volk/master with polar kernels merged, git, 2015/09/23
- [Commit-gnuradio] [gnuradio] 17/25: fec: polar: renaming GRC file names to be consistent with other codes and variable names., git, 2015/09/23
- [Commit-gnuradio] [gnuradio] 20/25: fec: polar: Installing more FEC examples., git, 2015/09/23
- [Commit-gnuradio] [gnuradio] 09/25: polar: fixed bugs in init code, git, 2015/09/23
- [Commit-gnuradio] [gnuradio] 12/25: Fix the VOLKized fft_vcc_fftw and QA code, git, 2015/09/23
- [Commit-gnuradio] [gnuradio] 23/25: volk: update submodule to latest, git, 2015/09/23
- [Commit-gnuradio] [gnuradio] 11/25: grc: defer check for gtk init until after arg parsing, git, 2015/09/23
- [Commit-gnuradio] [gnuradio] 18/25: Merge branch 'socis/master' into polar, git, 2015/09/23
- [Commit-gnuradio] [gnuradio] 22/25: Merge remote-tracking branch 'geiger/volkize_fft_fix', git, 2015/09/23
- [Commit-gnuradio] [gnuradio] 10/25: polar: rebased and fixed branch for merge again., git, 2015/09/23