Skip to content

Commit

Permalink
Fix a bug on mkl timeit
Browse files Browse the repository at this point in the history
  • Loading branch information
etaf committed Jul 12, 2017
1 parent fa82b77 commit bf8f93d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions code/intel/convolution/mkl_conv/std_conv_bench.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,6 @@ static inline bench_result timeit(int niters, double flops, Func func)
ms = ms_timer() - ms;
result.avg_ms += ms;
result.min_ms = std::min(result.min_ms, ms);
if (result.avg_ms > max_ms_total)
break;
}
result.avg_ms /= iters_done;
result.avg_gflops = flops / result.avg_ms * 1E-6;
Expand Down

0 comments on commit bf8f93d

Please sign in to comment.