Home | History | Annotate | Download | only in analysis

Lines Matching full:throughput

36         self.throughput = []
40 def add_data(self, label, latency, throughput):
42 Append the latency and throughput measurements of one kernel
51 :param throughput: throughput measurements of a series of experiments
52 :type throughput: list of floats
55 self.throughput.append(throughput)
65 np_throughput = np.array(self.throughput)
67 len(self.labels),len(self.throughput[0])))
121 description="Visualize latency and throughput across"
158 throughput = [r["iters"] for r in results]
159 analysis.add_data(path.split('/')[-1], latency, throughput)