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

void Impala::Util::TimePlot::PrintRunsSplit ( FILE *  fp,
int  timer,
int  function,
int  split 
) [inline]

Definition at line 95 of file TimePlot.h.

References GetPtr(), mNrRuns, mNrSplitTimes, mNrXCoords, and mXCoords.

Referenced by DoSaveData().

00096     {
00097         fprintf(fp, "\n\n# All of split %d of func %d using timer mode %d\n",
00098                 split, function, timer);
00099         if (split == mNrSplitTimes)
00100             fprintf(fp, "# This split is actually the end time\n");
00101         for (int x=0 ; x<mNrXCoords ; x++)
00102         {
00103             fprintf(fp, "%d", mXCoords[x]);
00104             for (int r=0 ; r<mNrRuns ; r++)
00105                 fprintf(fp, "\t%f", *GetPtr(timer, function, x, split, r));
00106             fprintf(fp, "\n");
00107         }
00108     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:24:23 2011 for ImpalaSrc by  doxygen 1.5.1