diff options
author | Josh Blum | 2012-09-24 00:08:52 -0400 |
---|---|---|
committer | Josh Blum | 2012-09-24 00:08:52 -0400 |
commit | 060a73191e0f234e69157199c47bdad33c0fa42a (patch) | |
tree | e613bd938ffa0dde81fe81e2f053474ed86f492c /lib/block_allocator.cpp | |
parent | b8e83b3208e2c5297fd0cbe2da463dfaba17f37d (diff) | |
download | sandhi-060a73191e0f234e69157199c47bdad33c0fa42a.tar.gz sandhi-060a73191e0f234e69157199c47bdad33c0fa42a.tar.bz2 sandhi-060a73191e0f234e69157199c47bdad33c0fa42a.zip |
smaller buffers seems to make qa tests faster
Diffstat (limited to 'lib/block_allocator.cpp')
-rw-r--r-- | lib/block_allocator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/block_allocator.cpp b/lib/block_allocator.cpp index c5f4637..4430d52 100644 --- a/lib/block_allocator.cpp +++ b/lib/block_allocator.cpp @@ -21,7 +21,7 @@ using namespace gnuradio; -const size_t AT_LEAST_DEFAULT_ITEMS = 1 << 17; +const size_t AT_LEAST_DEFAULT_ITEMS = 1 << 13; const size_t AHH_TOO_MANY_BYTES = 1 << 20; //TODO const size_t THIS_MANY_BUFFERS = 32; const double EDGE_CASE_MITIGATION = 8.0; //edge case mitigation constant |