8 references to WorkingSet64
Microsoft.Extensions.Diagnostics.ResourceMonitoring (4)
Windows\Interop\ProcessInfo.cs (2)
20memoryUsage += (ulong)process.WorkingSet64; 45return (ulong)process.WorkingSet64;
Windows\WindowsSnapshotProvider.cs (2)
99memoryUsageInBytes: (ulong)process.WorkingSet64); 113return process.WorkingSet64;
Microsoft.ML.AutoML (1)
AutoMLExperiment\IPerformanceMonitor.cs (1)
130var memoryUsage = process.WorkingSet64 * 1.0 / (1024 * 1024);
Microsoft.ML.FastTree (1)
FastTree.cs (1)
453ch.Trace("Working Set = {0} MB", currentProcess.WorkingSet64 / 1024 / 1024);
Microsoft.ML.TestFramework (1)
BaseTestClass.cs (1)
84$"with memory usage {proc.WorkingSet64.ToString("N", CultureInfo.InvariantCulture)} and max memory usage {proc.PeakWorkingSet64.ToString("N", CultureInfo.InvariantCulture)}");
Stress.TelemetryService (1)
GaugeMetrics.cs (1)
27var workingSet = process.WorkingSet64;