summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-06-14volk: fixes for 32f dot_prodTom Rondeau
Accepts num_points like everything else and handles splitting up numbers itself, not expected to be done externally. Adds AVX version, both aligned and unaligned.
2012-06-13volk: dot_produce for floats does 16 at a time.Tom Rondeau
This was done to make this have the same performance as float_dotprod from before. This makes all flavors of the 32f dotprod work the same way. Because it's expecting the input to have 4x more samples than specified, it's making qa for these fail.
2012-06-13filter wip and probably squash with last.Tom Rondeau
Removing unecessary d_offset counter from fir_filter.
2012-06-13filter: process 4 vectors each time in volk dot_prod to speed up fir filters.Tom Rondeau
This makes the volk version of the SSE FIR filter the same speed as using the hand-crafted float_dotprod from before.
2012-06-10filter: Fixed filter_delay and hilbert filter to work with aligned filter loads.Tom Rondeau
2012-06-10filter: working aligned taps loads for regular and decimating filter.Tom Rondeau
Has working QA code but needs significant performance improvements.
2012-06-10filter: adding ccf version for adaptive filter.Tom Rondeau
2012-05-09filter: wip: working on adaptive FIR filter. Moved ccc and created parent ↵Tom Rondeau
class that is not a gr_block.
2012-05-08filter: created polyphase_filterbank parent class to handle some ↵Tom Rondeau
initialization and setting taps of PFB blocks. Converted pfb_channelizer_ccf over to new parent class. Passes QA.
2012-05-08filter: copied over pfb_channelizer to gr-filter with QA and GRC.Tom Rondeau
2012-05-07filter: fixed typo.Tom Rondeau
2012-05-06filter: added fir_filter_with_buffer to gr-filter.Tom Rondeau
Only fff and ccc versions so far. Needs work on Volk to be followed from fir_filter.
2012-05-06filter: added filter_delay_fc to gr-filter with QA and GRC files.Tom Rondeau
2012-05-06filter: some cleanup with the dc_blocker code.Tom Rondeau
2012-05-06filter: moved dc_blocker to gr-filter with QA and GRC blocks.Tom Rondeau
2012-05-05filter: added hilbert xform block with QA and GRC block.Tom Rondeau
2012-05-05filter: actually run the C++ unit tests.Tom Rondeau
2012-05-05filter: added Parks-McClellen algorithm.Tom Rondeau
Renamed gr_remez to pm_remez here. Added QA code and fixed coding style.
2012-05-05filter: cleanup and moving calls from gr.firdes to filter.firdes.Tom Rondeau
2012-05-05filter: added firdes for generating FIR filters to gr-filter.Tom Rondeau
Addes QA code in both Python and C++.
2012-05-03filter: added GRC block for FFT filters. Fixed example install.Tom Rondeau
2012-05-03filter: improved documentation for fft_filters.Tom Rondeau
2012-05-03filter: preparing to handle alignment better in FIR filters.Tom Rondeau
2012-05-02filter: fixed fft_filter tests.Tom Rondeau
2012-05-02filter: adding fff version of FFT filter.Tom Rondeau
2012-05-02filter: fixed FIR filter taps and added complex FFT filter.Tom Rondeau
2012-05-02filter: Reworking filter to have a set of basic implementation classes for ↵Tom Rondeau
filters of different kinds. The GR blocks are templated now and call from fir_filters for the volk-specific implemenation. Note the modification to build_utils.py to accomodate these changes.
2012-05-02filter: adding examples folder.Tom Rondeau
First example compares old filter in gr to new one in filter.
2012-05-02filter: fixing up fir_filter_fff to handle taps appropriately, also does ↵Tom Rondeau
decimation.
2012-05-02fft: export the FFTW malloc and free helper functions.Tom Rondeau
2012-05-02build: reworking cmake structure for include and lib directories. I think ↵Tom Rondeau
this is cleaner. We also probably don't need the link_directories (according to the cmake guys, this is no longer necessary).
2012-05-01filter: work on creating gr-filter top-level component.Tom Rondeau
Builds but does not bring in libgnuradio-fft.so symbols.
2012-05-01fft: enabling doc and grc subdirs.Tom Rondeau
2012-04-30Merge branch 'maint'Johnathan Corgan
2012-04-30gruel: fix linker assumption made explicit on Ubuntu 12.04Tim Oshea
2012-04-30Merge branch 'gr_fft'Johnathan Corgan
2012-04-29fft: put helper classes in namespaceJohnathan Corgan
2012-04-29fft: make interface functions pure virtualJohnathan Corgan
2012-04-27gr-fft: creates a gr-fft top-level component.Tom Rondeau
2012-04-27Merge branch 'maint'Johnathan Corgan
2012-04-26gr-uhd: updated USRP Sink and USRP Source help messagesNicholas Corgan
2012-04-24Merge branch 'maint'Tom Rondeau
2012-04-24uhd: updating/fixing WBFM example.Marcus Leech
2012-04-24cmake: make a find portaudio that follows the rulesJosh Blum
2012-04-23Merge remote branch 'jblum-github/volk_work'Johnathan Corgan
2012-04-23Merge remote branch 'jblum-github/volk_work'Johnathan Corgan
2012-04-23Merge branch 'maint'Tom Rondeau
2012-04-23Various fixes for using Python 2.5.Tom Rondeau
2012-04-23volk: force kwargs keys to be of type str, not unicode for py25Josh Blum
2012-04-23Merge remote branch 'ncorgan/gr-uhd_swig-stuff'Johnathan Corgan