commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] r7683 - gnuradio/branches/developers/eb/gcell/src/apps


From: eb
Subject: [Commit-gnuradio] r7683 - gnuradio/branches/developers/eb/gcell/src/apps
Date: Thu, 14 Feb 2008 13:03:30 -0700 (MST)

Author: eb
Date: 2008-02-14 13:03:29 -0700 (Thu, 14 Feb 2008)
New Revision: 7683

Modified:
   gnuradio/branches/developers/eb/gcell/src/apps/split_and_avg_results.py
Log:
removed dependency

Modified: 
gnuradio/branches/developers/eb/gcell/src/apps/split_and_avg_results.py
===================================================================
--- gnuradio/branches/developers/eb/gcell/src/apps/split_and_avg_results.py     
2008-02-14 19:57:33 UTC (rev 7682)
+++ gnuradio/branches/developers/eb/gcell/src/apps/split_and_avg_results.py     
2008-02-14 20:03:29 UTC (rev 7683)
@@ -29,9 +29,7 @@
 import sys
 from optparse import OptionParser
 from pprint import pprint
-from gnuradio import eng_notation as en
 
-
 class data(object):
     def __init__(self, nspes, work_per_job, elapsed_time, njobs):
         self.nspes = nspes
@@ -42,10 +40,10 @@
 
     def __repr__(self):
         return "<data nspes=%d work_per_job=%s elapsed_time=%s njobs=%s 
speedup=%s>" % (
-            self.nspes, en.num_to_str(self.work_per_job),
-            en.num_to_str(self.elapsed_time),
-            en.num_to_str(self.njobs),
-            en.num_to_str(self.speedup))
+            self.nspes, (self.work_per_job),
+            (self.elapsed_time),
+            (self.njobs),
+            (self.speedup))
 
 def cmp_data(x, y):
     t = x.nspes - y.nspes





reply via email to

[Prev in Thread] Current Thread [Next in Thread]