From fe6616e55243b350796dc34d852f35917124a1ca Mon Sep 17 00:00:00 2001 From: Andreas Abel Date: Fri, 17 Jan 2020 16:08:33 +0100 Subject: [PATCH] minor change --- tools/CacheAnalyzer/cacheLib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/CacheAnalyzer/cacheLib.py b/tools/CacheAnalyzer/cacheLib.py index 5a7d5b8..4d6af0f 100755 --- a/tools/CacheAnalyzer/cacheLib.py +++ b/tools/CacheAnalyzer/cacheLib.py @@ -629,7 +629,7 @@ def getUnusedBlockNames(n, usedBlockNames, prefix=''): # Returns a dict with the age of each block, i.e., how many fresh blocks need to be accessed until the block is evicted # if returnNbResults is True, the function returns additionally all measurment results (as the second component of a tuple) -def getAgesOfBlocks(blocks, level, seq, initSeq='', maxAge=None, cacheSets=None, cBox=1, cSlice=0, clearHL=True, wbinvd=False, returnNbResults=False, nMeasurements=10, agg='avg'): +def getAgesOfBlocks(blocks, level, seq, initSeq='', maxAge=None, cacheSets=None, cBox=1, cSlice=0, clearHL=True, wbinvd=False, returnNbResults=False, nMeasurements=10, agg='avg'): ages = dict() if returnNbResults: nbResults = dict()