Skip to content

Commit c0c96f8

Browse files
committed
Fix SingleStream and MultiStream reciprocal score comparison for TEST04.
1 parent 4a9e1dc commit c0c96f8

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

compliance/nvidia/TEST04/verify_performance.py

-4
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,11 @@ def main():
5252
if ref_mode == "SingleStream":
5353
if re.match(".*Early stopping 90th percentile estimate", line):
5454
ref_score = line.split(": ",1)[1].strip()
55-
ref_score = 1e9 / float(ref_score)
5655
continue
5756

5857
if ref_mode == "MultiStream":
5958
if re.match(".*Early stopping 99th percentile estimate", line):
6059
ref_score = line.split(": ",1)[1].strip()
61-
ref_score = 1e9 / float(ref_score)
6260
continue
6361

6462
if ref_mode == "Server":
@@ -92,13 +90,11 @@ def main():
9290
if test_mode == "SingleStream":
9391
if re.match(".*Early stopping 90th percentile estimate", line):
9492
test_score = line.split(": ",1)[1].strip()
95-
test_score = 1e9 / float(test_score)
9693
continue
9794

9895
if test_mode == "MultiStream":
9996
if re.match(".*Early stopping 99th percentile estimate", line):
10097
test_score = line.split(": ",1)[1].strip()
101-
test_score = 1e9 / float(test_score)
10298
continue
10399

104100
if test_mode == "Server":

0 commit comments

Comments
 (0)