summaryrefslogtreecommitdiff
path: root/gnuradio-examples/python
diff options
context:
space:
mode:
authorTom Rondeau2012-02-13 20:53:51 -0500
committerTom Rondeau2012-02-13 20:53:51 -0500
commitef1748e4efc40cc065fb5f1b40d710256dd37efa (patch)
tree65a8e98daa51c37db9e0b940f8d284ee9821d7c3 /gnuradio-examples/python
parente36d6f1f766e702d147ca494e21131cc66f157dd (diff)
downloadgnuradio-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-xgnuradio-examples/python/volk_benchmark/volk_types.py9
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 \