X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Ftools%2Fscripts%2Fcompare_perpatch.py;fp=resources%2Ftools%2Fscripts%2Fcompare_perpatch.py;h=3bda338d49b11063caa694732dd5c0b680d22189;hb=8577b4441fd99d1db694e6e9f07801c35ac17748;hp=1f8a1cf89250bb79abdbd59af2c5e7a4a8394474;hpb=fa0fe5c805169951c466d3b18091c0cfc52dd5ca;p=csit.git diff --git a/resources/tools/scripts/compare_perpatch.py b/resources/tools/scripts/compare_perpatch.py index 1f8a1cf892..3bda338d49 100644 --- a/resources/tools/scripts/compare_perpatch.py +++ b/resources/tools/scripts/compare_perpatch.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018 Cisco and/or its affiliates. +# Copyright (c) 2019 Cisco and/or its affiliates. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at: @@ -57,7 +57,7 @@ while 1: except IOError: break num_lines = len(parent_lines) - filename = "csit_new/{iter}/results.txt".format(iter=iteration) + filename = "csit_current/{iter}/results.txt".format(iter=iteration) with open(filename) as new_file: new_lines = new_file.readlines() if num_lines != len(new_lines): @@ -82,7 +82,7 @@ for test_index in range(num_tests): new_values.extend( json.loads(new_iterations[iteration_index][test_index])) print "TRACE pre-hack parent: {p}".format(p=parent_values) - print "TRACE pre-hack new: {n}".format(n=new_values) + print "TRACE pre-hack current: {n}".format(n=new_values) parent_values = hack(parent_values) new_values = hack(new_values) parent_max = BitCountingMetadataFactory.find_max_value(parent_values) @@ -93,9 +93,9 @@ for test_index in range(num_tests): new_factory = BitCountingMetadataFactory(val_max, parent_stats.avg) new_stats = new_factory.from_data(new_values) print "TRACE parent: {p}".format(p=parent_values) - print "TRACE new: {n}".format(n=new_values) + print "TRACE current: {n}".format(n=new_values) print "DEBUG parent: {p}".format(p=parent_stats) - print "DEBUG new: {n}".format(n=new_stats) + print "DEBUG current: {n}".format(n=new_stats) common_max = max(parent_stats.avg, new_stats.avg) difference = (new_stats.avg - parent_stats.avg) / common_max print "DEBUG difference: {d}%".format(d=100 * difference)