This base class handles alignment issues common to SSE and 3DNOW subclasses. More...
#include <gr_fir_fsf_simd.h>


Public Member Functions | |
| gr_fir_fsf_simd () | |
| gr_fir_fsf_simd (const std::vector< float > &taps) | |
| ~gr_fir_fsf_simd () | |
| virtual void | set_taps (const std::vector< float > &taps) |
install new_taps as the current taps. | |
| virtual short | filter (const float input[]) |
| compute a single output value. | |
Protected Types | |
| typedef float(* | float_dotprod_t )(const float *input, const float *taps, unsigned n_4_float_blocks) |
Protected Attributes | |
| float * | d_aligned_taps [4] |
| float_dotprod_t | d_float_dotprod |
This base class handles alignment issues common to SSE and 3DNOW subclasses.
typedef float(* gr_fir_fsf_simd::float_dotprod_t)(const float *input, const float *taps, unsigned n_4_float_blocks) [protected] |
| gr_fir_fsf_simd::gr_fir_fsf_simd | ( | ) |
| gr_fir_fsf_simd::gr_fir_fsf_simd | ( | const std::vector< float > & | taps | ) |
| gr_fir_fsf_simd::~gr_fir_fsf_simd | ( | ) |
| virtual short gr_fir_fsf_simd::filter | ( | const float | input[] | ) | [virtual] |
| virtual void gr_fir_fsf_simd::set_taps | ( | const std::vector< float > & | taps | ) | [virtual] |
float* gr_fir_fsf_simd::d_aligned_taps[4] [protected] |
aligned_taps holds 4 copies of the coefficients preshifted by 0, 1, 2, or 3 floats to meet all possible input data alignments. This allows us to always fetch data and taps that are 128-bit aligned.
float_dotprod_t gr_fir_fsf_simd::d_float_dotprod [protected] |
1.5.8