Skip to content

Commit

Permalink
milliseconds is a word
Browse files Browse the repository at this point in the history
  • Loading branch information
longjon committed Aug 18, 2014
1 parent 171b49e commit c52d61d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tools/caffe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -186,10 +186,10 @@ int time() {
layers[i]->Forward(bottom_vecs[i], &top_vecs[i]);
}
LOG(INFO) << layername << "\tforward: " << timer.MilliSeconds() <<
" milli seconds.";
" milliseconds.";
}
LOG(INFO) << "Forward pass: " << forward_timer.MilliSeconds() <<
" milli seconds.";
" milliseconds.";
Timer backward_timer;
backward_timer.Start();
for (int i = layers.size() - 1; i >= 0; --i) {
Expand All @@ -200,12 +200,12 @@ int time() {
&bottom_vecs[i]);
}
LOG(INFO) << layername << "\tbackward: "
<< timer.MilliSeconds() << " milli seconds.";
<< timer.MilliSeconds() << " milliseconds.";
}
LOG(INFO) << "Backward pass: " << backward_timer.MilliSeconds() <<
" milli seconds.";
" milliseconds.";
LOG(INFO) << "Total Time: " << total_timer.MilliSeconds() <<
" milli seconds.";
" milliseconds.";
LOG(INFO) << "*** Benchmark ends ***";
return 0;
}
Expand Down

0 comments on commit c52d61d

Please sign in to comment.