Lines Matching full:time
23 -t x axis is time
48 """Dataset holds the summary and data (time,value pairs)."""
53 self.time = []
61 return str(zip(self.time, self.data))
63 def Add(self, time, value):
64 self.time.append(time)
75 for t, d in izip(self.time, self.data):
82 self.time = new_time
164 (time, value) = line.split(None, 1)
170 dataset.Add(float(time), float(value))
229 """Plot the duration of the ops against time elapsed.
247 x = numpy.array(dataset.time, dtype='float_')
265 """Plot the time of a run against the number of processes."""
277 x = numpy.array(dataset.time, dtype='int_')
294 To plot the result using time for the x axis:
310 'itp', ['iteration', 'time', 'profile'])
320 elif flag in ('-t', '--time'):