Files
andrew ladenberger 190bdcd52c PerfReportTool : Minor QoL updates for histograms
- Show decimals on histogram thresholds
- Shift the gamethread summary table histogram down (75%-150%)
- Renamed the gamethread summary table histogram

#rb brant.french
[FYI] tyler.staples, ben.woodhouse

[CL 22217649 by andrew ladenberger in ue5-main branch]
2022-09-27 23:53:18 -04:00

140 lines
4.6 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Xml.Linq;
using PerfReportTool;
using CSVStats;
namespace PerfSummaries
{
class HistogramSummary : Summary
{
public HistogramSummary(XElement element, string baseXmlDirectory)
{
ReadStatsFromXML(element);
ColourThresholds = ReadColourThresholdsXML(element.Element("colourThresholds"));
string[] histogramStrings = element.Element("histogramThresholds").Value.Split(',');
HistogramThresholds = new double[histogramStrings.Length];
for (int i = 0; i < histogramStrings.Length; i++)
{
HistogramThresholds[i] = Convert.ToDouble(histogramStrings[i], System.Globalization.CultureInfo.InvariantCulture);
}
foreach (XElement child in element.Elements())
{
if (child.Name == "budgetOverride")
{
BudgetOverrideStatName = child.Attribute("stat").Value;
BudgetOverrideStatBudget = Convert.ToDouble(child.Attribute("budget").Value, System.Globalization.CultureInfo.InvariantCulture);
}
}
bSuppressAveragesTable = element.GetSafeAttibute<bool>("suppressAveragesTable", false);
}
public HistogramSummary() { }
public override string GetName() { return "histogram"; }
public override void WriteSummaryData(System.IO.StreamWriter htmlFile, CsvStats csvStats, CsvStats csvStatsUnstripped, bool bWriteSummaryCsv, SummaryTableRowData metadata, string htmlFileName)
{
// Only HTML reporting is supported (does not output summary table row data)
if (htmlFile == null)
{
return;
}
if (!bSuppressAveragesTable)
{
// Write the averages
htmlFile.WriteLine(" <h2>Stat unit averages</h2>");
htmlFile.WriteLine(" <table border='0' style='width:400'>");
htmlFile.WriteLine(" <tr><td></td><th>ms</b></th>");
foreach (string stat in stats)
{
string StatToCheck = stat.Split('(')[0];
if (!csvStats.Stats.ContainsKey(StatToCheck.ToLower()))
{
continue;
}
float val = csvStats.Stats[StatToCheck.ToLower()].average;
string colour = ColourThresholdList.GetThresholdColour(val, ColourThresholds[0], ColourThresholds[1], ColourThresholds[2], ColourThresholds[3]);
htmlFile.WriteLine(" <tr><td><b>" + StatToCheck + "</b></td><td bgcolor=" + colour + ">" + val.ToString("0.00") + "</td></tr>");
}
htmlFile.WriteLine(" </table>");
}
// Histogram
double[] thresholds = HistogramThresholds;
htmlFile.WriteLine(" <h2>Histogram</h2>");
htmlFile.WriteLine(" <table border='0' style='width:800'>");
htmlFile.WriteLine(" <tr><td></td>");
// Display the override stat budget first
bool HasBudgetOverrideStat = false;
if (BudgetOverrideStatName != null)
{
htmlFile.WriteLine(" <td><b><=" + BudgetOverrideStatBudget.ToString() + "ms</b></td>");
HasBudgetOverrideStat = true;
}
foreach (float thresh in thresholds)
{
htmlFile.WriteLine(" <td><b>>" + thresh.ToString() + "ms</b></td>");
}
htmlFile.WriteLine(" </tr>");
foreach (string unitStat in stats)
{
string StatToCheck = unitStat.Split('(')[0];
if (!csvStats.Stats.ContainsKey(StatToCheck.ToLower()))
{
continue;
}
htmlFile.WriteLine(" <tr><td><b>" + StatToCheck + "</b></td>");
int thresholdIndex = 0;
// Display the render thread budget column (don't display the other stats)
if (HasBudgetOverrideStat)
{
if (StatToCheck.ToLower() == BudgetOverrideStatName)
{
float RatioOfFramesOverBudget = 1.0f - csvStats.GetStat(StatToCheck.ToLower()).GetRatioOfFramesInBudget((float)BudgetOverrideStatBudget);
float pc = RatioOfFramesOverBudget * 100.0f;
string colour = ColourThresholdList.GetThresholdColour(pc, 50.0f, 35.0f, 20.0f, 0.0f);
htmlFile.WriteLine(" <td bgcolor=" + colour + ">" + pc.ToString("0.00") + "%</td>");
}
else
{
htmlFile.WriteLine(" <td></td>");
}
}
foreach (float thresh in thresholds)
{
float threshold = (float)thresholds[thresholdIndex];
float RatioOfFramesOverBudget = 1.0f - csvStats.GetStat(StatToCheck.ToLower()).GetRatioOfFramesInBudget((float)threshold);
float pc = RatioOfFramesOverBudget * 100.0f;
string colour = ColourThresholdList.GetThresholdColour(pc, 50.0f, 35.0f, 20.0f, 0.0f);
htmlFile.WriteLine(" <td bgcolor=" + colour + ">" + pc.ToString("0.00") + "%</td>");
thresholdIndex++;
}
htmlFile.WriteLine(" </tr>");
}
htmlFile.WriteLine(" </table>");
}
public double[] ColourThresholds;
public double[] HistogramThresholds;
public string BudgetOverrideStatName;
public double BudgetOverrideStatBudget;
bool bSuppressAveragesTable;
};
}