Skip to content

Commit

Permalink
tweak Learner printout
Browse files Browse the repository at this point in the history
  • Loading branch information
John Canny committed Dec 21, 2017
1 parent f04f9a9 commit 5c80931
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/scala/BIDMach/Learner.scala
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ class Learner(
if (dsp > lastp + opts.pstep && reslist.length > lasti) {
val gf = gflop
lastp = dsp - (dsp % opts.pstep)
myLogger.info(("%5.2f%%, score=%6.5f, secs=%3.1f, samps/s=%4.1f, gf=%4.1f, MB/s=%4.1f" format (
myLogger.info(("%5.2f%%, score=%6.5f, secs=%3.1f, samps/s=%4.1f, gf=%4.1f, MB/s=%3.2f" format (
100f*lastp,
Learner.scoreSummary(reslist, lasti, reslist.length, opts.cumScore),
gf._2,
Expand Down Expand Up @@ -324,7 +324,7 @@ class Learner(
if (dsp > lastp + opts.pstep && reslist.length > lasti) {
val gf = gflop
lastp = dsp - (dsp % opts.pstep);
myLogger.info(("%5.2f%%, score=%6.5f, secs=%3.1f, samps/s=%4.1f, gf=%4.1f, MB/s=%4.1f" format (
myLogger.info(("%5.2f%%, score=%6.5f, secs=%3.1f, samps/s=%4.1f, gf=%4.1f, MB/s=%3.2f" format (
100f*lastp,
Learner.scoreSummary(reslist, lasti, reslist.length, opts.cumScore),
gf._2,
Expand Down

0 comments on commit 5c80931

Please sign in to comment.