We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
DiagnoserResults.TotalOperations
1 parent 6009528 commit 5f2b073Copy full SHA for 5f2b073
src/BenchmarkDotNet/Diagnosers/DiagnoserResults.cs
@@ -3,16 +3,13 @@
3
using BenchmarkDotNet.Running;
4
using BenchmarkDotNet.Toolchains.Results;
5
using System.Collections.Generic;
6
-using System.Linq;
7
8
namespace BenchmarkDotNet.Diagnosers
9
{
10
public class DiagnoserResults(BenchmarkCase benchmarkCase, ExecuteResult executeResult, BuildResult buildResult)
11
12
public BenchmarkCase BenchmarkCase { get; } = benchmarkCase;
13
14
- public long TotalOperations { get; } = executeResult.Measurements.Where(measurement => measurement.IsWorkload()).Sum(m => m.Operations);
15
-
16
public GcStats GcStats { get; } = executeResult.GcStats;
17
18
public BuildResult BuildResult { get; } = buildResult;
0 commit comments