Home || Architecture || Video Search || Visual Search || Scripts || Applications || Important Messages || OGL || Src

void Impala::Util::TimeStats::Print ( std::ostream &  os  )  [inline]

Definition at line 79 of file TimeStats.h.

References ComputePercentages(), mGroups, and StopTime().

Referenced by Impala::Util::operator<<(), and Impala::Core::Training::Svm::Predict().

00080     {
00081         StopTime();
00082         ComputePercentages();
00083         os << "timestats - " << mGroups.size() << " groups\n";
00084         for(int i=0 ; i<mGroups.size() ; i++)
00085         {
00086             Group* g = mGroups[i];
00087             os << "  " << g->mName << ": " << g->mPercentage << "% = " << g->mTotal << " (avrg. " << g->mTotal/g->mMeasurements.size() << ")\n";
00088         }
00089         os << std::endl;
00090     }

Here is the call graph for this function:


Generated on Fri Mar 19 11:41:28 2010 for ImpalaSrc by  doxygen 1.5.1