diff options
author | Tom Rondeau | 2012-02-13 20:53:51 -0500 |
---|---|---|
committer | Tom Rondeau | 2012-02-13 20:53:51 -0500 |
commit | ef1748e4efc40cc065fb5f1b40d710256dd37efa (patch) | |
tree | 65a8e98daa51c37db9e0b940f8d284ee9821d7c3 /gnuradio-examples/python | |
parent | e36d6f1f766e702d147ca494e21131cc66f157dd (diff) | |
download | gnuradio-ef1748e4efc40cc065fb5f1b40d710256dd37efa.tar.gz gnuradio-ef1748e4efc40cc065fb5f1b40d710256dd37efa.tar.bz2 gnuradio-ef1748e4efc40cc065fb5f1b40d710256dd37efa.zip |
volk: complex_to_arg doesn't actually use Volk. No need to benchmark it.
Diffstat (limited to 'gnuradio-examples/python')
-rwxr-xr-x | gnuradio-examples/python/volk_benchmark/volk_types.py | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/gnuradio-examples/python/volk_benchmark/volk_types.py b/gnuradio-examples/python/volk_benchmark/volk_types.py index 893318ddd..3bc5a22ae 100755 --- a/gnuradio-examples/python/volk_benchmark/volk_types.py +++ b/gnuradio-examples/python/volk_benchmark/volk_types.py @@ -97,12 +97,6 @@ def complex_to_mag_squared(N): ###################################################################### -def complex_to_arg(N): - op = gr.complex_to_arg() - tb = helper(N, op, gr.sizeof_gr_complex, gr.sizeof_float, 1, 1) - return tb - -###################################################################### def run_tests(func, N, iters): print("Running Test: {0}".format(func.__name__)) @@ -128,8 +122,7 @@ def main(): complex_to_real, complex_to_imag, complex_to_mag, - complex_to_mag_squared, - complex_to_arg] + complex_to_mag_squared] desc='Time an operation to compare with other implementations. \ This program runs a simple GNU Radio flowgraph to test a \ |