Lines Matching refs:output

252     from output import StatOutput
253 output = StatOutput(options.jobfile, source)
254 output.xlabel = 'System Configuration'
255 output.colormap = 'RdYlGn'
267 output.stat = stat
268 output.ylabel = stat.name
270 output.graph(stat.name, options.graphdir)
272 output.display(stat.name, options.printmode)
290 output.graph(command, options.graphdir, proxy)
292 output.display(command, options.printmode)
295 output.stat = system.run0.numCycles
301 output.stat = bytes
306 output.stat = packets
311 output.stat = packets / system.run0.numCycles
312 output.invert = command == 'tpp'
317 output.stat = packets / source['sim_seconds']
318 output.ylabel = 'Packets/s'
323 output.stat = bytes / system.run0.numCycles * 8
324 output.ylabel = 'bps / Hz'
325 output.invert = command == 'tpb'
331 output.stat = etherdev.rxBandwidth / 1e9
333 output.stat = etherdev.txBandwidth / 1e9
335 output.stat = (etherdev.rxBandwidth + etherdev.txBandwidth) / 1e9
337 output.ylabel = 'Bandwidth (Gbps)'
338 output.ylim = [ 0.0, 10.0 ]
343 output.stat = bytes / packets
344 output.ylabel = 'Bytes / Packet'
349 output.stat = etherdev.rxBytes / etherdev.rxPackets
350 output.ylabel = 'Receive Bytes / Packet'
355 output.stat = etherdev.txBytes / etherdev.txPackets
356 output.ylabel = 'Transmit Bytes / Packet'
361 output.stat = etherdev.rxPackets / etherdev.txPackets
362 output.ylabel = 'rxPackets / txPackets'
367 output.stat = etherdev.rxBytes / etherdev.txBytes
368 output.ylabel = 'rxBytes / txBytes'
375 output.stat = misses
376 output.ylabel = 'Overall MSHR Misses'
381 output.stat = misses / (bytes / 1024)
382 output.ylabel = 'Misses / KB'
388 output.stat = interrupts / kbytes
389 output.ylabel = 'Interrupts / KB'
394 output.stat = system.run0.ISSUE__count
399 output.stat = system.run0.COM__count
404 output.stat = system.run0.FETCH__count