Adding command line interface to report_diff

This commit is contained in:
Michael Tryby
2018-07-16 14:25:53 -04:00
parent db40fa7bbe
commit 10c5608210

View File

@@ -17,11 +17,9 @@ import numpy as np
# project imports # project imports
import nrtest_epanet.output_reader as ordr import nrtest_epanet.output_reader as ordr
from numpy.f2py.auxfuncs import hasinitvalue
from numpy.tests.test_numpy_version import test_valid_numpy_version
def report_diff(path_test, path_ref, min_cdd): def _binary_diff(path_test, path_ref, min_cdd):
for (test, ref) in it.izip(ordr.output_generator(path_test), for (test, ref) in it.izip(ordr.output_generator(path_test),
ordr.output_generator(path_ref)): ordr.output_generator(path_ref)):
@@ -32,16 +30,16 @@ def report_diff(path_test, path_ref, min_cdd):
if np.array_equal(test[0], ref[0]): if np.array_equal(test[0], ref[0]):
continue continue
else: else:
lre = log_relative_error(test[0], ref[0]) lre = _log_relative_error(test[0], ref[0])
idx = np.unravel_index(np.argmin(lre), lre.shape) idx = np.unravel_index(np.argmin(lre), lre.shape)
if lre[idx] < min_cdd: if lre[idx] < min_cdd:
print_diff(idx, lre, test, ref) _print_diff(idx, lre, test, ref)
return return
def log_relative_error(q, c): def _log_relative_error(q, c):
''' '''
Computes log relative error, a measure of numerical accuracy. Computes log relative error, a measure of numerical accuracy.
@@ -65,7 +63,7 @@ def log_relative_error(q, c):
return np.negative(np.log10(re)) return np.negative(np.log10(re))
def print_diff(idx, lre, test, ref): def _print_diff(idx, lre, test, ref):
idx_val = (idx[0], ref[1]) idx_val = (idx[0], ref[1])
test_val = (test[0][idx[0]]) test_val = (test[0][idx[0]])
@@ -76,3 +74,23 @@ def print_diff(idx, lre, test, ref):
print("Idx: %s\nSut: %f Ref: %f Diff: %f LRE: %f\n" print("Idx: %s\nSut: %f Ref: %f Diff: %f LRE: %f\n"
% (idx_val, test_val, ref_val, diff_val, lre_val)) % (idx_val, test_val, ref_val, diff_val, lre_val))
def report(args):
_binary_diff(args.test, args.ref, args.mincdd)
if __name__ == '__main__':
from argparse import ArgumentParser
parser = ArgumentParser(description='EPANET benchmark difference reporting')
parser.set_defaults(func=report)
parser.add_argument('-t', '--test', default=None,
help='Path to test benchmark')
parser.add_argument('-r', '--ref', default=None,
help='Path to reference benchmark')
parser.add_argument('-mc', '--mincdd', type=int, default=3,
help='Minimum correct decimal digits')
args = parser.parse_args()
args.func(args)