Commit 15186efe authored by tonyg@chromium.org's avatar tonyg@chromium.org

Fix perf trybots after recent refactor.

BUG=
NOTRY=True

Review URL: https://codereview.chromium.org/443183002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287817 0039d316-1c4b-4281-b951-d872f2087c98
parent ef4fac6d
......@@ -21,6 +21,7 @@ import sys
import traceback
from auto_bisect import bisect_utils
from auto_bisect import math_utils
bisect = imp.load_source('bisect-perf-regression',
os.path.join(os.path.abspath(os.path.dirname(sys.argv[0])),
......@@ -308,7 +309,7 @@ def _RunPerformanceTest(config, path_to_file):
# Calculate the % difference in the means of the 2 runs.
percent_diff_in_means = (results_with_patch[0]['mean'] /
max(0.0001, results_without_patch[0]['mean'])) * 100.0 - 100.0
std_err = bisect.CalculatePooledStandardError(
std_err = math_utils.PooledStandardError(
[results_with_patch[0]['values'], results_without_patch[0]['values']])
bisect_utils.OutputAnnotationStepClosed()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment