summaryrefslogtreecommitdiff
path: root/gr-blocks/lib/add_const_ff_impl.cc
Commit message (Collapse)AuthorAgeFilesLines
* Replace all calls to `get_initial_sptr` with `make_block_sptr`Thomas Habets2020-07-301-1/+1
| | | | | | | | | | | | | | First batch of changes: ``` find […] -print0 | xargs -0 sed -i -r '/get_initial_sptr/{:nxt N;/;/!b nxt;s/get_initial_sptr\(\s*new ([^(]+)(.*)\)\)/make_block_sptr<\1>\2)/}' ``` Then: * Back out `sptr_magic.h` edits * Change some `friend` clauses * clang-format the whole thing * Update checksums in the pybind11 bindings files
* Update license header to SPDX formatdevnulling2020-01-271-13/+1
|
* gr-blocks: VOLKize add_const_ff implementationGrant Cox2020-01-041-14/+12
| | | | | | | | | | | | - Use volk_32fc_x2_add_32fc to volk add constants to the input vector of the block - use volk::vector in add_const_ff_impl: Rather than using float* for variable length vector addition in volk, use volk::vector<float> for easier resizing. - Use scoped_lock when modifying private data members in add_const_ff_impl.cc. Remove getter functions for the d_k_copy vector. Cast with static_cast rather than typical cast. Use vector.data() rather than &vector[0].
* Tree: clang-format without the include sortingMarcus Müller2019-08-091-60/+61
|
* includes: use quotes for local includesAndrej Rode2019-01-071-1/+1
|
* ctrlport: blocks: added controlport support to add_const_XX blocks.Tom Rondeau2015-10-161-0/+103
Removed add_const_XX template concept and reimplemented as separate blocks for bb, ss, ii, ff, and cc support. The work functions should be converted into VOLK calls.