From e63600a5e09f66e823c45aaefc56a86fcc9290a4 Mon Sep 17 00:00:00 2001 From: "Felipe S. Prado" Date: Fri, 14 Oct 2016 15:16:29 +0200 Subject: [PATCH] Small fix --- DRAMSys/analyzer/scripts/metrics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DRAMSys/analyzer/scripts/metrics.py b/DRAMSys/analyzer/scripts/metrics.py index c2c4f11a..54cf1e32 100644 --- a/DRAMSys/analyzer/scripts/metrics.py +++ b/DRAMSys/analyzer/scripts/metrics.py @@ -438,7 +438,7 @@ def passRatio(connection): passRatio = numberOfPassWins[thread]*1.0/(numberOfPassWins[thread]+numberOfPassLosses[thread]) else: passRatio = 0.5 - #print("Thread {0} passed other threads {1} times and was passed {2} times. Pass ratio is {3}".format(thread, numberOfPassWins[thread], numberOfPassLosses[thread], passRatio)) + # print("Thread {0} passed other threads {1} times and was passed {2} times. Pass ratio is {3}".format(thread, numberOfPassWins[thread], numberOfPassLosses[thread], passRatio)) result.append(("Thread {0} pass ratio".format(thread), passRatio)) return result