summaryrefslogtreecommitdiff
path: root/gnuradio-core/src/lib/gengen/generate_common.py
Commit message (Collapse)AuthorAgeFilesLines
* blocks: converting references to vector source/sink, null source/sink, nop, ↵Tom Rondeau2013-03-171-60/+0
| | | | copy, head, skiphead, vector_map, and annotator blocks to use gr-blocks.
* blocks: removing blocks moved into gr-blocks:Tom Rondeau2013-03-061-18/+0
| | | | message_strobe, message_debug, message_source, message_sink, message_burst_source, peak_detector, moving_average.
* blocks: removing mute, probe_signal, probe_signal_v, and sample_and_hold.Tom Rondeau2013-03-021-6/+0
|
* blocks: removing references to argmax and max.Tom Rondeau2013-02-281-2/+0
|
* blocks: removing blocks from gnuradio-core.Tom Rondeau2013-02-211-2/+0
| | | | delay, rms, packed_to_unpacked, unpacked_to_packed.
* blocks: removes blocks moved to gr-blocks from gnuradio-core.Tom Rondeau2012-12-211-15/+0
| | | | Also fixes up some other missing moves.
* analog: removed noise and sig sources from core.Tom Rondeau2012-11-101-2/+0
| | | | Fixed QA code for components that do not use gr-analog.
* core: removed gr_chunks_to_symbols_XX after move to gr-digitalJohnathan Corgan2012-06-061-1/+0
|
* Removed whitespace and added dtools/bin/remove-whitespace as a tool to do ↵Tom Rondeau2012-04-131-7/+7
| | | | | | this in the future. The sed script was provided by Moritz Fischer.
* Merge branch 'probe'Tom Rondeau2012-03-131-1/+5
|\
| * core: adding new probe_signal from gengen into autotools build.Tom Rondeau2012-03-131-1/+5
| |
* | build: fix autotools for gnuradio-core volkificationJohnathan Corgan2012-02-141-1/+1
| |
* | core: added volk version of add_ff.Tom Rondeau2012-02-131-2/+2
| |
* | core: new multiply_const_ff and multiply_ff blocks done using Volk.Tom Rondeau2012-02-131-1/+1
| |
* | core: moving multiply_const_ff from gengen to general to take advantage of volk.Tom Rondeau2012-02-131-1/+1
| | | | | | | | Also adds SSE and AVX and unaligned Volk versions for this.
* | core: moving multiply_cc and multiply_const_cc out of gengen and into ↵Tom Rondeau2012-02-021-3/+3
|/ | | | | | general so they can make use of volk calls. QA code now explicitly tests the cc versions of these blocks.
* Merged r10666:10669 from jblum/vlen. Trunk passes distcheck.jblum2009-03-241-2/+0
| | | | git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10678 221aa14e-8319-0410-a670-987f0aec2ac5
* Merged r10539:10546 from michaelld/two_mods into trunk. Trunk passes distcheck.jcorgan2009-03-031-1/+2
| | | | git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10551 221aa14e-8319-0410-a670-987f0aec2ac5
* efficient moving average filters, should speed up OFDM significantlymatt2008-07-211-0/+1
| | | | git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@8965 221aa14e-8319-0410-a670-987f0aec2ac5
* Adds gr.integrate_XX for ss, ii, ff, and cc. Sums successive samples and ↵jcorgan2008-04-121-0/+1
| | | | | | decimates. Trunk passes distcheck. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@8190 221aa14e-8319-0410-a670-987f0aec2ac5
* Merged Tim Meehan's gr.and_*, gr.not_*, and gr.or_* blocks. Passes distcheck.jcorgan2008-02-191-0/+3
| | | | git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@7739 221aa14e-8319-0410-a670-987f0aec2ac5
* Merged r7732:7734 from jcorgan/boolean into trunk. Add's Tim Meehan's ↵jcorgan2008-02-181-1/+2
| | | | | | gr.xor_* blocks. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@7735 221aa14e-8319-0410-a670-987f0aec2ac5
* Updated license from GPL version 2 or later to GPL version 3 or later.eb2007-07-211-1/+1
| | | | git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@6044 221aa14e-8319-0410-a670-987f0aec2ac5
* merge ordm/receiver branch -r5574:5659. Reworks OFDM receiver with ↵trondeau2007-06-041-1/+1
| | | | | | refactored OFDM blocks. A few bug fixes for other blocks have also been slipped in. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@5661 221aa14e-8319-0410-a670-987f0aec2ac5
* added Trond's gr_max_* and gr_argmax_* blockseb2007-05-301-1/+3
| | | | git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@5575 221aa14e-8319-0410-a670-987f0aec2ac5
* Merged r4518:5130 from developer branch n4hy/ofdm into trunk, passes distcheck.jcorgan2007-04-261-3/+5
| | | | | | | | Adds incomplete OFDM implementation, further work to be completed in the features/ofdm branch. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@5131 221aa14e-8319-0410-a670-987f0aec2ac5
* SWIG compilation speedup! Fixes ticket:9. eb2007-01-131-0/+93
Merged -r4203:4254 from eb/swig-split into trunk. This refactors gnuradio_swig_python.{cc,py} into 5 separate .so's These correspond to the runtime, general, filter and io directories, and also includes a new directory, gengen. gengen contains that part of general that was machine generated. This split is arbitrary, but was useful for getting size of the swig generated glue code for general down to about 2MB. In addition, the swig glue is now compiled with -g1 -O1 instead of -g -O2. With this change all the swig code now compiles in about 60% of the time that it used to take. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@4255 221aa14e-8319-0410-a670-987f0aec2ac5