summaryrefslogtreecommitdiff
path: root/gnuradio-core
AgeCommit message (Collapse)Author
2012-02-14Merge branch 'master' into safe_alignJohnathan Corgan
Conflicts: gnuradio-core/src/lib/filter/gr_fft_filter_ccc.cc gnuradio-core/src/lib/filter/gr_fft_filter_fff.cc
2012-02-13core: change alignment requirement.Tom Rondeau
2012-02-13core: reverting float_to_int to non-Volk due to precision/wrapping issues.Tom Rondeau
Using the Volk function causes too much of a change in the output values right now. Will have to relook at it for the right thing to do. Keeping the use of vlen and scale, though.
2012-02-13core: fixed alignment call for char_to_short.Tom Rondeau
2012-02-13core: using volk for conjugate block and added QA code for it.Tom Rondeau
2012-02-13core: added Volk-optimized gr_multiply_conjugate_cc at one block with QA code.Tom Rondeau
2012-02-13core: added volk version of add_ff.Tom Rondeau
2012-02-13core: new multiply_const_ff and multiply_ff blocks done using Volk.Tom Rondeau
2012-02-13sched: some added protections and checks for the alignment states.Tom Rondeau
2012-02-13core: moving multiply_const_ff from gengen to general to take advantage of volk.Tom Rondeau
Also adds SSE and AVX and unaligned Volk versions for this.
2012-02-07Merge branch 'maint'Tom Rondeau
2012-02-07docs: better handling of html only for formulas.Tom Rondeau
2012-02-06gui: better handling of buffers in oscope for stripchart/non-stripchart.Marcus Leech
2012-02-06Merge branch 'maint'Tom Rondeau
2012-02-06core: updated missed vfc version of fft block to use nthreads.Tom Rondeau
Also updates copyright dates.
2012-02-06docs: fixed some markup of formulas between html and xml (and therefore the ↵Tom Rondeau
swigdocs).
2012-02-06core: fix a warning.Tom Rondeau
2012-02-06core: expose nthreads setting through to fft_filters.Tom Rondeau
Can set nthreads as last arg to filter; defaults to 1 so no change in default behavior.
2012-02-06core: expose nthreads capabilities to gr_fft_vcc.Tom Rondeau
Can set and get nthreads; defaults to 1, so no change in default behavior.
2012-02-06core: add functions to set/get nthreads of gri FFT object.Tom Rondeau
2012-02-06core: enable use of fftw's threading capabilities.Marcus Leech
Can set nthreads when creating an fftw class; defaults to 1, so there's no change in default behavior.
2012-02-06Merge branch 'maint'Tom Rondeau
2012-02-06io: fix triggering and performance issues with oscope; specifically for the ↵Marcus Leech
strip-chart features.
2012-02-02core: more fixes when moving files from gengen to general.Tom Rondeau
2012-02-02core: moving multiply_cc and multiply_const_cc out of gengen and into ↵Tom Rondeau
general so they can make use of volk calls. QA code now explicitly tests the cc versions of these blocks.
2012-02-02sched: better working alignment handling.Tom Rondeau
Works with max_noutput_items and set_output_multiple.
2012-01-30core: redo fft_filter (complex and float) with Volk.Tom Rondeau
No need for sse implementation now but keeping code for reference.
2012-01-30core: fixing up complex_to_xxx for using Volk where appropriate. Speed ↵Tom Rondeau
benchmark were used to decide which implementation to use.
2012-01-30core: complex_to_xxx (float, real, imag, arg) to volk.Tom Rondeau
2012-01-29core: minor edits.Tom Rondeau
2012-01-29core: switched complex to mag and mag_squared to use Volk functions.Tom Rondeau
2012-01-28core: update Makefile.am for new type converters.Tom Rondeau
2012-01-28core: more type converters in Volk; adding char_to_short converter.Tom Rondeau
2012-01-28core: more conversion work to Volk for type converters.Tom Rondeau
2012-01-28core: QA codes for float_to_X and short_to_X (note: float_to_int needs work).Tom Rondeau
2012-01-28core: cleanup short_to_float.Tom Rondeau
2012-01-28core: short_to_X: adding short_to_char block using Volk; made Volk version ↵Tom Rondeau
of short_to_float.
2012-01-28core: minor tweaks to float_to_XTom Rondeau
2012-01-28volk: cleaned up float_to_X to be Volk-only and added vlen and scale to ↵Tom Rondeau
constructor to set the vector length and a free scaling with the data.
2012-01-26QA: type converter QA codes added and updated for Volk. Some small ↵Tom Rondeau
differences between Volk and non-Volk for rounding issues are made here.
2012-01-26core: moved float_to_X type converters over to use Volk calls.Tom Rondeau
2012-01-25Merge branch 'maint'Johnathan Corgan
2012-01-25core: fix floor ambiguous overload in vcc fftwJosh Blum
The msvc compiler doesnt like the ambiguous overload of floor. However, floor should not have an effect on the integer divide anyway.
2012-01-23sched: better comments. Handling of noutput_items adjustment done better and ↵Tom Rondeau
documented.
2012-01-23build: look for local volk headers instead of installed.Tom Rondeau
2012-01-22sched: forgot to turn debugging off.Tom Rondeau
2012-01-22core: test case of using Volk to convert from float to short.Tom Rondeau
2012-01-22core: link to Volk.Tom Rondeau
2012-01-22sched: first attempt at working with aligned data sets. A block has an ↵Tom Rondeau
indicator on whether or not the buffers are aligned; they can use this to determine which Volk function to use or if to use Volk at all.
2012-01-19Merge branch 'maint'Tom Rondeau