diff options
author | David Sorber <david.sorber@blacklynx.tech> | 2021-05-12 08:59:21 -0400 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2021-10-25 11:27:01 -0400 |
commit | 788827ae116bef871e144abd39b1e4482208eabe (patch) | |
tree | dcfee04a77db5bb3c8042be5b0b95c54bf8759c9 /gr-blocks/lib | |
parent | b8713810a2d07ac1a632bd7bfb23f3f48f67e222 (diff) |
runtime: Custom Buffer/Accelerator Device Support - Milestone 1
Custom Buffer/Accelerator Device Support - Milestone 1 changes:
* Refactored existing single mapped buffer code and created single
mapped buffer abstraction; wrapping within single mapped buffers
is handled explicitly by input blocked and output blocked
callbacks that are called from block_executor
* Added simple custom buffer allocation interface (NOTE: this
interface will change for milestone 2)
* Accelerated blocks are still responsible for data transfer but the
custom buffer interface eliminates the double copy problem
Signed-off-by: David Sorber <david.sorber@blacklynx.tech>
Diffstat (limited to 'gr-blocks/lib')
-rw-r--r-- | gr-blocks/lib/qa_gr_block.cc | 1 | ||||
-rw-r--r-- | gr-blocks/lib/qa_gr_top_block.cc | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/gr-blocks/lib/qa_gr_block.cc b/gr-blocks/lib/qa_gr_block.cc index ff88902e98..767a252ddb 100644 --- a/gr-blocks/lib/qa_gr_block.cc +++ b/gr-blocks/lib/qa_gr_block.cc @@ -15,6 +15,7 @@ #include <gnuradio/block.h> #include <gnuradio/blocks/null_sink.h> #include <gnuradio/blocks/null_source.h> +#include <gnuradio/buffer_reader.h> #include <boost/test/unit_test.hpp> BOOST_AUTO_TEST_CASE(t0) diff --git a/gr-blocks/lib/qa_gr_top_block.cc b/gr-blocks/lib/qa_gr_top_block.cc index 6a9e0f5467..5374a67220 100644 --- a/gr-blocks/lib/qa_gr_top_block.cc +++ b/gr-blocks/lib/qa_gr_top_block.cc @@ -20,7 +20,7 @@ #include <boost/test/unit_test.hpp> #include <iostream> -#define VERBOSE 0 +#define VERBOSE 1 BOOST_AUTO_TEST_CASE(t0) { @@ -250,6 +250,7 @@ BOOST_AUTO_TEST_CASE(t10_reconfig_max_output_buffer) // Reconfigure with gr_head in the middle tb->lock(); + gr::block_sptr nop = gr::blocks::nop::make(sizeof(int)); nop->set_max_output_buffer(4000); tb->disconnect(src, 0, dst, 0); |