假设我有两段代码,我想检查这些代码的CPU使用率和内存,并进行比较,这是检查性能的好方法:
public class CodeChecker: IDisposable
{
public PerformanceResult Check(Action<int> codeToTest, int loopLength)
{
var stopWatch = new Stopwatch();
stopWatch.Start();
for(var i = 0; i < loopLength; i++)
{
codeToTest.Invoke(i);
}
stopWatch.Stop();
var process = Process.GetCurrentProcess();
var result = new PerformanceResult(stopWatch.ElapsedMilliseconds, process.PrivateMemorySize64);
return result;
}
}
public class PerformanceResult
{
public long DurationMilliseconds { get; set; }
public long PrivateMemoryBytes { get; set; }
public PerformanceResult(long durationMilliseconds, long privateMemoryBytes)
{
DurationMilliseconds = durationMilliseconds;
PrivateMemoryBytes = privateMemoryBytes;
}
public override string ToString()
{
return $"Duration: {DurationMilliseconds} - Memory: {PrivateMemoryBytes}";
}
}
并且:
static void Main(string[] args)
{
Console.WriteLine("Start!");
int loopLength = 10000000;
var collection = new Dictionary<int, Target>();
PerformanceResult result;
using (var codeChecker = new CodeChecker())
{
result = codeChecker.Check((int i) => collection.Add(i, new Target()) , loopLength);
}
Console.WriteLine($"Dict Performance: {result}");
var list = new List<Target>();
using(var codeChecker = new CodeChecker())
{
result = codeChecker.Check((int i) => list.Add(new Target()), loopLength);
}
Console.WriteLine($"List Performance: {result}");
Console.ReadLine();
}
我正在寻找以编程方式检查性能的方法,我想特别是检查所有应用程序的代码。
是否有任何改进上述代码的建议?
我将接受任何有关使用免费工具的建议。
答案 0 :(得分:2)
有很多因素可能会对您的测量产生偏差,包括CLR和JIT编译器的影响,堆状态,冷或热运行,系统的整体负载等。理想情况下,您需要隔离代码段。 d希望相互进行基准测试以排除相互影响,仅对热运行进行基准测试,而不对冷进行基准测试以排除JIT编译和其他冷运行因素,最重要的是您需要进行多次运行以获得统计信息,因为单次运行不能代表特别是在暗示多任务的系统上。幸运的是,您不必手动进行所有操作-基准测试library非常有用,它可以完成所有提及的所有工作,并且在各种.NET项目中得到广泛使用。