From 3378383d6fae63b9ad13138405d360bc30e0501f Mon Sep 17 00:00:00 2001 From: Eric Anderson Date: Mon, 27 Dec 2010 23:15:19 -0600 Subject: Add timing support to lcs_upper_bound --- runner.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/runner.c b/runner.c index 7220ce3..5dd494d 100644 --- a/runner.c +++ b/runner.c @@ -239,7 +239,9 @@ int main() { do { if (USE_PRE_LCS) { + TIMINGS_START(); n = lcs_upper_bound((uint32_t*)input_raw, (uint32_t*)global_md5.abcd); + TIMINGS_END("lcs_upper_bound"); PEDANTIC_TEST_GTE(n, pedantic_n); if (n < MSF) break; -- cgit v1.2.3-54-g00ecf