summaryrefslogtreecommitdiff
path: root/gr-digital/python/digital/bindings/chunks_to_symbols_python.cc
Commit message (Collapse)AuthorAgeFilesLines
* digital/chunks to symbols: be less inefficientMarcus Müller2021-07-271-1/+1
| | | | | | | | | | | | | The block formerly took the tags from get_tags_in_range (which are sorted), gave them to tag_checker, which sorted them, and then went through every input sample, checking its index against the next tag. Removed the tag_checker; that saves us a sorting of a sorted vector. The other optimization is to not dispatch any tag encountered to the own message handler; instead, the handler is called directly. Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
* pybind: add hash check to binding file creation (#3472)mormj2020-06-041-1/+9
|
* digital: add pybind11 bindingsJosh Morman2020-06-041-0/+50