From fb4fcf33b1a4e9ea9ed2c5fa9fb2bcf41406bd38 Mon Sep 17 00:00:00 2001 From: Bryan Bernhart Date: Wed, 27 Apr 2022 15:59:34 -0700 Subject: [PATCH] Flush event trace by scope. --- src/gpgmm/EventTraceWriter.cpp | 5 +++++ src/gpgmm/TraceEvent.cpp | 4 ++++ src/gpgmm/TraceEvent.h | 2 ++ src/gpgmm/d3d12/ResourceAllocatorD3D12.cpp | 7 ++++++- src/gpgmm/d3d12/ResourceAllocatorD3D12.h | 16 ++++++++++++++++ .../D3D12EventTraceReplay.cpp | 2 ++ ...nd_queuewritebuffertests_manywritebuffer.json | 2 +- ...irectml_samples_directmlxsuperresolution.json | 2 +- ...n_end2end_mobilenetv2nchwtests_nchwtest0.json | 2 +- .../traces/webnn_mobilenetv2_nchw.json | 2 +- .../traces/webnn_resnet50v2_nchw.json | 2 +- 11 files changed, 40 insertions(+), 6 deletions(-) diff --git a/src/gpgmm/EventTraceWriter.cpp b/src/gpgmm/EventTraceWriter.cpp index dcd79a309..ec7b52ad6 100644 --- a/src/gpgmm/EventTraceWriter.cpp +++ b/src/gpgmm/EventTraceWriter.cpp @@ -15,6 +15,7 @@ #include "gpgmm/EventTraceWriter.h" #include "gpgmm/common/Assert.h" +#include "gpgmm/common/Log.h" #include "gpgmm/common/PlatformTime.h" #include "gpgmm/common/PlatformUtils.h" #include "gpgmm/common/Utils.h" @@ -154,6 +155,10 @@ namespace gpgmm { std::ofstream outFile; outFile.open(mTraceFile); + if (!outFile.fail()) { + WarningLog() << mTraceFile + " exists and will be overwritten."; + } + outFile << traceData.ToString(); outFile.flush(); outFile.close(); diff --git a/src/gpgmm/TraceEvent.cpp b/src/gpgmm/TraceEvent.cpp index 60a832431..6d160e7d7 100644 --- a/src/gpgmm/TraceEvent.cpp +++ b/src/gpgmm/TraceEvent.cpp @@ -43,6 +43,10 @@ namespace gpgmm { skipInstantEvents); } + void ShutdownEventTrace() { + GetInstance()->FlushQueuedEventsToDisk(); + } + bool IsEventTraceEnabled() { return (GetInstance() != nullptr); } diff --git a/src/gpgmm/TraceEvent.h b/src/gpgmm/TraceEvent.h index ba45b5b73..39f21fafd 100644 --- a/src/gpgmm/TraceEvent.h +++ b/src/gpgmm/TraceEvent.h @@ -126,6 +126,8 @@ namespace gpgmm { bool skipObjectEvents, bool skipInstantEvents); + void ShutdownEventTrace(); + bool IsEventTraceEnabled(); class TraceEventID { diff --git a/src/gpgmm/d3d12/ResourceAllocatorD3D12.cpp b/src/gpgmm/d3d12/ResourceAllocatorD3D12.cpp index 85d458db6..7be4b4c14 100644 --- a/src/gpgmm/d3d12/ResourceAllocatorD3D12.cpp +++ b/src/gpgmm/d3d12/ResourceAllocatorD3D12.cpp @@ -417,7 +417,9 @@ namespace gpgmm { namespace d3d12 { mResourceHeapTier(descriptor.ResourceHeapTier), mIsAlwaysCommitted(descriptor.Flags & ALLOCATOR_FLAG_ALWAYS_COMMITED), mIsAlwaysInBudget(descriptor.Flags & ALLOCATOR_FLAG_ALWAYS_IN_BUDGET), - mMaxResourceHeapSize(descriptor.MaxResourceHeapSize) { + mMaxResourceHeapSize(descriptor.MaxResourceHeapSize), + mShutdownEventTrace(descriptor.RecordOptions.EventScope & + ALLOCATOR_RECORD_SCOPE_PER_INSTANCE) { GPGMM_TRACE_EVENT_OBJECT_NEW(this); #if defined(GPGMM_ENABLE_ALLOCATOR_CHECKS) @@ -577,6 +579,9 @@ namespace gpgmm { namespace d3d12 { #if defined(GPGMM_ENABLE_DEVICE_CHECKS) ReportLiveDeviceObjects(mDevice); #endif + if (mShutdownEventTrace) { + ShutdownEventTrace(); + } } const char* ResourceAllocator::GetTypename() const { diff --git a/src/gpgmm/d3d12/ResourceAllocatorD3D12.h b/src/gpgmm/d3d12/ResourceAllocatorD3D12.h index b67e8c3a4..ff6c480be 100644 --- a/src/gpgmm/d3d12/ResourceAllocatorD3D12.h +++ b/src/gpgmm/d3d12/ResourceAllocatorD3D12.h @@ -99,6 +99,18 @@ namespace gpgmm { namespace d3d12 { using ALLOCATOR_RECORD_FLAGS_TYPE = Flags; DEFINE_OPERATORS_FOR_FLAGS(ALLOCATOR_RECORD_FLAGS_TYPE) + enum ALLOCATOR_RECORD_SCOPE { + + // Record events per process (or multiple allocators). + ALLOCATOR_RECORD_SCOPE_PER_PROCESS = 0x0, + + // Record events per allocator object. + ALLOCATOR_RECORD_SCOPE_PER_INSTANCE = 0x1, + }; + + using ALLOCATOR_RECORD_SCOPE_TYPE = Flags; + DEFINE_OPERATORS_FOR_FLAGS(ALLOCATOR_RECORD_SCOPE_TYPE) + struct ALLOCATOR_RECORD_OPTIONS { // Flags used to decide what to record. ALLOCATOR_RECORD_FLAGS_TYPE Flags = ALLOCATOR_RECORD_FLAG_NONE; @@ -107,6 +119,9 @@ namespace gpgmm { namespace d3d12 { // will be ignored. ALLOCATOR_MESSAGE_SEVERITY MinMessageLevel = ALLOCATOR_MESSAGE_SEVERITY_WARNING; + // Specifies the scope of the events. By default, recording is per process. + ALLOCATOR_RECORD_SCOPE EventScope = ALLOCATOR_RECORD_SCOPE_PER_PROCESS; + // Path to trace file. Default is trace.json. std::string TraceFile; }; @@ -329,6 +344,7 @@ namespace gpgmm { namespace d3d12 { const bool mIsAlwaysCommitted; const bool mIsAlwaysInBudget; const uint64_t mMaxResourceHeapSize; + const bool mShutdownEventTrace; static constexpr uint64_t kNumOfResourceHeapTypes = 8u; diff --git a/src/tests/capture_replay_tests/D3D12EventTraceReplay.cpp b/src/tests/capture_replay_tests/D3D12EventTraceReplay.cpp index 2accb9410..fc20864de 100644 --- a/src/tests/capture_replay_tests/D3D12EventTraceReplay.cpp +++ b/src/tests/capture_replay_tests/D3D12EventTraceReplay.cpp @@ -332,6 +332,8 @@ class D3D12EventTraceReplay : public D3D12TestBase, public CaptureReplayTestWith allocatorDesc.RecordOptions.TraceFile = traceFile.path; allocatorDesc.RecordOptions.MinMessageLevel = static_cast(envParams.RecordLevel); + allocatorDesc.RecordOptions.EventScope = + ALLOCATOR_RECORD_SCOPE_PER_INSTANCE; } allocatorDesc.MinLogLevel = diff --git a/src/tests/capture_replay_tests/traces/dawn_end2end_queuewritebuffertests_manywritebuffer.json b/src/tests/capture_replay_tests/traces/dawn_end2end_queuewritebuffertests_manywritebuffer.json index e876edc0e..fbd2f2893 100644 --- a/src/tests/capture_replay_tests/traces/dawn_end2end_queuewritebuffertests_manywritebuffer.json +++ b/src/tests/capture_replay_tests/traces/dawn_end2end_queuewritebuffertests_manywritebuffer.json @@ -1 +1 @@ -{ "traceEvents": [ { "name": "GPUMemoryAllocator", "cat": "default", "ph": "N", "id": "0x1e83b5cfd10", "tid": 15264, "ts": 1660557, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e840170a48", "tid": 15264, "ts": 1660577, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660591, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660602, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660612, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660631, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83b5934d0", "tid": 15264, "ts": 1660638, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660644, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1660649, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1660654, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1660662, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1660668, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1660673, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660678, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660684, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660689, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660699, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660704, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1660709, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1660714, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1660722, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1660727, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1660732, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660737, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660742, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660748, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660757, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660762, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1660767, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1660772, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1660780, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1660785, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1660790, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660795, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660800, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660806, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660815, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660820, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1660825, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1660830, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1660838, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1660843, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1660848, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660853, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660858, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660863, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660872, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660877, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1660882, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1660887, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1660895, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1660900, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1660905, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660910, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660915, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660920, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660929, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660934, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1660939, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1660944, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1660952, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1660957, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1660962, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660967, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660974, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660981, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660991, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1660996, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661001, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661006, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661014, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661019, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661024, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661029, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661034, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661039, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661048, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661054, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661058, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661063, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661071, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661076, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661081, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661086, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661095, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661102, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661112, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661117, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661122, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661127, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661135, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661140, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661145, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661150, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661155, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661160, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661169, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661174, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661179, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661184, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661192, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661197, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661202, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661207, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661214, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661221, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661230, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661235, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661240, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661245, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661253, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661258, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661263, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661268, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661274, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661279, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661288, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661293, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661298, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661303, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661311, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661316, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661321, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661326, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661333, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661340, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661350, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661355, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661360, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661365, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661373, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661378, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661383, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661388, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661393, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661398, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661407, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661412, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661417, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661433, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661443, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661459, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661464, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661469, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661477, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661485, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661494, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661499, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661504, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661509, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661517, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661522, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661527, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661532, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661537, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661542, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661552, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661557, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661562, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661567, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661575, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661580, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661585, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661590, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661597, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661603, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661613, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661618, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661623, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661628, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661636, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661641, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661646, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661651, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661656, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661661, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661670, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661675, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661680, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661685, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661693, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661698, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661703, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661708, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661713, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661718, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661727, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661732, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661737, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661742, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661750, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661755, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661760, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e840170c88", "tid": 15264, "ts": 1661770, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661782, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661790, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661797, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661813, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83b593e60", "tid": 15264, "ts": 1661819, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661824, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661829, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661834, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661842, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661847, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661852, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661857, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661863, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661868, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661878, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661883, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661888, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661893, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661901, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661906, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661911, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661916, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661921, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661926, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661935, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661940, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661945, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661950, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661958, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661963, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1661968, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661973, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661979, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661984, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661993, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1661998, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662003, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662008, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662016, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662021, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662026, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662031, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662036, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662041, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662050, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662055, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662060, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662065, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662073, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662078, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662083, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662088, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662093, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662098, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662107, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662112, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662117, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662122, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662130, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662135, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662140, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662145, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662152, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662159, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662169, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662174, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662179, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662184, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662192, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662197, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662202, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662207, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662212, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662217, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662226, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662232, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662236, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662241, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662249, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662254, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662259, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662264, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662273, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662280, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662289, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662294, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662299, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662304, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662312, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662317, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662322, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662327, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662332, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662338, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662347, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662352, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662357, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662362, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662370, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662375, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662380, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662385, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662392, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662399, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662408, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662413, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662418, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662434, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662444, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662460, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662465, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662470, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662475, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662480, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662489, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662494, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662499, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662504, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662512, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662517, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662522, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662527, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662534, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662541, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662550, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662555, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662560, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662565, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662573, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662578, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662583, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662588, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662593, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662598, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662607, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662613, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662617, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662622, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662641, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662647, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662652, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662657, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662665, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662672, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662682, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662687, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662692, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662697, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662705, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662721, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662726, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662731, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662736, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662741, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662751, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662756, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662760, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662765, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662773, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662778, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662783, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662788, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662795, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662802, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662812, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662817, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662822, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662827, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662834, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662840, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662844, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662849, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662855, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662860, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662869, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662874, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662879, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662884, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662892, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662897, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662902, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662907, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662912, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662917, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662926, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662931, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662936, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662941, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662949, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662954, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1662959, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83fc867f8", "tid": 15264, "ts": 1662969, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662980, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662988, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1662995, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663005, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83b5940a0", "tid": 15264, "ts": 1663010, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663016, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663021, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663026, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663034, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663039, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663044, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663049, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663054, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663059, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663068, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663074, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663078, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663083, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663091, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663096, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663102, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663106, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663112, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663117, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663126, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663131, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663136, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663141, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663149, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663154, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663159, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663164, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663169, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663174, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663183, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663188, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663193, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663198, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663206, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663211, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663216, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663221, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663226, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663231, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663241, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663246, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663250, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663255, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663263, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663268, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663273, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663278, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663283, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663288, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663298, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663303, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663308, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663313, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663320, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663326, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663330, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663336, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663343, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663350, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663365, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663371, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663376, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663381, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663389, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663394, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663399, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663404, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663409, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663414, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663435, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663441, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663446, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663462, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663470, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663476, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663480, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663485, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663494, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663502, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663511, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663516, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663521, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663526, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663534, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663539, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663544, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663549, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663555, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663560, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663569, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663574, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663579, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663584, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663592, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663597, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663602, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663607, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663614, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663620, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663630, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663635, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663640, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663645, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663653, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663658, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663663, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663668, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663673, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663678, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663687, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663692, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663697, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663702, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663710, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663715, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663720, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663725, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663732, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663738, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663747, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663753, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663758, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663763, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663770, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663775, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663780, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663785, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663790, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663795, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663805, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663810, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663815, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663820, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663828, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663833, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663838, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663842, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663851, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663858, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663867, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663872, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663877, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663882, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663890, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663895, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663900, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663904, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663910, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663915, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663924, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663929, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663934, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663939, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663947, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663952, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663957, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663962, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663968, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663975, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663985, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1663990, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1663995, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664000, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664008, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664013, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664018, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664023, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664028, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664033, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664042, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664047, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664052, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664057, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664065, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664070, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664075, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664079, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664085, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664090, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664099, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664104, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664109, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664114, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664122, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664127, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664132, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83fc86918", "tid": 15264, "ts": 1664142, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664154, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664162, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664169, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664185, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83b555b40", "tid": 15264, "ts": 1664191, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664196, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664201, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664206, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664214, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664219, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664224, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664229, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664235, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664240, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664250, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664254, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664259, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664264, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664272, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664277, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664282, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664287, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664293, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664298, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664307, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664312, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664317, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664322, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664330, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664335, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664339, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664345, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664350, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664355, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664364, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664369, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664374, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664379, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664387, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664392, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664397, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664402, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664407, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664412, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664432, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664439, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664457, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664462, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664485, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664491, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664511, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664516, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664538, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664543, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664568, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664573, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664578, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664583, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664591, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664596, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664601, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664606, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664613, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664620, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664630, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664635, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664640, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664645, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664653, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664658, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664663, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664668, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664673, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664678, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664687, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664692, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664697, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664702, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664710, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664715, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664720, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664725, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664733, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664740, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664749, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664755, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664760, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664765, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664773, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664778, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664783, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664787, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664793, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664798, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664807, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664812, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664817, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664822, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664830, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664835, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664840, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664845, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664852, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664859, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664868, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664873, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664878, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664883, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664891, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664896, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664901, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664906, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664911, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664916, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664925, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664930, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664935, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664940, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664948, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664953, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664958, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664963, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664970, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664977, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664986, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1664991, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1664996, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665001, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665009, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665014, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665019, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665024, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665029, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665034, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665044, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665048, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665053, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665058, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665066, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665071, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665076, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665081, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665089, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665096, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665106, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665111, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665116, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665120, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665128, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665133, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665138, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665143, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665149, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665154, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665163, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665168, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665173, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665178, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665186, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665191, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665196, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665201, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665208, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665214, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665224, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665229, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665234, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665239, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665247, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665252, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665257, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665261, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665267, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665272, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665281, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665286, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665291, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665296, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665304, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665309, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665314, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665319, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665324, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665329, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665338, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665344, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665348, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665353, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665361, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665366, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665371, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83ffad4d8", "tid": 15264, "ts": 1665382, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665393, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665401, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665408, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665421, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83b556050", "tid": 15264, "ts": 1665427, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665432, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665437, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665442, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665450, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665455, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665460, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665465, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665471, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665476, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665485, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665490, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665495, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665500, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665508, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665513, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665518, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665523, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665529, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665534, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665543, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665548, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665553, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665558, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665566, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665571, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665576, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665581, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665586, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665591, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665601, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665606, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665611, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665616, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665624, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665629, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665634, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665639, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665644, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665649, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665659, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665664, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665669, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665674, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665682, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665687, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665692, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665696, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665702, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665707, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665716, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665721, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665726, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665731, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665739, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665744, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665749, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665754, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665761, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665768, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665778, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665783, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665788, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665793, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665801, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665806, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665811, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665816, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665821, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665826, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665836, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665841, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665845, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665850, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665858, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665863, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665868, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665873, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665881, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665889, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665904, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665909, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665914, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665919, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665928, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665933, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665938, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665943, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665948, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665953, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665963, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1665968, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665973, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665978, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665985, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665990, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1665995, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666001, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666008, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666015, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666024, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666029, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666034, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666039, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666047, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666052, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666057, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666062, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666067, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666072, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666082, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666087, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666092, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666097, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666105, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666110, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666115, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666120, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666127, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666134, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666143, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666148, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666153, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666158, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666166, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666171, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666176, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666181, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666186, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666191, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666201, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666206, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666210, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666215, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666223, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666228, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666233, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666238, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666247, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666254, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666263, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666268, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666273, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666278, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666286, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666291, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666296, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666301, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666306, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666311, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666321, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666326, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666331, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666336, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666344, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666349, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666354, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666359, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666366, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666372, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666382, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666387, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666392, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666397, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666405, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666410, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666415, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666420, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666425, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666430, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666440, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666445, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666450, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666455, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666463, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666468, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666473, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666477, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666483, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666488, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666497, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666502, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666507, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666512, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666520, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666525, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666530, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83ffac998", "tid": 15264, "ts": 1666540, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666551, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666558, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666565, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666576, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83fc1c9c0", "tid": 15264, "ts": 1666585, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666591, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666596, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666601, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666609, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666614, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666619, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666624, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666630, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666635, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666644, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666649, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666654, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666659, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666667, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666672, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666677, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666682, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666687, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666692, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666702, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666707, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666712, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666717, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666724, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666730, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666735, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666740, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666745, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666750, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666759, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666764, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666769, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666774, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666782, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666787, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666792, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666797, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666802, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666807, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666817, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666822, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666827, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666831, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666839, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666844, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666850, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666854, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666860, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666865, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666874, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666879, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666884, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666889, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666897, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666902, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666907, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666912, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666919, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666926, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666935, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666940, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666945, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666950, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666958, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666963, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1666968, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666973, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666978, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666983, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666993, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1666998, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667003, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667008, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667016, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667021, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667026, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667031, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667039, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667046, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667055, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667060, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667065, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667070, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667078, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667083, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667088, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667093, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667098, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667103, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667113, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667118, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667122, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667127, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667135, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667140, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667145, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667150, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667157, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667164, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667173, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667179, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667183, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667188, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667196, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667201, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667206, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667211, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667216, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667222, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667231, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667236, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667241, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667246, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667254, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667259, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667264, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667269, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667276, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667282, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667292, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667297, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667302, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667307, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667315, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667320, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667325, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667330, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667335, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667340, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667349, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667355, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667359, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667364, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667372, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667377, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667382, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667387, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667395, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667402, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667412, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667417, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667422, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667427, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667435, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667440, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667445, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667450, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667455, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667460, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667469, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667474, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667479, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667484, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667492, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667497, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667502, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667507, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667514, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667521, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667530, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667535, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667540, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667545, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667553, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667558, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667563, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667568, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667573, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667578, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667587, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667592, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667597, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667602, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667610, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667615, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667621, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667625, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667631, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667636, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667645, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667650, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667655, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667660, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667668, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667673, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667678, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83ffadcb8", "tid": 15264, "ts": 1667688, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667699, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667707, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667714, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667724, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83fc1c270", "tid": 15264, "ts": 1667730, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667735, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667740, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667745, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667753, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667758, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667763, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667768, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667773, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667778, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667788, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667793, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667798, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667803, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667811, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667816, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667821, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667826, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667831, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667836, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667845, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667851, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667855, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667860, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667868, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667873, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667878, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667884, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667889, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667894, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667903, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667908, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667913, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667918, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667926, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667931, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667936, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667941, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667946, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667951, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667960, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667966, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667970, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667975, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667983, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667988, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1667993, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1667998, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668003, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668008, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668017, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668022, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668027, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668032, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668040, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668045, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668050, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668055, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668062, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668069, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668078, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668083, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668088, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668093, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668101, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668106, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668111, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668116, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668121, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668126, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668136, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668141, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668145, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668150, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668158, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668163, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668168, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668173, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668182, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668189, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668198, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668203, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668208, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668213, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668221, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668226, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668231, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668236, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668241, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668246, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668256, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668261, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668266, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668271, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668278, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668283, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668288, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668293, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668300, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668308, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668321, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668326, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668331, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668336, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668344, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668349, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668354, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668359, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668365, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668370, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668379, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668384, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668389, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668394, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668402, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668407, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668412, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668417, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668424, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668431, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668441, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668446, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668451, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668456, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668464, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668469, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668474, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668479, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668484, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668489, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668498, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668503, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668508, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668513, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668521, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668526, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668531, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668536, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668545, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668551, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668567, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668572, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668577, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668582, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668590, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668595, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668600, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668605, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668611, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668616, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668625, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668630, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668635, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668640, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668648, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668653, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668658, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668663, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668670, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668677, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668687, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668692, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668696, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668701, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668709, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668725, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668731, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668735, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668741, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668746, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668756, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668761, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668777, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668782, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668791, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668796, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668812, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668817, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668823, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668828, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668848, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668853, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668858, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668863, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668871, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668876, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668881, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83fc1dc78", "tid": 15264, "ts": 1668891, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668903, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668911, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668918, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668932, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83fc1c930", "tid": 15264, "ts": 1668937, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668943, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668948, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668953, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668961, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668966, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1668971, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668976, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668982, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668987, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1668996, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669001, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669006, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669011, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669019, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669024, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669029, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669034, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669039, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669044, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669053, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669058, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669063, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669068, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669076, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669081, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669086, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669091, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669096, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669101, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669111, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669116, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669120, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669125, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669133, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669138, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669143, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669148, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669153, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669158, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669168, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669173, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669178, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669183, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669190, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669195, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669200, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669205, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669210, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669215, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669225, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669230, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669235, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669239, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669248, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669252, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669257, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669262, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669269, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669276, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669286, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669291, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669296, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669301, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669309, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669314, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669319, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669323, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669329, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669334, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669343, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669348, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669353, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669358, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669366, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669371, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669376, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669380, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669389, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669396, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669405, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669410, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669415, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669420, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669428, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669433, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669438, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669443, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669448, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669453, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669462, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669467, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669472, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669477, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669485, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669490, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669495, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669500, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669507, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669514, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669523, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669528, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669533, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669538, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669546, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669551, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669556, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669561, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669566, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669571, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669580, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669585, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669590, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669595, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669603, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669608, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669613, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669618, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669625, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669631, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669641, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669646, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669651, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669656, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669664, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669669, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669674, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669679, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669684, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669689, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669698, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669703, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669708, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669713, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669721, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669726, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669731, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669736, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669744, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669751, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669760, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669765, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669770, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669775, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669783, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669788, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669793, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669798, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669803, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669808, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669817, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669822, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669827, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669832, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669840, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669845, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669850, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669855, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669862, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669868, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669878, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669883, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669888, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669893, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669901, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669905, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669910, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669915, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669920, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669926, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669935, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669940, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669945, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669949, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669957, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669962, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1669967, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669972, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669977, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669982, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669991, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1669996, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1670001, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1670006, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1670014, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1670019, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1670024, "pid": 4912 }, { "name": "GPUMemoryAllocator", "cat": "default", "ph": "O", "id": "0x1e83b5cfd10", "tid": 15264, "ts": 1670067, "pid": 4912, "args": { "snapshot": { "Flags": 4, "RecordOptions": { "Flags": 255, "MinMessageLevel": 0 }, "IsUMA": 1, "ResourceHeapTier": 2, "PreferredResourceHeapSize": 4194304, "MaxResourceHeapSize": 34359738368, "MaxResourceSizeForPooling": 4194304, "MaxVideoMemoryBudget": 0.950000, "TotalResourceBudgetLimit": 0, "VideoMemoryEvictSize": 0, "ResourceFragmentationLimit": 0.125000 } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1670127, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4000000, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1670137, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1670144, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1670152, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1670159, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1670169, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1670174, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e83fc1c8a0", "tid": 15264, "ts": 1671475, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e83fc1c8a0", "tid": 15264, "ts": 1671515, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1671530, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1671536, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1671543, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1671550, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1671556, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1671561, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1671621, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e83d74cb30", "tid": 15264, "ts": 1671630, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1671638, "pid": 4912, "args": { "value": 1493 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1671655, "pid": 4912, "args": { "value": 3 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1671661, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1671666, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1671672, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e83d74cb30", "tid": 15264, "ts": 1671716, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 4063232, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83fc1c8a0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 4000000, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1671726, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1671853, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4194304, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1671864, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1671870, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1671876, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1671882, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1671891, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1671897, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e83fc1c0c0", "tid": 15264, "ts": 1672954, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e83fc1c0c0", "tid": 15264, "ts": 1672992, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 2, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1673005, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1673011, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1673017, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1673024, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1673030, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1673035, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1673093, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e83d74c130", "tid": 15264, "ts": 1673102, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1673109, "pid": 4912, "args": { "value": 1238 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1673126, "pid": 4912, "args": { "value": 1 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1673132, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1673138, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1673144, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e83d74c130", "tid": 15264, "ts": 1673185, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 4194304, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83fc1c0c0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 4194304, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1673195, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1673316, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4194304, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1673326, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1673333, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1673339, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1673345, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1673352, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1673358, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e83fc1c390", "tid": 15264, "ts": 1674341, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e83fc1c390", "tid": 15264, "ts": 1674378, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 2, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1674392, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1674398, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1674404, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1674410, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1674416, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1674421, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1674486, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e83d74cdb0", "tid": 15264, "ts": 1674495, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1674502, "pid": 4912, "args": { "value": 1168 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1674518, "pid": 4912, "args": { "value": 1 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1674525, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1674530, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1674536, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e83d74cdb0", "tid": 15264, "ts": 1674578, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 4194304, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83fc1c390" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 4194304, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1674588, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1674711, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 3 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 250000, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 1024, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1674722, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1674728, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1674734, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1674740, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1674754, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1674760, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e83fc1be80", "tid": 15264, "ts": 1675742, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e83fc1be80", "tid": 15264, "ts": 1675780, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 3, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1675793, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1675799, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1675806, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1675812, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1675818, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1675823, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1675882, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e83d74d210", "tid": 15264, "ts": 1675891, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1675898, "pid": 4912, "args": { "value": 1169 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1675915, "pid": 4912, "args": { "value": 24 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1675921, "pid": 4912, "args": { "value": 4 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1675927, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1675932, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e83d74d210", "tid": 15264, "ts": 1675973, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 262144, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83fc1be80" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 250000, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1675983, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1676094, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1676102, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1676108, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1676116, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1676126, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1676131, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1676136, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e83d74cb30", "tid": 15264, "ts": 1676141, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1676207, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1676251, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1676258, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1676263, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1676272, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1676282, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1676288, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1676293, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e83d74d210", "tid": 15264, "ts": 1676298, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1676349, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1676392, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1676399, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1676405, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1676411, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1676423, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1676429, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1676434, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e83d74c130", "tid": 15264, "ts": 1676439, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1676513, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1676579, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1676586, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1676591, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1676600, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1676606, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1676611, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1676616, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e83d74cdb0", "tid": 15264, "ts": 1676621, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1676671, "pid": 4912 }, { "name": "GPUMemoryAllocator", "cat": "default", "ph": "D", "id": "0x1e83b5cfd10", "tid": 15264, "ts": 1676690, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e840170a48", "tid": 15264, "ts": 1676729, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1676738, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e83fc1be80", "tid": 15264, "ts": 1676743, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1676919, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83b5934d0", "tid": 15264, "ts": 1676931, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e840170c88", "tid": 15264, "ts": 1676957, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1676964, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e83fc1c390", "tid": 15264, "ts": 1676969, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1677111, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1677121, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e83fc1c0c0", "tid": 15264, "ts": 1677126, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1677297, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83b593e60", "tid": 15264, "ts": 1677308, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83fc867f8", "tid": 15264, "ts": 1677335, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1677342, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e83fc1c8a0", "tid": 15264, "ts": 1677348, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1677519, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83b5940a0", "tid": 15264, "ts": 1677530, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83fc86918", "tid": 15264, "ts": 1677556, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83b555b40", "tid": 15264, "ts": 1677563, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83ffad4d8", "tid": 15264, "ts": 1677587, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83b556050", "tid": 15264, "ts": 1677594, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83ffac998", "tid": 15264, "ts": 1677617, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83fc1c9c0", "tid": 15264, "ts": 1677623, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83ffadcb8", "tid": 15264, "ts": 1677647, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83fc1c270", "tid": 15264, "ts": 1677653, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83fc1dc78", "tid": 15264, "ts": 1677677, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83fc1c930", "tid": 15264, "ts": 1677684, "pid": 4912 }, { "name": "thread_name", "cat": "__metadata", "ph": "M", "tid": 15264, "ts": 1742450, "pid": 4912, "args": { "name": "GPGMM_MainThread" } } ] } \ No newline at end of file +{ "traceEvents": [ { "name": "thread_name", "cat": "__metadata", "ph": "M", "tid": 7996, "ts": 1299799, "pid": 31040, "args": { "name": "GPGMM_MainThread" } }, { "name": "GPUMemoryAllocator", "cat": "default", "ph": "N", "id": "0x1d174a26140", "tid": 7996, "ts": 1299822, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d1703f5d98", "tid": 7996, "ts": 1299837, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d17040aca0", "tid": 7996, "ts": 1299892, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d1703f5eb8", "tid": 7996, "ts": 1301125, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d17040a040", "tid": 7996, "ts": 1301168, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d17041d688", "tid": 7996, "ts": 1302380, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d170409980", "tid": 7996, "ts": 1302422, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d17041ee28", "tid": 7996, "ts": 1303713, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d1704032d0", "tid": 7996, "ts": 1303779, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d17041dd48", "tid": 7996, "ts": 1305135, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d170403480", "tid": 7996, "ts": 1305190, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d1750e2418", "tid": 7996, "ts": 1306483, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d1704036c0", "tid": 7996, "ts": 1306527, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d1750e2778", "tid": 7996, "ts": 1307753, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d1750e7d20", "tid": 7996, "ts": 1307795, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d1750e3858", "tid": 7996, "ts": 1309017, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d1750e88f0", "tid": 7996, "ts": 1309060, "pid": 31040 }, { "name": "GPUMemoryAllocator", "cat": "default", "ph": "O", "id": "0x1d174a26140", "tid": 7996, "ts": 1310290, "pid": 31040, "args": { "snapshot": { "Flags": 4, "RecordOptions": { "Flags": 3, "MinMessageLevel": 0 }, "IsUMA": 1, "ResourceHeapTier": 2, "PreferredResourceHeapSize": 4194304, "MaxResourceHeapSize": 34359738368, "MaxVideoMemoryBudget": 0.950000, "TotalResourceBudgetLimit": 0, "EvictLimit": 0, "MemoryFragmentationLimit": 0.125000 } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1310353, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4000000, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d1750e8e90", "tid": 7996, "ts": 1312049, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d1750e8e90", "tid": 7996, "ts": 1312114, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1312200, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1312207, "pid": 31040, "args": { "value": 40 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d175201c00", "tid": 7996, "ts": 1312321, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1312329, "pid": 31040, "args": { "value": 1958 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1312359, "pid": 31040, "args": { "value": 0 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1312365, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1312371, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d175201c00", "tid": 7996, "ts": 1312431, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 4063232, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d1750e8e90" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 4000000, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1312544, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4194304, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d1750e87d0", "tid": 7996, "ts": 1313803, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d1750e87d0", "tid": 7996, "ts": 1313843, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 2, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1313882, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1313888, "pid": 31040, "args": { "value": 35 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d175202100", "tid": 7996, "ts": 1313978, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1313986, "pid": 31040, "args": { "value": 1422 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1314014, "pid": 31040, "args": { "value": 0 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1314020, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1314025, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d175202100", "tid": 7996, "ts": 1314071, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 4194304, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d1750e87d0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 4194304, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1314182, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4194304, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d1750e8f20", "tid": 7996, "ts": 1315315, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d1750e8f20", "tid": 7996, "ts": 1315354, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 2, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1315392, "pid": 31040, "args": { "value": 8 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1315398, "pid": 31040, "args": { "value": 33 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d175202ec0", "tid": 7996, "ts": 1315486, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1315493, "pid": 31040, "args": { "value": 1292 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1315519, "pid": 31040, "args": { "value": 0 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1315524, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1315530, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d175202ec0", "tid": 7996, "ts": 1315574, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 4194304, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d1750e8f20" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 4194304, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1315696, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 3 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 250000, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 1024, "clearValue": { } } }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d1750e8470", "tid": 7996, "ts": 1316885, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d1750e8470", "tid": 7996, "ts": 1316923, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 3, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1316960, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1316966, "pid": 31040, "args": { "value": 35 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d1752021a0", "tid": 7996, "ts": 1317043, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1317050, "pid": 31040, "args": { "value": 1336 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1317074, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1317080, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1317085, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d1752021a0", "tid": 7996, "ts": 1317126, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 262144, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d1750e8470" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 250000, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d175201c00", "tid": 7996, "ts": 1317241, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d1752021a0", "tid": 7996, "ts": 1317374, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d175202100", "tid": 7996, "ts": 1317484, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d175202ec0", "tid": 7996, "ts": 1317607, "pid": 31040 }, { "name": "GPUMemoryAllocator", "cat": "default", "ph": "D", "id": "0x1d174a26140", "tid": 7996, "ts": 1317684, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d1703f5d98", "tid": 7996, "ts": 1317731, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d1750e8470", "tid": 7996, "ts": 1317745, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d17040aca0", "tid": 7996, "ts": 1317912, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d1703f5eb8", "tid": 7996, "ts": 1317940, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d1750e8f20", "tid": 7996, "ts": 1317953, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d1750e87d0", "tid": 7996, "ts": 1318081, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d17040a040", "tid": 7996, "ts": 1318203, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d17041d688", "tid": 7996, "ts": 1318232, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d1750e8e90", "tid": 7996, "ts": 1318244, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d170409980", "tid": 7996, "ts": 1318394, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d17041ee28", "tid": 7996, "ts": 1318422, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d1704032d0", "tid": 7996, "ts": 1318430, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d17041dd48", "tid": 7996, "ts": 1318455, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d170403480", "tid": 7996, "ts": 1318461, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d1750e2418", "tid": 7996, "ts": 1318487, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d1704036c0", "tid": 7996, "ts": 1318493, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d1750e2778", "tid": 7996, "ts": 1318517, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d1750e7d20", "tid": 7996, "ts": 1318524, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d1750e3858", "tid": 7996, "ts": 1318548, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d1750e88f0", "tid": 7996, "ts": 1318555, "pid": 31040 } ] } \ No newline at end of file diff --git a/src/tests/capture_replay_tests/traces/directml_samples_directmlxsuperresolution.json b/src/tests/capture_replay_tests/traces/directml_samples_directmlxsuperresolution.json index 8cd99ffb2..16fb17917 100644 --- a/src/tests/capture_replay_tests/traces/directml_samples_directmlxsuperresolution.json +++ b/src/tests/capture_replay_tests/traces/directml_samples_directmlxsuperresolution.json @@ -1 +1 @@ -{ "traceEvents": [ { "name": "GPUMemoryAllocator", "cat": "default", "ph": "N", "id": "0x1e83fdb4790", "tid": 15264, "ts": 1933667, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e840170ec8", "tid": 15264, "ts": 1933687, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1933701, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1933713, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1933723, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1933736, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83b593710", "tid": 15264, "ts": 1933742, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1933748, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1933753, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1933758, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1933767, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1933772, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1933778, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1933783, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1933789, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1933794, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1933804, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1933809, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1933814, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1933819, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1933827, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1933833, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1933838, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1933843, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1933848, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1933854, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1933863, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1933869, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1933873, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1933878, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1933887, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1933892, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1933897, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1933902, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1933907, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1933912, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1933922, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1933927, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1933932, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1933937, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1933945, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1933950, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1933955, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1933960, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1933966, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1933971, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1933980, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1933986, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1933990, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1933995, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934004, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934009, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934014, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934019, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934024, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934029, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934039, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934044, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934049, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934054, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934062, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934067, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934072, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934077, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934085, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934092, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934102, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934107, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934112, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934117, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934125, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934130, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934135, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934141, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934146, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934151, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934161, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934166, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934171, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934176, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934184, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934189, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934194, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934199, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934208, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934215, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934225, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934230, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934235, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934240, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934248, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934254, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934259, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934264, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934269, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934274, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934284, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934289, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934294, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934299, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934307, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934312, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934317, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934322, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934329, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934336, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934346, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934351, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934356, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934361, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934369, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934375, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934380, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934385, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934390, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934395, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934405, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934410, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934415, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934420, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934428, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934433, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934438, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934443, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934450, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934457, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934467, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934472, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934477, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934482, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934490, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934495, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934500, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934505, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934510, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934516, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934525, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934530, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934535, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934540, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934548, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934553, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934559, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934564, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934572, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934579, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934589, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934594, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934599, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934604, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934613, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934618, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934623, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934628, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934633, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934638, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934648, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934653, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934658, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934663, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934671, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934676, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934681, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934686, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934693, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934700, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934710, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934715, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934720, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934725, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934733, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934738, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934744, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934748, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934754, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934759, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934769, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934774, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934779, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934784, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934792, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934797, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934802, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934807, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934813, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934818, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934828, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934833, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934838, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934843, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934851, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934856, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934861, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e840170b68", "tid": 15264, "ts": 1934871, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934883, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934891, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934898, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934916, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83b594520", "tid": 15264, "ts": 1934922, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934928, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934933, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934938, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934947, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934952, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934957, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934962, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934968, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934973, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934983, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1934988, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934993, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1934998, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935007, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935012, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935017, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935022, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935027, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935033, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935042, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935047, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935052, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935057, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935066, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935071, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935076, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935081, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935086, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935091, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935101, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935106, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935111, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935116, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935124, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935129, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935134, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935140, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935145, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935150, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935160, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935165, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935170, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935175, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935183, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935188, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935194, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935199, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935204, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935209, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935219, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935224, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935229, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935234, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935242, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935247, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935252, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935258, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935265, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935272, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935282, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935287, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935292, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935297, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935306, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935311, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935316, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935321, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935326, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935332, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935341, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935346, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935351, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935356, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935365, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935370, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935375, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935380, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935388, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935396, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935405, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935411, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935415, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935421, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935429, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935434, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935439, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935444, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935449, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935454, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935464, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935469, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935474, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935479, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935487, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935492, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935497, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935503, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935510, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935517, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935526, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935531, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935537, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935542, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935550, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935555, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935560, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935565, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935570, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935575, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935585, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935590, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935595, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935600, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935608, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935614, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935619, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935624, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935631, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935638, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935648, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935653, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935658, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935663, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935671, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935676, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935681, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935686, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935692, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935697, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935707, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935712, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935717, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935722, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935730, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935735, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935740, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935745, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935754, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935761, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935771, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935776, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935781, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935786, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935794, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935799, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935804, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935809, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935814, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935820, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935829, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935834, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935839, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935844, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935852, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935858, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935863, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935868, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935875, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935882, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935891, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935896, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935901, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935906, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935915, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935920, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935925, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935930, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935935, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935940, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935950, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935955, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935960, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935965, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935973, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935978, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1935983, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935988, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935994, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1935999, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936009, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936014, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936019, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936024, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936032, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936037, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936042, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83fda92a8", "tid": 15264, "ts": 1936052, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936064, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936072, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936079, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936090, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83b592b40", "tid": 15264, "ts": 1936096, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936101, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936106, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936111, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936120, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936125, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936130, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936135, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936141, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936146, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936155, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936161, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936166, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936171, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936179, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936184, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936189, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936194, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936200, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936205, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936214, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936219, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936224, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936229, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936238, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936243, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936248, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936253, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936258, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936263, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936273, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936278, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936283, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936288, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936296, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936301, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936306, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936312, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936317, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936322, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936332, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936337, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936342, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936347, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936355, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936360, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936365, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936370, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936375, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936381, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936390, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936395, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936400, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936405, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936413, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936419, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936424, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936429, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936436, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936443, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936459, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936465, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936470, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936475, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936484, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936489, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936494, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936499, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936505, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936510, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936520, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936525, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936530, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936535, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936543, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936548, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936553, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936559, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936567, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936575, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936585, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936590, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936595, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936600, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936608, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936614, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936619, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936624, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936629, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936635, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936644, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936649, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936654, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936659, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936667, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936673, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936678, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936683, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936690, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936697, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936707, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936712, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936717, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936722, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936730, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936735, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936741, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936746, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936751, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936756, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936766, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936771, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936776, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936781, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936789, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936794, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936799, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936805, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936812, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936819, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936829, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936834, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936839, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936844, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936852, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936858, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936863, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936868, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936873, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936878, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936888, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936893, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936898, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936903, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936911, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936917, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936922, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936927, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936935, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936942, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936952, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936957, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936962, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936967, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936976, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936981, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1936986, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936991, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1936996, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937001, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937011, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937016, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937021, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937026, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937034, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937040, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937045, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937050, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937057, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937064, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937074, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937079, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937084, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937089, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937097, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937102, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937108, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937112, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937118, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937123, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937132, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937138, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937143, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937148, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937156, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937161, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937166, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937171, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937176, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937182, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937191, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937196, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937201, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937206, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937215, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937220, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937225, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83fdaa808", "tid": 15264, "ts": 1937235, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937247, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937255, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937262, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937276, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83b555900", "tid": 15264, "ts": 1937282, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937287, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937292, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937297, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937306, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937311, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937316, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937321, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937327, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937332, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937342, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937347, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937352, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937357, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937365, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937370, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937376, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937381, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937386, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937391, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937401, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937406, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937411, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937416, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937424, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937430, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937435, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937440, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937445, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937450, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937460, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937465, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937470, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937475, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937483, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937488, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937494, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937499, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937504, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937509, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937519, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937524, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937529, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937534, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937542, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937547, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937552, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937557, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937563, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937568, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937577, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937583, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937588, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937593, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937601, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937606, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937611, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937616, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937624, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937631, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937640, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937646, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937651, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937656, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937664, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937669, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937674, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937679, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937684, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937690, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937699, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937704, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937709, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937714, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937722, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937727, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937733, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937738, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937746, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937753, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937763, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937768, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937773, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937778, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937786, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937791, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937796, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937801, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937807, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937812, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937821, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937827, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937831, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937836, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937845, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937850, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937855, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937860, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937867, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937874, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937883, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937889, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937894, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937899, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937907, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937912, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937917, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937922, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937928, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937933, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937942, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937948, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937953, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937958, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937966, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937971, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1937976, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937981, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937988, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1937995, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938004, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938010, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938015, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938020, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938028, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938033, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938038, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938043, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938049, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938054, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938063, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938069, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938074, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938078, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938087, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938092, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938097, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938102, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938110, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938117, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938127, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938132, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938137, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938142, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938150, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938156, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938161, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938166, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938171, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938176, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938185, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938191, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938196, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938201, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938209, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938214, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938219, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938224, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938231, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938238, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938248, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938253, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938258, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938263, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938271, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938277, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938282, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938287, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938292, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938297, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938307, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938312, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938317, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938322, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938330, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938335, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938340, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938345, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938351, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938356, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938365, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938371, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938376, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938380, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938389, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938394, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938399, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83d7283d8", "tid": 15264, "ts": 1938409, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938421, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938429, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938436, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938453, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83b556290", "tid": 15264, "ts": 1938459, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938464, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938470, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938475, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938483, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938488, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938494, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938499, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938504, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938510, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938519, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938525, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938530, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938535, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938543, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938548, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938553, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938558, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938564, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938569, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938578, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938584, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938589, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938594, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938602, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938607, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938612, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938617, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938623, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938628, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938637, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938643, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938647, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938652, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938661, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938666, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938671, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938676, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938681, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938686, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938696, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938701, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938706, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938711, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938719, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938724, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938730, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938735, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938740, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938745, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938755, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938760, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938765, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938770, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938778, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938783, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938788, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938794, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938801, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938808, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938818, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938823, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938828, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938833, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938842, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938847, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938852, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938857, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938862, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938868, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938877, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938882, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938887, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938892, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938901, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938906, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938911, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938916, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938924, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938932, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938945, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938950, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938955, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938961, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938969, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938974, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1938979, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938984, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938990, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1938995, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939005, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939010, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939015, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939020, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939028, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939033, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939038, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939043, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939051, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939058, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939067, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939073, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939078, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939083, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939091, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939096, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939101, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939106, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939112, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939117, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939126, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939131, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939136, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939141, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939149, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939155, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939160, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939165, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939172, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939179, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939188, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939194, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939199, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939204, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939212, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939217, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939222, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939227, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939232, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939238, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939247, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939252, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939257, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939262, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939270, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939276, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939281, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939286, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939294, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939301, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939311, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939316, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939321, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939326, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939334, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939340, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939345, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939350, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939355, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939360, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939370, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939375, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939380, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939385, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939393, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939398, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939403, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939408, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939415, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939422, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939432, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939437, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939442, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939447, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939455, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939461, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939466, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939471, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939476, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939481, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939491, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939496, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939501, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939506, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939514, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939519, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939524, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939529, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939535, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939540, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939549, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939554, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939559, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939564, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939572, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939578, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939583, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83d7295d8", "tid": 15264, "ts": 1939593, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939604, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939612, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939619, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939630, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83ffadc90", "tid": 15264, "ts": 1939642, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939648, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939653, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939658, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939666, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939672, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939677, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939682, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939688, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939693, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939703, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939708, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939713, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939718, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939726, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939731, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939736, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939741, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939747, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939752, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939762, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939767, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939772, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939777, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939785, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939790, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939795, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939800, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939806, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939811, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939820, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939826, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939830, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939835, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939844, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939849, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939854, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939859, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939864, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939869, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939879, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939884, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939889, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939894, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939902, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939907, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939913, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939918, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939923, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939928, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939937, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939943, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939947, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939952, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939961, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939966, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1939971, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939976, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939983, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1939990, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940000, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940006, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940010, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940015, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940023, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940029, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940034, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940039, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940044, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940049, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940059, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940064, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940069, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940074, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940082, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940087, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940092, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940097, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940106, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940113, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940123, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940128, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940133, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940138, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940146, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940151, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940157, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940161, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940167, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940172, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940182, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940187, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940192, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940197, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940205, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940210, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940215, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940220, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940227, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940234, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940244, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940249, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940255, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940259, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940268, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940273, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940278, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940283, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940288, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940293, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940303, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940308, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940313, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940318, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940326, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940331, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940336, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940341, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940348, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940355, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940365, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940370, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940375, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940380, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940388, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940394, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940399, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940404, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940409, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940414, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940424, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940429, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940434, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940439, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940447, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940452, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940457, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940462, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940471, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940478, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940488, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940493, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940498, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940503, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940511, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940516, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940521, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940526, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940532, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940537, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940547, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940552, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940557, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940562, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940570, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940575, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940580, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940585, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940592, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940599, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940609, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940614, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940619, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940624, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940632, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940637, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940642, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940647, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940653, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940658, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940667, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940673, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940678, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940683, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940691, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940696, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940701, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940706, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940711, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940717, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940726, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940731, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940736, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940741, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940749, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940754, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940760, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83d728f18", "tid": 15264, "ts": 1940770, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940781, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940789, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940796, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940807, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83ffacf10", "tid": 15264, "ts": 1940813, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940818, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940823, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940828, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940836, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940841, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940847, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940852, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940857, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940862, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940872, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940877, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940882, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940887, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940895, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940901, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940905, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940911, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940916, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940921, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940931, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940936, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940941, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940946, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940954, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940959, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940964, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940969, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940975, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940980, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940989, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1940995, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1940999, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941004, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941012, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941018, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941023, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941028, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941033, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941038, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941048, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941053, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941058, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941063, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941071, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941076, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941081, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941086, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941092, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941097, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941106, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941112, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941117, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941122, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941130, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941135, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941140, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941145, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941152, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941159, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941169, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941174, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941179, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941184, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941192, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941197, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941202, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941208, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941213, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941218, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941227, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941233, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941238, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941243, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941251, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941256, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941261, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941266, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941275, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941282, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941291, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941297, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941302, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941307, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941315, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941320, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941325, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941330, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941335, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941341, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941350, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941355, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941360, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941365, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941373, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941378, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941384, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941388, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941396, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941403, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941416, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941421, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941426, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941431, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941440, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941445, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941450, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941455, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941461, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941466, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941476, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941481, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941486, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941491, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941499, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941504, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941509, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941515, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941522, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941529, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941539, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941544, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941549, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941554, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941562, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941567, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941573, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941578, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941583, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941588, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941598, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941603, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941608, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941613, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941621, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941626, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941631, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941636, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941645, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941653, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941668, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941674, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941679, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941684, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941692, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941697, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941702, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941708, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941713, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941719, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941728, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941733, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941738, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941743, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941751, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941757, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941762, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941767, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941774, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941781, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941791, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941797, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941802, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941807, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941815, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941820, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941825, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941830, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941836, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941841, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941850, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941855, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941860, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941865, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941874, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941879, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941884, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941889, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941894, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941900, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941909, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941914, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941919, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941924, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941932, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941938, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1941943, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83ffaf188", "tid": 15264, "ts": 1941953, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941965, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941973, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941980, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1941994, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83ffacfa0", "tid": 15264, "ts": 1942000, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942006, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942011, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942016, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942025, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942030, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942035, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942040, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942046, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942051, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942061, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942066, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942071, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942076, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942084, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942089, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942095, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942100, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942105, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942110, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942120, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942125, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942130, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942135, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942143, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942148, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942154, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942159, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942164, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942169, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942179, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942184, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942189, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942194, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942202, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942208, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942213, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942218, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942223, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942228, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942238, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942243, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942248, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942253, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942261, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942266, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942272, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942277, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942282, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942287, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942297, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942302, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942307, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942312, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942320, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942325, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942331, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942336, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942343, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942350, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942360, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942365, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942370, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942375, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942384, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942389, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942394, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942399, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942404, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942409, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942419, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942424, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942429, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942434, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942442, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942448, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942453, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942458, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942466, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942473, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942483, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942488, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942493, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942498, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942506, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942512, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942517, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942522, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942527, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942532, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942542, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942547, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942552, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942557, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942565, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942570, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942575, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942580, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942588, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942595, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942604, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942610, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942615, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942620, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942628, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942633, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942638, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942643, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942649, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942654, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942664, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942669, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942674, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942679, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942687, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942692, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942697, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942702, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942709, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942716, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942726, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942731, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942736, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942741, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942750, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942755, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942760, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942765, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942771, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942776, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942785, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942790, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942795, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942800, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942808, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942814, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942819, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942824, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942832, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942839, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942849, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942854, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942859, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942864, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942872, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942877, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942882, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942888, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942893, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942898, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942908, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942913, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942918, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942923, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942931, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942936, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942941, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942946, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942953, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942960, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942970, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1942975, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942980, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942985, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942993, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1942998, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1943004, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1943009, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1943014, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1943019, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1943029, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1943034, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1943039, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1943044, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1943052, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1943057, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1943062, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1943067, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1943073, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1943078, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1943087, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1943092, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1943097, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1943102, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1943111, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1943116, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1943121, "pid": 4912 }, { "name": "GPUMemoryAllocator", "cat": "default", "ph": "O", "id": "0x1e83fdb4790", "tid": 15264, "ts": 1943165, "pid": 4912, "args": { "snapshot": { "Flags": 4, "RecordOptions": { "Flags": 255, "MinMessageLevel": 0 }, "IsUMA": 1, "ResourceHeapTier": 2, "PreferredResourceHeapSize": 4194304, "MaxResourceHeapSize": 34359738368, "MaxResourceSizeForPooling": 0, "MaxVideoMemoryBudget": 0.000000, "TotalResourceBudgetLimit": 0, "VideoMemoryEvictSize": 0, "ResourceFragmentationLimit": 0.125000 } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1943225, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 96, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1943235, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1943243, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1943249, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1943255, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1943265, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1943270, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e83ffac970", "tid": 15264, "ts": 1943690, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e83ffac970", "tid": 15264, "ts": 1943740, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 2, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1943755, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1943762, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1943769, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1943802, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1943809, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1943815, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1943877, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400bd7d0", "tid": 15264, "ts": 1943886, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1943894, "pid": 4912, "args": { "value": 650 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1943910, "pid": 4912, "args": { "value": 98 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1943917, "pid": 4912, "args": { "value": 4 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1943922, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1943928, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400bd7d0", "tid": 15264, "ts": 1943973, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffac970" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 96, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1943984, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1944113, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1944123, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1944130, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1944136, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1944144, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1944150, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1944155, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1944216, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400bd870", "tid": 15264, "ts": 1944225, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1944232, "pid": 4912, "args": { "value": 101 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1944249, "pid": 4912, "args": { "value": 96 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1944255, "pid": 4912, "args": { "value": 4 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1944261, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1944266, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400bd870", "tid": 15264, "ts": 1944309, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 65536, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffac970" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1944319, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1944412, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 12, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1944422, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1944428, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1944434, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1944441, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1944447, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1944453, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1944511, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400bfc10", "tid": 15264, "ts": 1944520, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1944527, "pid": 4912, "args": { "value": 98 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1944544, "pid": 4912, "args": { "value": 95 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1944550, "pid": 4912, "args": { "value": 3 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1944556, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1944561, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400bfc10", "tid": 15264, "ts": 1944604, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 131072, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffac970" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 12, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1944614, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1944731, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1920, "Height": 1080, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 128, "clearValue": { "Format": 87, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 1.000000 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1944742, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1944765, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83ffad660", "tid": 15264, "ts": 1944771, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1944777, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e83fface80", "tid": 15264, "ts": 1945311, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e83fface80", "tid": 15264, "ts": 1945361, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 8388608, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 8388608, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1945374, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1945381, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1945386, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1945456, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400c10b0", "tid": 15264, "ts": 1945466, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1945921, "pid": 4912, "args": { "Description": "Resource allocation size is larger then the resource size (8388608 vs 8323072 bytes).", "ID": 3 } }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1945938, "pid": 4912, "args": { "value": 1188 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1945970, "pid": 4912, "args": { "value": 98 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1945976, "pid": 4912, "args": { "value": 12 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1945982, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1945988, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400c10b0", "tid": 15264, "ts": 1946055, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 8388608, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 0, "ResourceHeap": { "id_ref": "0x1e83fface80" }, "Resource": { "Dimension": 3, "Alignment": 65536, "Width": 1920, "Height": 1080, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1946065, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1946249, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4800, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1946265, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1946275, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1946283, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1946290, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1946299, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1946305, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e83ffad1e0", "tid": 15264, "ts": 1946665, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e83ffad1e0", "tid": 15264, "ts": 1946715, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1946729, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1946735, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1946742, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1946748, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1946754, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1946760, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1946819, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400c0cf0", "tid": 15264, "ts": 1946828, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1946836, "pid": 4912, "args": { "value": 561 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1946853, "pid": 4912, "args": { "value": 98 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1946859, "pid": 4912, "args": { "value": 16 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1946864, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1946870, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400c0cf0", "tid": 15264, "ts": 1946914, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffad1e0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 4800, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1946924, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1947052, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1947062, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1947069, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1947075, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1947083, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1947089, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1947094, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1947153, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400bf710", "tid": 15264, "ts": 1947162, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1947170, "pid": 4912, "args": { "value": 99 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1947186, "pid": 4912, "args": { "value": 98 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1947192, "pid": 4912, "args": { "value": 16 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1947198, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1947204, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400bf710", "tid": 15264, "ts": 1947247, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 65536, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffad1e0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1947257, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1947353, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4800, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1947370, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1947377, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1947383, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1947391, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1947396, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1947402, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1947460, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400bf530", "tid": 15264, "ts": 1947469, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1947477, "pid": 4912, "args": { "value": 99 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1947493, "pid": 4912, "args": { "value": 97 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1947499, "pid": 4912, "args": { "value": 16 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1947505, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1947511, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400bf530", "tid": 15264, "ts": 1947552, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 196608, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffac970" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 4800, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1947562, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1947655, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1947665, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1947671, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1947677, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1947685, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1947691, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1947696, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1947754, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400c11f0", "tid": 15264, "ts": 1947762, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1947770, "pid": 4912, "args": { "value": 98 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1947786, "pid": 4912, "args": { "value": 97 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1947792, "pid": 4912, "args": { "value": 16 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1947798, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1947804, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400c11f0", "tid": 15264, "ts": 1947845, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 262144, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffac970" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1947855, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1947947, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 36864, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1947967, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1947974, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1947980, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1947987, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1947993, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1947998, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1948070, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400bfa30", "tid": 15264, "ts": 1948079, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1948087, "pid": 4912, "args": { "value": 112 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1948103, "pid": 4912, "args": { "value": 96 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1948110, "pid": 4912, "args": { "value": 16 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1948116, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1948122, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400bfa30", "tid": 15264, "ts": 1948170, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 131072, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffad1e0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 36864, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1948190, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1948315, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 128, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1948327, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1948334, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1948340, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1948347, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1948353, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1948359, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1948431, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400c0d90", "tid": 15264, "ts": 1948440, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1948448, "pid": 4912, "args": { "value": 113 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1948464, "pid": 4912, "args": { "value": 96 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1948470, "pid": 4912, "args": { "value": 16 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1948476, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1948482, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400c0d90", "tid": 15264, "ts": 1948524, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 196608, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffad1e0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 128, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1948533, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1948626, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 36864, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1948636, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1948643, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1948649, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1948656, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1948662, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1948668, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1948725, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400c0250", "tid": 15264, "ts": 1948734, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1948742, "pid": 4912, "args": { "value": 98 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1948758, "pid": 4912, "args": { "value": 96 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1948764, "pid": 4912, "args": { "value": 16 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1948770, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1948776, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400c0250", "tid": 15264, "ts": 1948817, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 327680, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffac970" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 36864, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1948827, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1948918, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 128, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1948928, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1948935, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1948941, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1948948, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1948955, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1948961, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1949018, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400c0070", "tid": 15264, "ts": 1949027, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1949035, "pid": 4912, "args": { "value": 99 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1949051, "pid": 4912, "args": { "value": 95 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1949057, "pid": 4912, "args": { "value": 16 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1949063, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1949069, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400c0070", "tid": 15264, "ts": 1949112, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 393216, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffac970" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 128, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1949122, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1949218, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 73728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1949228, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1949235, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1949241, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1949247, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1949254, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1949260, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e83ffadf60", "tid": 15264, "ts": 1950371, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e83ffadf60", "tid": 15264, "ts": 1950421, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1950435, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1950441, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1950448, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1950454, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1950460, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1950466, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1950524, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400c0750", "tid": 15264, "ts": 1950533, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1950541, "pid": 4912, "args": { "value": 1305 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1950557, "pid": 4912, "args": { "value": 95 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1950563, "pid": 4912, "args": { "value": 20 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1950569, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1950575, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400c0750", "tid": 15264, "ts": 1950617, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 131072, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffadf60" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 73728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1950627, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1950750, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 128, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1950761, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1950767, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1950774, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1950781, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1950787, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1950792, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1950853, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400bfb70", "tid": 15264, "ts": 1950862, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1950869, "pid": 4912, "args": { "value": 101 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1950886, "pid": 4912, "args": { "value": 95 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1950892, "pid": 4912, "args": { "value": 20 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1950898, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1950904, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400bfb70", "tid": 15264, "ts": 1950945, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 262144, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffad1e0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 128, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1950961, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1951055, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 73728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1951065, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1951071, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1951078, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1951084, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1951091, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1951097, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e83ffac610", "tid": 15264, "ts": 1952193, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e83ffac610", "tid": 15264, "ts": 1952243, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 2, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1952262, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1952269, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1952275, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1952282, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1952288, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1952293, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1952352, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400c1150", "tid": 15264, "ts": 1952360, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1952368, "pid": 4912, "args": { "value": 1296 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1952385, "pid": 4912, "args": { "value": 95 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1952391, "pid": 4912, "args": { "value": 24 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1952397, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1952403, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400c1150", "tid": 15264, "ts": 1952445, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 131072, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffac610" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 73728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1952455, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1952579, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 128, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1952590, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1952596, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1952602, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1952610, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1952616, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1952621, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1952683, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400c02f0", "tid": 15264, "ts": 1952692, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1952700, "pid": 4912, "args": { "value": 102 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1952716, "pid": 4912, "args": { "value": 95 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1952722, "pid": 4912, "args": { "value": 24 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1952728, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1952734, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400c02f0", "tid": 15264, "ts": 1952783, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 458752, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffac970" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 128, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1952793, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1952888, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 102400, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1952898, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1952904, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1952910, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1952918, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1952924, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1952929, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1952988, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400c1010", "tid": 15264, "ts": 1952997, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1953004, "pid": 4912, "args": { "value": 99 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1953021, "pid": 4912, "args": { "value": 95 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1953027, "pid": 4912, "args": { "value": 23 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1953033, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1953038, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400c1010", "tid": 15264, "ts": 1953081, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 131072, "HeapOffset": 131072, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffadf60" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 102400, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1953091, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1953185, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1953195, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1953202, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1953208, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1953215, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1953221, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1953226, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1953285, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400bfad0", "tid": 15264, "ts": 1953294, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1953301, "pid": 4912, "args": { "value": 99 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1953318, "pid": 4912, "args": { "value": 94 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1953324, "pid": 4912, "args": { "value": 23 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1953330, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1953336, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400bfad0", "tid": 15264, "ts": 1953386, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 327680, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffad1e0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1953396, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1953491, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 102400, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1953500, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1953507, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1953513, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1953521, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1953527, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1953532, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1953591, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400c0a70", "tid": 15264, "ts": 1953600, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1953607, "pid": 4912, "args": { "value": 99 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1953623, "pid": 4912, "args": { "value": 94 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1953629, "pid": 4912, "args": { "value": 23 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1953635, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1953641, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400c0a70", "tid": 15264, "ts": 1953682, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 131072, "HeapOffset": 131072, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffac610" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 102400, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1953692, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1953783, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1953793, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1953800, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1953806, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1953813, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1953819, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1953824, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1953882, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400bf170", "tid": 15264, "ts": 1953890, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1953898, "pid": 4912, "args": { "value": 97 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1953914, "pid": 4912, "args": { "value": 94 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1953920, "pid": 4912, "args": { "value": 23 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1953926, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1953932, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400bf170", "tid": 15264, "ts": 1953974, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 524288, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffac970" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1953984, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1954078, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 18432, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1954088, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1954094, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1954100, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1954108, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1954114, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1954119, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1954177, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400c1650", "tid": 15264, "ts": 1954186, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1954194, "pid": 4912, "args": { "value": 98 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1954210, "pid": 4912, "args": { "value": 93 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1954216, "pid": 4912, "args": { "value": 23 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1954222, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1954228, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400c1650", "tid": 15264, "ts": 1954268, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 393216, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffad1e0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 18432, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1954278, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1954371, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1954380, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1954387, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1954393, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1954400, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1954406, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1954411, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1954469, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400c13d0", "tid": 15264, "ts": 1954478, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1954485, "pid": 4912, "args": { "value": 97 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1954501, "pid": 4912, "args": { "value": 93 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1954508, "pid": 4912, "args": { "value": 23 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1954513, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1954519, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400c13d0", "tid": 15264, "ts": 1954560, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 458752, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffad1e0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1954570, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1954662, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 18432, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1954672, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1954679, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1954685, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1954692, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1954698, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1954703, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1954761, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400c0f70", "tid": 15264, "ts": 1954770, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1954777, "pid": 4912, "args": { "value": 97 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1954793, "pid": 4912, "args": { "value": 93 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1954799, "pid": 4912, "args": { "value": 23 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1954805, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1954811, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400c0f70", "tid": 15264, "ts": 1954852, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 589824, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffac970" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 18432, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1954862, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1954969, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1954980, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1954987, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1954993, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1955000, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1955007, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1955012, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1955071, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400c0570", "tid": 15264, "ts": 1955080, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1955088, "pid": 4912, "args": { "value": 100 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1955105, "pid": 4912, "args": { "value": 92 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1955111, "pid": 4912, "args": { "value": 23 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1955117, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1955123, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400c0570", "tid": 15264, "ts": 1955179, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 655360, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffac970" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1955189, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1955286, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 18432, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1955297, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1955303, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1955310, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1955317, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1955323, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1955328, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1955386, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400bf850", "tid": 15264, "ts": 1955395, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1955402, "pid": 4912, "args": { "value": 97 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1955418, "pid": 4912, "args": { "value": 92 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1955424, "pid": 4912, "args": { "value": 23 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1955430, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1955436, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400bf850", "tid": 15264, "ts": 1955476, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 524288, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffad1e0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 18432, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1955486, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1955578, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1955594, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1955600, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1955607, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1955614, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1955620, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1955625, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1955684, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400c0110", "tid": 15264, "ts": 1955693, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1955701, "pid": 4912, "args": { "value": 99 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1955717, "pid": 4912, "args": { "value": 92 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1955723, "pid": 4912, "args": { "value": 23 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1955729, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1955735, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400c0110", "tid": 15264, "ts": 1955776, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 589824, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffad1e0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1955785, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1955878, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 18432, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1955888, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1955895, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1955901, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1955908, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1955914, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1955919, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1955978, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400c0890", "tid": 15264, "ts": 1955987, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1955994, "pid": 4912, "args": { "value": 98 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1956010, "pid": 4912, "args": { "value": 92 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1956016, "pid": 4912, "args": { "value": 23 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1956022, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1956028, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400c0890", "tid": 15264, "ts": 1956069, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 720896, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffac970" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 18432, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1956079, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1956171, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1956181, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1956187, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1956193, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1956211, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1956218, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1956223, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1956282, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400bf2b0", "tid": 15264, "ts": 1956291, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1956299, "pid": 4912, "args": { "value": 111 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1956316, "pid": 4912, "args": { "value": 91 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1956322, "pid": 4912, "args": { "value": 23 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1956328, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1956334, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400bf2b0", "tid": 15264, "ts": 1956376, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 786432, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffac970" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1956386, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1956480, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1956491, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1956497, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1956503, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1956511, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1956517, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1956522, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1956581, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400c1510", "tid": 15264, "ts": 1956591, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1956598, "pid": 4912, "args": { "value": 100 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1956615, "pid": 4912, "args": { "value": 91 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1956621, "pid": 4912, "args": { "value": 23 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1956627, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1956633, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400c1510", "tid": 15264, "ts": 1956675, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 655360, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffad1e0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 1728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1956685, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1956780, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1956790, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1956797, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1956803, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1956811, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1956817, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1956822, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1956890, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400c09d0", "tid": 15264, "ts": 1956899, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1956910, "pid": 4912, "args": { "value": 111 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1956933, "pid": 4912, "args": { "value": 91 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1956943, "pid": 4912, "args": { "value": 23 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1956957, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1956966, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400c09d0", "tid": 15264, "ts": 1957020, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 851968, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffac970" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 1728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1957031, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1957113, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1957121, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1957127, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400bf530", "tid": 15264, "ts": 1957133, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1957202, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1957236, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1957243, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1957249, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400c11f0", "tid": 15264, "ts": 1957254, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1957309, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1957342, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1957349, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1957355, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400c0250", "tid": 15264, "ts": 1957370, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1957434, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1957468, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1957475, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1957481, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400c0070", "tid": 15264, "ts": 1957486, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1957542, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1957575, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1957582, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1957588, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400c1150", "tid": 15264, "ts": 1957593, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1957646, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1957695, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1957707, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1957726, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400c02f0", "tid": 15264, "ts": 1957731, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1957796, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1957841, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1957848, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1957854, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1957860, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1957874, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1957880, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1957885, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400c0a70", "tid": 15264, "ts": 1957890, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1957942, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1957976, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1957983, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1957988, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400bf170", "tid": 15264, "ts": 1957994, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1958045, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1958076, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1958083, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1958089, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400c0f70", "tid": 15264, "ts": 1958094, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1958145, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1958176, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1958183, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1958189, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400c0570", "tid": 15264, "ts": 1958194, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1958244, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1958276, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1958282, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1958288, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400c0890", "tid": 15264, "ts": 1958293, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1958343, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1958375, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1958382, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1958388, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400bf2b0", "tid": 15264, "ts": 1958393, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1958443, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1958474, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1958481, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1958487, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400c09d0", "tid": 15264, "ts": 1958492, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1958542, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1958598, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 3110400, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1958608, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1958615, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1958625, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1958634, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1958643, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1958649, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e8401073c0", "tid": 15264, "ts": 1959750, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e8401073c0", "tid": 15264, "ts": 1959823, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1959839, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1959846, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1959853, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1959860, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1959867, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1959872, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1959933, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400c1470", "tid": 15264, "ts": 1959942, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1959951, "pid": 4912, "args": { "value": 1335 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1959969, "pid": 4912, "args": { "value": 82 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1959976, "pid": 4912, "args": { "value": 20 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1959981, "pid": 4912, "args": { "value": 14 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1959987, "pid": 4912, "args": { "value": 4 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400c1470", "tid": 15264, "ts": 1960030, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 3145728, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e8401073c0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 3110400, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1960040, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1960169, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 12441600, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1960180, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1960187, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e8401072a0", "tid": 15264, "ts": 1960193, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1960199, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e840108650", "tid": 15264, "ts": 1963113, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e840108650", "tid": 15264, "ts": 1963154, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 12582912, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 12582912, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1963168, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1963175, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1963180, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1963240, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400bfcb0", "tid": 15264, "ts": 1963250, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1963660, "pid": 4912, "args": { "Description": "Resource allocation size is larger then the resource size (12582912 vs 12451840 bytes).", "ID": 3 } }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1963687, "pid": 4912, "args": { "value": 3500 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1963718, "pid": 4912, "args": { "value": 88 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1963724, "pid": 4912, "args": { "value": 33 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1963745, "pid": 4912, "args": { "value": 10 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1963752, "pid": 4912, "args": { "value": 4 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400bfcb0", "tid": 15264, "ts": 1963805, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 12582912, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 0, "ResourceHeap": { "id_ref": "0x1e840108650" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 12441600, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1963816, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1963931, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 298240, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1963943, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1963961, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1963971, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1963980, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1963986, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1963992, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e840108c80", "tid": 15264, "ts": 1965132, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e840108c80", "tid": 15264, "ts": 1965195, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1965210, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1965217, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1965230, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1965237, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1965243, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1965249, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1965311, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400bf2b0", "tid": 15264, "ts": 1965321, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1965339, "pid": 4912, "args": { "value": 1377 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1965360, "pid": 4912, "args": { "value": 88 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1965366, "pid": 4912, "args": { "value": 37 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1965372, "pid": 4912, "args": { "value": 9 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1965378, "pid": 4912, "args": { "value": 4 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400bf2b0", "tid": 15264, "ts": 1965421, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 327680, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e840108c80" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 298240, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1965447, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1965581, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 709171200, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1965592, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1965599, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e8401089b0", "tid": 15264, "ts": 1965606, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1965612, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e840108fe0", "tid": 15264, "ts": 1966758, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e840108fe0", "tid": 15264, "ts": 1966802, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 713031680, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 713031680, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1966817, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1966824, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1966830, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1966890, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400bf7b0", "tid": 15264, "ts": 1966899, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1967293, "pid": 4912, "args": { "Description": "Resource allocation size is larger then the resource size (713031680 vs 709230592 bytes).", "ID": 3 } }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1967312, "pid": 4912, "args": { "value": 1712 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1967352, "pid": 4912, "args": { "value": 99 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1967359, "pid": 4912, "args": { "value": 750 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1967366, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1967372, "pid": 4912, "args": { "value": 4 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400bf7b0", "tid": 15264, "ts": 1967425, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 713031680, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 0, "ResourceHeap": { "id_ref": "0x1e840108fe0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 709171200, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1967436, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1967536, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1967545, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1967552, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400c0cf0", "tid": 15264, "ts": 1967557, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1967618, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1967650, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1967657, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1967663, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400bf710", "tid": 15264, "ts": 1967668, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1967721, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1967753, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1967760, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1967766, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400bfa30", "tid": 15264, "ts": 1967771, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1967823, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1967854, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1967862, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1967867, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400c0d90", "tid": 15264, "ts": 1967872, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1967924, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1967958, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1967965, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1967970, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400c0750", "tid": 15264, "ts": 1967975, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1968026, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1968058, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1968065, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1968071, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400bfb70", "tid": 15264, "ts": 1968076, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1968127, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1968171, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1968178, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1968184, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1968190, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1968206, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1968212, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1968218, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400c1010", "tid": 15264, "ts": 1968223, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1968275, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1968307, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1968314, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1968319, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400bfad0", "tid": 15264, "ts": 1968325, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1968381, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1968432, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1968441, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1968446, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400c1650", "tid": 15264, "ts": 1968452, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1968506, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1968538, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1968545, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1968550, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400c13d0", "tid": 15264, "ts": 1968555, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1968606, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1968639, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1968646, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1968651, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400bf850", "tid": 15264, "ts": 1968656, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1968708, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1968740, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1968747, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1968752, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400c0110", "tid": 15264, "ts": 1968757, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1968808, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1968852, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1968859, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1968865, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1968871, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1968878, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1968883, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1968889, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400c1510", "tid": 15264, "ts": 1968894, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1968957, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1969015, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 24576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 1024, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1969026, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1969033, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1969039, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1969046, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1969053, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1969059, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1969066, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1969073, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1969079, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1969085, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1969145, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400c0250", "tid": 15264, "ts": 1969165, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1969172, "pid": 4912, "args": { "value": 139 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1969189, "pid": 4912, "args": { "value": 99 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1969196, "pid": 4912, "args": { "value": 747 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1969202, "pid": 4912, "args": { "value": 1 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1969207, "pid": 4912, "args": { "value": 8 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400c0250", "tid": 15264, "ts": 1969249, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 655360, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffad1e0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 24576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1969259, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1969366, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 24576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1969377, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1969383, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1969389, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1969396, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1969402, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1969408, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1969466, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400c0390", "tid": 15264, "ts": 1969475, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1969483, "pid": 4912, "args": { "value": 98 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1969499, "pid": 4912, "args": { "value": 99 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1969505, "pid": 4912, "args": { "value": 746 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1969511, "pid": 4912, "args": { "value": 1 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1969517, "pid": 4912, "args": { "value": 8 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400c0390", "tid": 15264, "ts": 1969558, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 851968, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffac970" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 24576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1969568, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1969662, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 57344, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1969672, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1969679, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1969685, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1969692, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1969698, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1969703, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1969761, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400c1290", "tid": 15264, "ts": 1969770, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1969777, "pid": 4912, "args": { "value": 98 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1969794, "pid": 4912, "args": { "value": 99 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1969800, "pid": 4912, "args": { "value": 746 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1969806, "pid": 4912, "args": { "value": 1 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1969811, "pid": 4912, "args": { "value": 8 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400c1290", "tid": 15264, "ts": 1969853, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 786432, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffac970" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 57344, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1969863, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1969958, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64512, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1969968, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1969974, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1969980, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1969987, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1969993, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1969999, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1970056, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400c1790", "tid": 15264, "ts": 1970065, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1970073, "pid": 4912, "args": { "value": 97 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1970089, "pid": 4912, "args": { "value": 99 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1970095, "pid": 4912, "args": { "value": 746 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1970101, "pid": 4912, "args": { "value": 1 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1970107, "pid": 4912, "args": { "value": 8 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400c1790", "tid": 15264, "ts": 1970148, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 720896, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffac970" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 64512, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1970158, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1970251, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 21504, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1970261, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1970268, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1970274, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1970281, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1970287, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1970292, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1970349, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400bf350", "tid": 15264, "ts": 1970358, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1970366, "pid": 4912, "args": { "value": 97 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1970382, "pid": 4912, "args": { "value": 99 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1970388, "pid": 4912, "args": { "value": 746 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1970394, "pid": 4912, "args": { "value": 1 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1970400, "pid": 4912, "args": { "value": 8 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400bf350", "tid": 15264, "ts": 1970441, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 655360, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffac970" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 21504, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1970451, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1970544, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 53248, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1970554, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1970560, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1970566, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1970573, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1970579, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1970585, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1970642, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400bf8f0", "tid": 15264, "ts": 1970651, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1970659, "pid": 4912, "args": { "value": 97 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1970675, "pid": 4912, "args": { "value": 99 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1970681, "pid": 4912, "args": { "value": 746 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1970687, "pid": 4912, "args": { "value": 1 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1970693, "pid": 4912, "args": { "value": 8 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400bf8f0", "tid": 15264, "ts": 1970734, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 589824, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffac970" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 53248, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1970743, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1970815, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1970822, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1970828, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400c0390", "tid": 15264, "ts": 1970833, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1970886, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1970918, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1970925, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1970931, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400c1290", "tid": 15264, "ts": 1970936, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1970988, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1971020, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1971026, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1971032, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400c1790", "tid": 15264, "ts": 1971037, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1971088, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1971120, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1971126, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1971132, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400bf350", "tid": 15264, "ts": 1971137, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1971187, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1971219, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1971226, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1971232, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400bf8f0", "tid": 15264, "ts": 1971237, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1971287, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1971340, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 131072, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1971351, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1971357, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1971364, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1971369, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1971375, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1971382, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1971388, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1971394, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1971400, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1971405, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1971463, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400c0390", "tid": 15264, "ts": 1971472, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1971480, "pid": 4912, "args": { "value": 122 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1971497, "pid": 4912, "args": { "value": 99 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1971503, "pid": 4912, "args": { "value": 751 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1971509, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1971515, "pid": 4912, "args": { "value": 4 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400c0390", "tid": 15264, "ts": 1971556, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 131072, "HeapOffset": 131072, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffac610" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 131072, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1971566, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1971671, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 524288, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1971682, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1971688, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1971694, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1971700, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1971708, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1971714, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e840108140", "tid": 15264, "ts": 1972744, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e840108140", "tid": 15264, "ts": 1972794, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 2, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1972814, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1972820, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1972827, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1972834, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1972840, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1972845, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1972903, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400bf850", "tid": 15264, "ts": 1972912, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1972920, "pid": 4912, "args": { "value": 1230 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1972937, "pid": 4912, "args": { "value": 99 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1972944, "pid": 4912, "args": { "value": 754 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1972950, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1972956, "pid": 4912, "args": { "value": 4 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400bf850", "tid": 15264, "ts": 1972997, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 524288, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e840108140" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 524288, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1973007, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1973130, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 131072, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1973140, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1973147, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1973153, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1973160, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1973166, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1973172, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1973229, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400c1150", "tid": 15264, "ts": 1973238, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1973246, "pid": 4912, "args": { "value": 98 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1973262, "pid": 4912, "args": { "value": 99 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1973268, "pid": 4912, "args": { "value": 754 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1973274, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1973280, "pid": 4912, "args": { "value": 4 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400c1150", "tid": 15264, "ts": 1973321, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 131072, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffac610" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 131072, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1973331, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1973424, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 524288, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1973434, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1973441, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1973447, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1973454, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1973460, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1973465, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1973523, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400c1010", "tid": 15264, "ts": 1973532, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1973539, "pid": 4912, "args": { "value": 98 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1973556, "pid": 4912, "args": { "value": 99 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1973562, "pid": 4912, "args": { "value": 754 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1973568, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1973574, "pid": 4912, "args": { "value": 4 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400c1010", "tid": 15264, "ts": 1973614, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 524288, "HeapOffset": 524288, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e840108140" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 524288, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1973624, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1973717, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 131072, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1973727, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1973733, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1973740, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1973747, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1973753, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1973758, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1973815, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400bf350", "tid": 15264, "ts": 1973824, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1973831, "pid": 4912, "args": { "value": 97 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1973848, "pid": 4912, "args": { "value": 99 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1973854, "pid": 4912, "args": { "value": 753 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1973860, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1973866, "pid": 4912, "args": { "value": 4 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400bf350", "tid": 15264, "ts": 1973907, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 131072, "HeapOffset": 262144, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffac610" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 131072, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1973916, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 1974011, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 524288, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1974021, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1974028, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1974034, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1974041, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1974047, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 1974052, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1974109, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e8400c0430", "tid": 15264, "ts": 1974118, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1974126, "pid": 4912, "args": { "value": 97 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1974142, "pid": 4912, "args": { "value": 99 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1974148, "pid": 4912, "args": { "value": 753 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1974154, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 1974160, "pid": 4912, "args": { "value": 4 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e8400c0430", "tid": 15264, "ts": 1974203, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 524288, "HeapOffset": 1048576, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e840108140" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 524288, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 1974213, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1974282, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1974295, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400bf7b0", "tid": 15264, "ts": 1974300, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1974388, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1974398, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1974404, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1974409, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1974416, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1974421, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1974426, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400bf2b0", "tid": 15264, "ts": 1974431, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1974489, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1974519, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1974530, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400bfcb0", "tid": 15264, "ts": 1974536, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1974623, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1974632, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1974638, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1974644, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1974650, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1974656, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1974661, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400c1470", "tid": 15264, "ts": 1974666, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1974722, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1974755, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1974762, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1974767, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400bfc10", "tid": 15264, "ts": 1974772, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1974824, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1974856, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1974863, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1974869, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400bd7d0", "tid": 15264, "ts": 1974874, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1974925, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1974955, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1974967, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400c10b0", "tid": 15264, "ts": 1974972, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1975057, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1975066, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1975072, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1975082, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1975088, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1975094, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1975099, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400c0250", "tid": 15264, "ts": 1975104, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1975154, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1975199, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1975206, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1975212, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1975218, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1975224, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1975229, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1975234, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400bd870", "tid": 15264, "ts": 1975239, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1975290, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1975322, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1975329, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1975334, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400bf350", "tid": 15264, "ts": 1975340, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1975389, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1975421, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1975428, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1975433, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400c1150", "tid": 15264, "ts": 1975438, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1975488, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1975532, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1975539, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1975545, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1975551, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1975557, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1975563, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1975568, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400c0390", "tid": 15264, "ts": 1975573, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1975623, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1975655, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1975662, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1975667, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400c0430", "tid": 15264, "ts": 1975672, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1975722, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1975753, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1975760, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1975766, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400c1010", "tid": 15264, "ts": 1975771, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1975821, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1975865, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1975872, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1975877, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1975887, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1975893, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1975899, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1975904, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e8400bf850", "tid": 15264, "ts": 1975909, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1975961, "pid": 4912 }, { "name": "GPUMemoryAllocator", "cat": "default", "ph": "D", "id": "0x1e83fdb4790", "tid": 15264, "ts": 1975982, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e840170ec8", "tid": 15264, "ts": 1976029, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83b593710", "tid": 15264, "ts": 1976037, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e840170b68", "tid": 15264, "ts": 1976065, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1976072, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e840108140", "tid": 15264, "ts": 1976077, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1976227, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1976238, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e83ffac610", "tid": 15264, "ts": 1976243, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1976387, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1976397, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e83ffac970", "tid": 15264, "ts": 1976402, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1976654, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83b594520", "tid": 15264, "ts": 1976666, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83fda92a8", "tid": 15264, "ts": 1976696, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1976704, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e83ffad1e0", "tid": 15264, "ts": 1976709, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1976852, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1976862, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e8401073c0", "tid": 15264, "ts": 1976868, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1977011, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1977021, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e840108c80", "tid": 15264, "ts": 1977027, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1977169, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1977179, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e83ffadf60", "tid": 15264, "ts": 1977185, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1977328, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83b592b40", "tid": 15264, "ts": 1977340, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83fdaa808", "tid": 15264, "ts": 1977367, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83b555900", "tid": 15264, "ts": 1977375, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83d7283d8", "tid": 15264, "ts": 1977401, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83b556290", "tid": 15264, "ts": 1977409, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83d7295d8", "tid": 15264, "ts": 1977433, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83ffadc90", "tid": 15264, "ts": 1977440, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83d728f18", "tid": 15264, "ts": 1977465, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83ffacf10", "tid": 15264, "ts": 1977472, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83ffaf188", "tid": 15264, "ts": 1977496, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83ffacfa0", "tid": 15264, "ts": 1977505, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1977515, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e83fface80", "tid": 15264, "ts": 1977521, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1977666, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83ffad660", "tid": 15264, "ts": 1977678, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1977684, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e840108650", "tid": 15264, "ts": 1977689, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1977833, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e8401072a0", "tid": 15264, "ts": 1977845, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 1977851, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e840108fe0", "tid": 15264, "ts": 1977856, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 1985924, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e8401089b0", "tid": 15264, "ts": 1985952, "pid": 4912 }, { "name": "thread_name", "cat": "__metadata", "ph": "M", "tid": 15264, "ts": 2081406, "pid": 4912, "args": { "name": "GPGMM_MainThread" } } ] } \ No newline at end of file +{ "traceEvents": [ { "name": "thread_name", "cat": "__metadata", "ph": "M", "tid": 7996, "ts": 1392205, "pid": 31040, "args": { "name": "GPGMM_MainThread" } }, { "name": "GPUMemoryAllocator", "cat": "default", "ph": "N", "id": "0x1d1703f6180", "tid": 7996, "ts": 1392259, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d1749e0d98", "tid": 7996, "ts": 1392276, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d17040a310", "tid": 7996, "ts": 1392335, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d174be03e8", "tid": 7996, "ts": 1393618, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d17040b480", "tid": 7996, "ts": 1393665, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d174be0088", "tid": 7996, "ts": 1394880, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d170409e00", "tid": 7996, "ts": 1394921, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d174be1a68", "tid": 7996, "ts": 1396167, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d170403750", "tid": 7996, "ts": 1396212, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d174bdfe48", "tid": 7996, "ts": 1397442, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d170403990", "tid": 7996, "ts": 1397484, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d174ac1058", "tid": 7996, "ts": 1398676, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d170403120", "tid": 7996, "ts": 1398717, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d174ac0ab8", "tid": 7996, "ts": 1399891, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d174ac7a80", "tid": 7996, "ts": 1399935, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d174ac1178", "tid": 7996, "ts": 1401107, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d174ac6250", "tid": 7996, "ts": 1401147, "pid": 31040 }, { "name": "GPUMemoryAllocator", "cat": "default", "ph": "O", "id": "0x1d1703f6180", "tid": 7996, "ts": 1402351, "pid": 31040, "args": { "snapshot": { "Flags": 4, "RecordOptions": { "Flags": 3, "MinMessageLevel": 0 }, "IsUMA": 1, "ResourceHeapTier": 2, "PreferredResourceHeapSize": 4194304, "MaxResourceHeapSize": 34359738368, "MaxVideoMemoryBudget": 0.000000, "TotalResourceBudgetLimit": 0, "EvictLimit": 0, "MemoryFragmentationLimit": 0.125000 } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1402406, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 96, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d174ac6d90", "tid": 7996, "ts": 1402855, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d174ac6d90", "tid": 7996, "ts": 1402892, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 2, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1402931, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1402936, "pid": 31040, "args": { "value": 35 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e37e70", "tid": 7996, "ts": 1403015, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1403022, "pid": 31040, "args": { "value": 600 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1403039, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1403045, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1403050, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e37e70", "tid": 7996, "ts": 1403093, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6d90" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 96, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1403190, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1403225, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1403233, "pid": 31040, "args": { "value": 33 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e37010", "tid": 7996, "ts": 1403310, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1403317, "pid": 31040, "args": { "value": 109 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1403333, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1403339, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1403344, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e37010", "tid": 7996, "ts": 1403383, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 65536, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6d90" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1403464, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 12, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1403497, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1403503, "pid": 31040, "args": { "value": 31 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e370b0", "tid": 7996, "ts": 1403577, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1403584, "pid": 31040, "args": { "value": 104 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1403600, "pid": 31040, "args": { "value": 3 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1403606, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1403611, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e370b0", "tid": 7996, "ts": 1403655, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 131072, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6d90" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 12, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1403784, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 3, "Alignment": 0, "Width": 1920, "Height": 1080, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 }, "initialResourceState": 128, "clearValue": { "Format": 87, "Color": { "R": 0.000000, "G": 0.000000, "B": 0.000000, "A": 1.000000 } } } }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d174ac7d50", "tid": 7996, "ts": 1403842, "pid": 31040 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "i", "tid": 7996, "ts": 1404319, "pid": 31040, "args": { "Description": "Resource heap size is larger then the requested size (8388608 vs 8323072 bytes).", "ID": 2 } }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d174ac6e20", "tid": 7996, "ts": 1405042, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d174ac6e20", "tid": 7996, "ts": 1405087, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 8388608, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 8388608, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e37290", "tid": 7996, "ts": 1405273, "pid": 31040 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1405669, "pid": 31040, "args": { "Description": "Resource allocation size is larger then the resource size (8388608 vs 8323072 bytes).", "ID": 3 } }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1405704, "pid": 31040, "args": { "value": 1898 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1405758, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1405769, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1405778, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e37290", "tid": 7996, "ts": 1405872, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 8388608, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 0, "ResourceHeap": { "id_ref": "0x1d174ac6e20" }, "Resource": { "Dimension": 3, "Alignment": 65536, "Width": 1920, "Height": 1080, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 87, "Layout": 0, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 1 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1406075, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4800, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d174ac6b50", "tid": 7996, "ts": 1406640, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d174ac6b50", "tid": 7996, "ts": 1406689, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1406728, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1406734, "pid": 31040, "args": { "value": 35 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e35f30", "tid": 7996, "ts": 1406816, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1406823, "pid": 31040, "args": { "value": 712 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1406848, "pid": 31040, "args": { "value": 8 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1406854, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1406859, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e35f30", "tid": 7996, "ts": 1406901, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6b50" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 4800, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1406998, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1407035, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1407041, "pid": 31040, "args": { "value": 33 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e37150", "tid": 7996, "ts": 1407117, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1407124, "pid": 31040, "args": { "value": 107 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1407140, "pid": 31040, "args": { "value": 8 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1407146, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1407151, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e37150", "tid": 7996, "ts": 1407193, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 65536, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6b50" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1407281, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 4800, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1407315, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1407320, "pid": 31040, "args": { "value": 30 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e373d0", "tid": 7996, "ts": 1407397, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1407404, "pid": 31040, "args": { "value": 106 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1407431, "pid": 31040, "args": { "value": 8 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1407437, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1407443, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e373d0", "tid": 7996, "ts": 1407505, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 196608, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6d90" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 4800, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1407600, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1407636, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1407642, "pid": 31040, "args": { "value": 29 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e35e90", "tid": 7996, "ts": 1407721, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1407729, "pid": 31040, "args": { "value": 111 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1407746, "pid": 31040, "args": { "value": 7 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1407752, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1407758, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e35e90", "tid": 7996, "ts": 1407799, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 262144, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6d90" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1407903, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 36864, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1407936, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1407942, "pid": 31040, "args": { "value": 31 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e36430", "tid": 7996, "ts": 1408027, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1408048, "pid": 31040, "args": { "value": 114 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1408080, "pid": 31040, "args": { "value": 7 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1408086, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1408106, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e36430", "tid": 7996, "ts": 1408187, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 131072, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6b50" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 36864, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1408284, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 128, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1408317, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1408323, "pid": 31040, "args": { "value": 30 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e36cf0", "tid": 7996, "ts": 1408420, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1408427, "pid": 31040, "args": { "value": 127 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1408470, "pid": 31040, "args": { "value": 7 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1408476, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1408497, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e36cf0", "tid": 7996, "ts": 1408536, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 196608, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6b50" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 128, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1408626, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 36864, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1408687, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1408693, "pid": 31040, "args": { "value": 28 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e367f0", "tid": 7996, "ts": 1408804, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1408811, "pid": 31040, "args": { "value": 153 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1408828, "pid": 31040, "args": { "value": 7 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1408845, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1408850, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e367f0", "tid": 7996, "ts": 1408919, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 327680, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6d90" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 36864, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1409022, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 128, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1409056, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1409062, "pid": 31040, "args": { "value": 26 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e364d0", "tid": 7996, "ts": 1409176, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1409183, "pid": 31040, "args": { "value": 144 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1409210, "pid": 31040, "args": { "value": 7 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1409216, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1409221, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e364d0", "tid": 7996, "ts": 1409277, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 393216, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6d90" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 128, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1409415, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 73728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d174ac6910", "tid": 7996, "ts": 1410537, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d174ac6910", "tid": 7996, "ts": 1410576, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1410615, "pid": 31040, "args": { "value": 8 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1410620, "pid": 31040, "args": { "value": 29 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e36890", "tid": 7996, "ts": 1410698, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1410705, "pid": 31040, "args": { "value": 1273 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1410722, "pid": 31040, "args": { "value": 11 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1410727, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1410733, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e36890", "tid": 7996, "ts": 1410773, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 131072, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6910" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 73728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1410863, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 128, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1410913, "pid": 31040, "args": { "value": 8 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1410934, "pid": 31040, "args": { "value": 28 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e35a30", "tid": 7996, "ts": 1411009, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1411015, "pid": 31040, "args": { "value": 136 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1411031, "pid": 31040, "args": { "value": 11 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1411037, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1411043, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e35a30", "tid": 7996, "ts": 1411082, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 262144, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6b50" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 128, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1411160, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 73728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d174ac6a30", "tid": 7996, "ts": 1412304, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d174ac6a30", "tid": 7996, "ts": 1412340, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 2, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1412379, "pid": 31040, "args": { "value": 8 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1412385, "pid": 31040, "args": { "value": 25 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e369d0", "tid": 7996, "ts": 1412460, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1412467, "pid": 31040, "args": { "value": 1291 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1412484, "pid": 31040, "args": { "value": 15 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1412489, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1412495, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e369d0", "tid": 7996, "ts": 1412534, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 131072, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6a30" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 73728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1412627, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 128, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1412660, "pid": 31040, "args": { "value": 8 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1412666, "pid": 31040, "args": { "value": 25 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e36a70", "tid": 7996, "ts": 1412771, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1412777, "pid": 31040, "args": { "value": 134 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1412794, "pid": 31040, "args": { "value": 15 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1412799, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1412805, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e36a70", "tid": 7996, "ts": 1412874, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 458752, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6d90" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 128, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1412952, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 102400, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1412985, "pid": 31040, "args": { "value": 8 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1412991, "pid": 31040, "args": { "value": 26 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e36390", "tid": 7996, "ts": 1413075, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1413082, "pid": 31040, "args": { "value": 114 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1413098, "pid": 31040, "args": { "value": 15 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1413104, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1413109, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e36390", "tid": 7996, "ts": 1413148, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 131072, "HeapOffset": 131072, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6910" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 102400, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1413227, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1413260, "pid": 31040, "args": { "value": 8 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1413265, "pid": 31040, "args": { "value": 25 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e37fb0", "tid": 7996, "ts": 1413351, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1413358, "pid": 31040, "args": { "value": 115 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1413374, "pid": 31040, "args": { "value": 15 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1413379, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1413385, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e37fb0", "tid": 7996, "ts": 1413424, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 327680, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6b50" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1413504, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 102400, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1413538, "pid": 31040, "args": { "value": 8 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1413543, "pid": 31040, "args": { "value": 24 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e378d0", "tid": 7996, "ts": 1413618, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1413625, "pid": 31040, "args": { "value": 104 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1413641, "pid": 31040, "args": { "value": 15 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1413647, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1413652, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e378d0", "tid": 7996, "ts": 1413691, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 131072, "HeapOffset": 131072, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6a30" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 102400, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1413770, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1413803, "pid": 31040, "args": { "value": 8 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1413808, "pid": 31040, "args": { "value": 23 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e37a10", "tid": 7996, "ts": 1413882, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1413889, "pid": 31040, "args": { "value": 103 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1413905, "pid": 31040, "args": { "value": 15 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1413911, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1413916, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e37a10", "tid": 7996, "ts": 1413955, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 524288, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6d90" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1414034, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 18432, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1414067, "pid": 31040, "args": { "value": 8 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1414072, "pid": 31040, "args": { "value": 25 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e37c90", "tid": 7996, "ts": 1414146, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1414153, "pid": 31040, "args": { "value": 103 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1414169, "pid": 31040, "args": { "value": 15 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1414175, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1414180, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e37c90", "tid": 7996, "ts": 1414219, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 393216, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6b50" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 18432, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1414297, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1414332, "pid": 31040, "args": { "value": 8 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1414337, "pid": 31040, "args": { "value": 24 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e36610", "tid": 7996, "ts": 1414411, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1414418, "pid": 31040, "args": { "value": 104 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1414434, "pid": 31040, "args": { "value": 15 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1414440, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1414445, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e36610", "tid": 7996, "ts": 1414483, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 458752, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6b50" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1414562, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 18432, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1414596, "pid": 31040, "args": { "value": 8 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1414601, "pid": 31040, "args": { "value": 22 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e36250", "tid": 7996, "ts": 1414675, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1414682, "pid": 31040, "args": { "value": 103 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1414698, "pid": 31040, "args": { "value": 15 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1414704, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1414709, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e36250", "tid": 7996, "ts": 1414748, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 589824, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6d90" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 18432, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1414834, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1414868, "pid": 31040, "args": { "value": 8 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1414873, "pid": 31040, "args": { "value": 21 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e3a2b0", "tid": 7996, "ts": 1414948, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1414955, "pid": 31040, "args": { "value": 104 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1414971, "pid": 31040, "args": { "value": 15 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1414976, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1414982, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e3a2b0", "tid": 7996, "ts": 1415023, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 655360, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6d90" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1415105, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 18432, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1415144, "pid": 31040, "args": { "value": 8 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1415150, "pid": 31040, "args": { "value": 23 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e38230", "tid": 7996, "ts": 1415224, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1415231, "pid": 31040, "args": { "value": 104 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1415247, "pid": 31040, "args": { "value": 15 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1415253, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1415258, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e38230", "tid": 7996, "ts": 1415298, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 524288, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6b50" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 18432, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1415377, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1415411, "pid": 31040, "args": { "value": 8 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1415416, "pid": 31040, "args": { "value": 22 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e38b90", "tid": 7996, "ts": 1415491, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1415497, "pid": 31040, "args": { "value": 104 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1415513, "pid": 31040, "args": { "value": 14 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1415519, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1415525, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e38b90", "tid": 7996, "ts": 1415563, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 589824, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6b50" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1415642, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 18432, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1415675, "pid": 31040, "args": { "value": 8 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1415681, "pid": 31040, "args": { "value": 21 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e3a350", "tid": 7996, "ts": 1415755, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1415762, "pid": 31040, "args": { "value": 103 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1415778, "pid": 31040, "args": { "value": 14 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1415783, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1415789, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e3a350", "tid": 7996, "ts": 1415827, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 720896, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6d90" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 18432, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1415906, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1415939, "pid": 31040, "args": { "value": 8 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1415944, "pid": 31040, "args": { "value": 20 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e39bd0", "tid": 7996, "ts": 1416019, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1416025, "pid": 31040, "args": { "value": 104 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1416041, "pid": 31040, "args": { "value": 14 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1416047, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1416052, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e39bd0", "tid": 7996, "ts": 1416091, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 786432, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6d90" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 64, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1416170, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1416202, "pid": 31040, "args": { "value": 8 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1416208, "pid": 31040, "args": { "value": 21 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e3a3f0", "tid": 7996, "ts": 1416282, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1416289, "pid": 31040, "args": { "value": 103 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1416306, "pid": 31040, "args": { "value": 14 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1416312, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1416317, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e3a3f0", "tid": 7996, "ts": 1416356, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 655360, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6b50" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 1728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1416435, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1416468, "pid": 31040, "args": { "value": 8 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1416473, "pid": 31040, "args": { "value": 20 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e39d10", "tid": 7996, "ts": 1416547, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1416554, "pid": 31040, "args": { "value": 103 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1416570, "pid": 31040, "args": { "value": 14 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1416575, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1416581, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e39d10", "tid": 7996, "ts": 1416619, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 851968, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6d90" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 1728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e373d0", "tid": 7996, "ts": 1416688, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e35e90", "tid": 7996, "ts": 1416783, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e367f0", "tid": 7996, "ts": 1416867, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e364d0", "tid": 7996, "ts": 1416950, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e369d0", "tid": 7996, "ts": 1417031, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e36a70", "tid": 7996, "ts": 1417113, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e378d0", "tid": 7996, "ts": 1417221, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e37a10", "tid": 7996, "ts": 1417305, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e36250", "tid": 7996, "ts": 1417386, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e3a2b0", "tid": 7996, "ts": 1417468, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e3a350", "tid": 7996, "ts": 1417549, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e39bd0", "tid": 7996, "ts": 1417630, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e39d10", "tid": 7996, "ts": 1417710, "pid": 31040 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1417807, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 3110400, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d174aeead0", "tid": 7996, "ts": 1418882, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d174aeead0", "tid": 7996, "ts": 1418919, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1418955, "pid": 31040, "args": { "value": 12 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1418960, "pid": 31040, "args": { "value": 24 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e39810", "tid": 7996, "ts": 1419036, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1419043, "pid": 31040, "args": { "value": 1220 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1419060, "pid": 31040, "args": { "value": 12 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1419065, "pid": 31040, "args": { "value": 85 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1419070, "pid": 31040, "args": { "value": 4 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e39810", "tid": 7996, "ts": 1419110, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 3145728, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174aeead0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 3110400, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1419203, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 12441600, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d174aed210", "tid": 7996, "ts": 1419230, "pid": 31040 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "i", "tid": 7996, "ts": 1419645, "pid": 31040, "args": { "Description": "Resource heap size is larger then the requested size (12582912 vs 12451840 bytes).", "ID": 2 } }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d174aeec80", "tid": 7996, "ts": 1423172, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d174aeec80", "tid": 7996, "ts": 1423225, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 12582912, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 12582912, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e38d70", "tid": 7996, "ts": 1423337, "pid": 31040 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1423741, "pid": 31040, "args": { "Description": "Resource allocation size is larger then the resource size (12582912 vs 12451840 bytes).", "ID": 3 } }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1423758, "pid": 31040, "args": { "value": 4537 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1423792, "pid": 31040, "args": { "value": 12 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1423799, "pid": 31040, "args": { "value": 90 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1423805, "pid": 31040, "args": { "value": 4 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e38d70", "tid": 7996, "ts": 1423863, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 12582912, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 0, "ResourceHeap": { "id_ref": "0x1d174aeec80" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 12441600, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1424033, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 298240, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d174aee6e0", "tid": 7996, "ts": 1425538, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d174aee6e0", "tid": 7996, "ts": 1425609, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1425677, "pid": 31040, "args": { "value": 16 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1425683, "pid": 31040, "args": { "value": 26 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e38910", "tid": 7996, "ts": 1425826, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1425834, "pid": 31040, "args": { "value": 1772 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1425877, "pid": 31040, "args": { "value": 16 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1425883, "pid": 31040, "args": { "value": 90 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1425889, "pid": 31040, "args": { "value": 4 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e38910", "tid": 7996, "ts": 1425935, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 327680, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174aee6e0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 298240, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1426055, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 709171200, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 0, "clearValue": { } } }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d174aedb10", "tid": 7996, "ts": 1426095, "pid": 31040 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "i", "tid": 7996, "ts": 1426468, "pid": 31040, "args": { "Description": "Resource heap size is larger then the requested size (713031680 vs 709230592 bytes).", "ID": 2 } }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d174aee5c0", "tid": 7996, "ts": 1427750, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d174aee5c0", "tid": 7996, "ts": 1427792, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 713031680, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 713031680, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e3a490", "tid": 7996, "ts": 1427940, "pid": 31040 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1428331, "pid": 31040, "args": { "Description": "Resource allocation size is larger then the resource size (713031680 vs 709230592 bytes).", "ID": 3 } }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1428346, "pid": 31040, "args": { "value": 2262 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1428403, "pid": 31040, "args": { "value": 20 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1428409, "pid": 31040, "args": { "value": 99 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1428415, "pid": 31040, "args": { "value": 4 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e3a490", "tid": 7996, "ts": 1428463, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 713031680, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 0, "ResourceHeap": { "id_ref": "0x1d174aee5c0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 709171200, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e35f30", "tid": 7996, "ts": 1428571, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e37150", "tid": 7996, "ts": 1428695, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e36430", "tid": 7996, "ts": 1428826, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e36cf0", "tid": 7996, "ts": 1428940, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e36890", "tid": 7996, "ts": 1429025, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e35a30", "tid": 7996, "ts": 1429109, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e36390", "tid": 7996, "ts": 1429224, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e37fb0", "tid": 7996, "ts": 1429311, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e37c90", "tid": 7996, "ts": 1429395, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e36610", "tid": 7996, "ts": 1429479, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e38230", "tid": 7996, "ts": 1429561, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e38b90", "tid": 7996, "ts": 1429643, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e3a3f0", "tid": 7996, "ts": 1429817, "pid": 31040 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1429928, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 24576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 1024, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1429987, "pid": 31040, "args": { "value": 12 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1429992, "pid": 31040, "args": { "value": 18 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e398b0", "tid": 7996, "ts": 1430071, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1430078, "pid": 31040, "args": { "value": 133 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1430096, "pid": 31040, "args": { "value": 17 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1430102, "pid": 31040, "args": { "value": 98 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1430107, "pid": 31040, "args": { "value": 8 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e398b0", "tid": 7996, "ts": 1430147, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 655360, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6b50" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 24576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1430230, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 24576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1430263, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1430269, "pid": 31040, "args": { "value": 14 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e385f0", "tid": 7996, "ts": 1430349, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1430356, "pid": 31040, "args": { "value": 109 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1430372, "pid": 31040, "args": { "value": 16 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1430378, "pid": 31040, "args": { "value": 98 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1430383, "pid": 31040, "args": { "value": 8 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e385f0", "tid": 7996, "ts": 1430423, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 851968, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6d90" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 24576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1430503, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 57344, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1430536, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1430542, "pid": 31040, "args": { "value": 14 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e39c70", "tid": 7996, "ts": 1430617, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1430623, "pid": 31040, "args": { "value": 104 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1430640, "pid": 31040, "args": { "value": 16 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1430645, "pid": 31040, "args": { "value": 98 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1430651, "pid": 31040, "args": { "value": 8 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e39c70", "tid": 7996, "ts": 1430690, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 786432, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6d90" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 57344, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1430770, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 64512, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1430803, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1430809, "pid": 31040, "args": { "value": 13 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e39ef0", "tid": 7996, "ts": 1430883, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1430890, "pid": 31040, "args": { "value": 103 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1430906, "pid": 31040, "args": { "value": 16 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1430912, "pid": 31040, "args": { "value": 98 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1430917, "pid": 31040, "args": { "value": 8 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e39ef0", "tid": 7996, "ts": 1430956, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 720896, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6d90" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 64512, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1431035, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 21504, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1431068, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1431073, "pid": 31040, "args": { "value": 13 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e39d10", "tid": 7996, "ts": 1431148, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1431155, "pid": 31040, "args": { "value": 104 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1431171, "pid": 31040, "args": { "value": 16 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1431176, "pid": 31040, "args": { "value": 98 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1431182, "pid": 31040, "args": { "value": 8 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e39d10", "tid": 7996, "ts": 1431221, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 655360, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6d90" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 21504, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1431303, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 53248, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1431338, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1431343, "pid": 31040, "args": { "value": 13 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e399f0", "tid": 7996, "ts": 1431417, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1431424, "pid": 31040, "args": { "value": 103 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1431440, "pid": 31040, "args": { "value": 16 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1431446, "pid": 31040, "args": { "value": 98 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1431451, "pid": 31040, "args": { "value": 8 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e399f0", "tid": 7996, "ts": 1431490, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 589824, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6d90" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 53248, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e385f0", "tid": 7996, "ts": 1431559, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e39c70", "tid": 7996, "ts": 1431644, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e39ef0", "tid": 7996, "ts": 1431726, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e39d10", "tid": 7996, "ts": 1431808, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e399f0", "tid": 7996, "ts": 1431889, "pid": 31040 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1431985, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 131072, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1432041, "pid": 31040, "args": { "value": 8 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1432046, "pid": 31040, "args": { "value": 11 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e38190", "tid": 7996, "ts": 1432131, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1432138, "pid": 31040, "args": { "value": 136 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1432155, "pid": 31040, "args": { "value": 21 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1432161, "pid": 31040, "args": { "value": 99 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1432166, "pid": 31040, "args": { "value": 4 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e38190", "tid": 7996, "ts": 1432207, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 131072, "HeapOffset": 131072, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6a30" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 131072, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1432292, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 524288, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d174aedde0", "tid": 7996, "ts": 1433405, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d174aedde0", "tid": 7996, "ts": 1433443, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 2, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1433481, "pid": 31040, "args": { "value": 12 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1433486, "pid": 31040, "args": { "value": 11 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e39ef0", "tid": 7996, "ts": 1433564, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1433571, "pid": 31040, "args": { "value": 1256 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1433588, "pid": 31040, "args": { "value": 24 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1433594, "pid": 31040, "args": { "value": 99 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1433599, "pid": 31040, "args": { "value": 4 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e39ef0", "tid": 7996, "ts": 1433640, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 524288, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174aedde0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 524288, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1433740, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 131072, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1433775, "pid": 31040, "args": { "value": 12 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1433780, "pid": 31040, "args": { "value": 11 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e39f90", "tid": 7996, "ts": 1433857, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1433864, "pid": 31040, "args": { "value": 107 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1433881, "pid": 31040, "args": { "value": 24 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1433887, "pid": 31040, "args": { "value": 99 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1433893, "pid": 31040, "args": { "value": 4 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e39f90", "tid": 7996, "ts": 1433932, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 131072, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6a30" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 131072, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1434015, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 524288, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1434049, "pid": 31040, "args": { "value": 12 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1434055, "pid": 31040, "args": { "value": 11 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e38370", "tid": 7996, "ts": 1434131, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1434138, "pid": 31040, "args": { "value": 107 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1434155, "pid": 31040, "args": { "value": 24 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1434161, "pid": 31040, "args": { "value": 99 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1434166, "pid": 31040, "args": { "value": 4 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e38370", "tid": 7996, "ts": 1434206, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 524288, "HeapOffset": 524288, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174aedde0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 524288, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1434291, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 131072, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1434326, "pid": 31040, "args": { "value": 12 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1434331, "pid": 31040, "args": { "value": 11 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e3a7b0", "tid": 7996, "ts": 1434407, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1434414, "pid": 31040, "args": { "value": 107 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1434431, "pid": 31040, "args": { "value": 23 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1434437, "pid": 31040, "args": { "value": 99 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1434442, "pid": 31040, "args": { "value": 4 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e3a7b0", "tid": 7996, "ts": 1434482, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 131072, "HeapOffset": 262144, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174ac6a30" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 131072, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1434563, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 524288, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1434597, "pid": 31040, "args": { "value": 12 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1434603, "pid": 31040, "args": { "value": 10 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d174e39a90", "tid": 7996, "ts": 1434679, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1434686, "pid": 31040, "args": { "value": 106 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1434703, "pid": 31040, "args": { "value": 23 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1434709, "pid": 31040, "args": { "value": 99 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1434714, "pid": 31040, "args": { "value": 4 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d174e39a90", "tid": 7996, "ts": 1434778, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 524288, "HeapOffset": 1048576, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174aedde0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 524288, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e3a490", "tid": 7996, "ts": 1434853, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e38910", "tid": 7996, "ts": 1434963, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e38d70", "tid": 7996, "ts": 1435061, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e39810", "tid": 7996, "ts": 1435168, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e370b0", "tid": 7996, "ts": 1435259, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e37e70", "tid": 7996, "ts": 1435347, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e37290", "tid": 7996, "ts": 1435438, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e398b0", "tid": 7996, "ts": 1435548, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e37010", "tid": 7996, "ts": 1435653, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e3a7b0", "tid": 7996, "ts": 1435738, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e39f90", "tid": 7996, "ts": 1435821, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e38190", "tid": 7996, "ts": 1435926, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e39a90", "tid": 7996, "ts": 1436009, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e38370", "tid": 7996, "ts": 1436092, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d174e39ef0", "tid": 7996, "ts": 1436199, "pid": 31040 }, { "name": "GPUMemoryAllocator", "cat": "default", "ph": "D", "id": "0x1d1703f6180", "tid": 7996, "ts": 1436265, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d1749e0d98", "tid": 7996, "ts": 1436315, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d17040a310", "tid": 7996, "ts": 1436323, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d174be03e8", "tid": 7996, "ts": 1436352, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d174aedde0", "tid": 7996, "ts": 1436364, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d174ac6a30", "tid": 7996, "ts": 1436504, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d174ac6d90", "tid": 7996, "ts": 1436636, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d17040b480", "tid": 7996, "ts": 1436764, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d174be0088", "tid": 7996, "ts": 1436794, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d174ac6b50", "tid": 7996, "ts": 1436807, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d174aeead0", "tid": 7996, "ts": 1436935, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d174aee6e0", "tid": 7996, "ts": 1437063, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d174ac6910", "tid": 7996, "ts": 1437254, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d170409e00", "tid": 7996, "ts": 1437462, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d174be1a68", "tid": 7996, "ts": 1437501, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d170403750", "tid": 7996, "ts": 1437520, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d174bdfe48", "tid": 7996, "ts": 1437576, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d170403990", "tid": 7996, "ts": 1437591, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d174ac1058", "tid": 7996, "ts": 1437640, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d170403120", "tid": 7996, "ts": 1437655, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d174ac0ab8", "tid": 7996, "ts": 1437719, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d174ac7a80", "tid": 7996, "ts": 1437737, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d174ac1178", "tid": 7996, "ts": 1437784, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d174ac6250", "tid": 7996, "ts": 1437799, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d174ac6e20", "tid": 7996, "ts": 1437835, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d174ac7d50", "tid": 7996, "ts": 1438117, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d174aeec80", "tid": 7996, "ts": 1438128, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d174aed210", "tid": 7996, "ts": 1438292, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d174aee5c0", "tid": 7996, "ts": 1438303, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d174aedb10", "tid": 7996, "ts": 1446667, "pid": 31040 } ] } \ No newline at end of file diff --git a/src/tests/capture_replay_tests/traces/webnn_end2end_mobilenetv2nchwtests_nchwtest0.json b/src/tests/capture_replay_tests/traces/webnn_end2end_mobilenetv2nchwtests_nchwtest0.json index 583fb03ff..03d24e88a 100644 --- a/src/tests/capture_replay_tests/traces/webnn_end2end_mobilenetv2nchwtests_nchwtest0.json +++ b/src/tests/capture_replay_tests/traces/webnn_end2end_mobilenetv2nchwtests_nchwtest0.json @@ -1 +1 @@ -{ "traceEvents": [ { "name": "GPUMemoryAllocator", "cat": "default", "ph": "N", "id": "0x1e83b5ba9b0", "tid": 15264, "ts": 2296013, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e840170808", "tid": 15264, "ts": 2296035, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296050, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296062, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296071, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296085, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83b592c60", "tid": 15264, "ts": 2296090, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296096, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296101, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296106, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296127, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296133, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296149, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296154, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296159, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296164, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296174, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296179, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296184, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296189, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296197, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296202, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296207, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296212, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296217, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296222, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296232, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296237, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296242, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296246, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296254, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296259, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296264, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296269, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296274, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296279, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296289, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296294, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296299, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296303, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296311, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296316, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296321, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296326, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296331, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296336, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296346, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296351, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296355, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296360, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296368, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296373, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296378, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296383, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296388, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296393, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296403, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296407, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296412, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296417, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296425, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296430, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296435, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296440, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296447, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296454, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296463, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296469, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296473, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296478, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296486, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296491, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296496, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296512, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296518, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296523, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296532, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296538, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296542, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296547, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296556, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296561, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296566, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296571, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296591, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296598, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296607, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296612, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296617, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296622, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296630, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296635, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296640, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296645, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296650, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296655, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296664, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296669, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296674, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296679, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296687, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296692, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296697, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296702, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296709, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296716, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296725, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296730, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296735, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296740, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296748, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296753, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296758, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296763, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296768, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296773, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296783, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296788, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296793, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296797, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296805, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296810, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296815, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296820, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296827, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296834, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296843, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296849, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296853, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296858, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296866, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296871, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296876, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296881, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296886, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296891, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296901, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296906, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296911, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296915, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296923, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296928, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296933, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296938, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296947, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296954, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296963, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2296968, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296973, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296978, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296986, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296991, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2296996, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297001, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297006, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297011, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297020, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297025, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297030, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297035, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297043, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297048, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297053, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297057, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297064, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297071, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297080, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297085, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297090, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297095, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297103, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297119, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297124, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297130, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297147, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297152, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297161, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297166, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297171, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297176, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297183, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297189, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297193, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297198, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297203, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297209, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297218, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297223, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297227, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297232, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297240, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297245, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297250, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e8401705c8", "tid": 15264, "ts": 2297260, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297272, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297280, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297287, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297303, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83b592ea0", "tid": 15264, "ts": 2297309, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297314, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297319, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297324, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297332, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297337, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297342, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297347, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297353, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297358, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297367, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297373, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297377, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297382, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297390, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297395, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297400, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297405, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297410, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297415, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297424, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297429, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297434, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297439, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297447, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297452, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297457, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297462, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297467, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297472, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297481, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297486, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297491, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297496, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297504, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297509, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297514, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297519, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297524, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297529, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297538, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297543, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297548, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297553, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297561, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297566, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297571, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297576, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297581, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297586, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297595, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297600, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297605, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297610, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297618, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297623, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297628, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297633, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297640, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297647, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297656, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297662, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297667, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297672, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297679, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297685, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297689, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297694, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297699, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297705, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297714, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297719, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297724, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297729, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297737, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297742, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297746, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297751, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297760, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297767, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297776, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297781, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297786, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297791, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297799, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297804, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297809, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297813, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297819, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297824, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297833, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297838, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297843, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297848, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297856, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297861, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297866, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297871, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297878, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297884, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297894, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297899, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297904, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297909, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297916, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297922, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297926, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297931, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297936, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297942, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297951, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297956, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297960, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297965, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297973, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297978, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2297983, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297988, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2297995, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298001, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298011, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298016, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298021, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298026, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298034, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298039, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298043, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298048, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298053, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298059, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298068, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298073, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298077, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298082, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298090, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298095, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298100, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298105, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298125, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298146, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298156, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298176, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298181, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298201, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298226, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298231, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298251, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298256, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298261, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298267, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298276, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298281, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298286, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298290, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298298, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298303, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298308, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298313, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298320, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298327, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298336, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298341, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298346, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298351, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298359, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298364, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298368, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298373, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298378, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298383, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298393, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298398, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298403, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298407, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298415, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298420, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298425, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298430, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298435, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298440, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298449, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298454, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298459, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298464, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298472, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298477, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298482, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83ff2f4b8", "tid": 15264, "ts": 2298492, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298503, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298510, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298517, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298528, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83b5938c0", "tid": 15264, "ts": 2298533, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298538, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298543, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298548, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298556, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298561, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298566, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298571, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298576, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298581, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298590, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298595, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298600, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298605, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298613, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298618, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298623, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298628, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298633, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298638, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298647, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298652, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298657, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298662, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298670, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298675, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298680, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298685, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298690, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298695, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298704, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298709, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298714, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298718, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298726, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298731, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298736, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298741, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298746, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298751, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298760, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298765, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298770, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298775, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298783, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298788, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298793, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298797, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298803, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298808, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298817, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298822, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298827, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298832, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298839, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298845, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298849, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298854, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298861, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298869, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298883, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298889, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298894, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298899, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298907, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298912, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298917, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298922, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298927, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298932, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298941, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298946, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298951, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298956, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298964, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298969, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2298974, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298979, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298987, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2298995, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299005, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299010, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299015, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299019, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299027, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299032, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299037, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299042, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299048, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299053, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299062, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299067, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299072, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299077, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299085, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299090, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299094, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299099, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299106, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299113, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299123, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299128, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299133, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299138, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299146, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299151, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299156, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299160, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299166, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299171, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299180, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299185, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299190, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299194, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299203, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299208, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299212, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299217, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299224, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299231, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299241, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299246, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299251, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299255, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299263, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299268, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299273, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299278, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299283, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299288, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299298, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299303, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299308, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299312, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299320, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299325, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299330, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299335, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299343, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299351, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299360, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299365, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299370, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299375, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299383, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299388, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299393, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299397, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299403, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299408, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299417, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299422, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299427, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299431, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299439, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299444, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299449, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299454, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299461, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299468, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299478, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299483, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299487, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299492, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299500, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299505, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299510, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299515, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299520, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299525, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299534, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299539, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299544, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299549, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299557, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299562, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299567, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299572, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299577, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299582, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299591, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299596, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299601, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299606, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299614, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299619, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299624, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83ff307d8", "tid": 15264, "ts": 2299633, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299646, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299654, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299661, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299677, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83b555ab0", "tid": 15264, "ts": 2299683, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299688, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299693, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299698, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299706, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299712, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299717, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299721, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299727, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299732, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299741, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299747, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299751, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299756, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299764, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299769, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299774, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299790, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299897, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299904, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299915, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299920, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299925, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299930, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299950, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299955, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299960, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299965, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299970, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299976, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299985, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2299990, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299995, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2299999, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300007, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300012, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300017, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300022, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300027, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300032, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300042, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300047, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300052, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300057, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300064, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300070, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300074, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300079, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300084, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300089, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300099, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300104, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300108, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300113, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300121, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300126, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300131, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300136, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300144, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300151, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300161, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300166, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300171, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300176, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300184, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300189, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300194, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300198, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300204, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300209, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300218, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300223, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300228, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300232, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300240, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300245, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300250, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300255, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300264, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300271, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300280, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300286, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300290, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300295, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300303, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300308, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300313, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300318, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300323, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300328, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300337, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300342, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300347, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300352, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300360, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300365, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300370, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300375, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300382, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300388, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300398, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300403, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300408, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300413, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300421, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300426, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300431, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300435, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300441, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300446, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300455, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300460, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300465, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300470, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300477, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300482, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300487, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300492, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300499, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300506, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300516, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300521, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300526, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300531, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300538, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300543, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300548, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300553, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300558, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300563, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300573, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300578, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300583, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300587, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300595, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300600, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300605, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300610, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300618, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300625, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300635, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300640, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300644, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300649, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300657, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300662, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300667, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300672, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300677, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300682, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300692, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300697, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300702, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300706, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300714, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300719, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300724, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300729, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300736, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300743, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300752, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300757, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300762, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300767, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300775, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300780, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300785, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300790, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300795, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300800, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300809, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300814, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300819, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300824, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300831, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300836, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300841, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300846, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300851, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300856, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300866, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300870, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300875, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300880, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300888, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300893, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300898, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83fffb548", "tid": 15264, "ts": 2300909, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300921, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300928, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300935, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300955, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83b555c60", "tid": 15264, "ts": 2300962, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2300967, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300972, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300977, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300985, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300990, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2300995, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301000, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301006, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301011, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301020, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301026, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301030, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301035, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301043, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301048, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301053, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301058, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301063, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301069, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301078, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301083, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301088, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301093, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301101, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301105, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301110, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301115, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301121, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301126, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301135, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301140, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301145, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301150, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301158, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301163, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301168, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301172, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301178, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301183, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301192, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301197, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301202, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301207, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301215, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301220, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301225, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301229, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301235, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301240, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301249, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301254, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301259, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301263, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301271, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301276, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301281, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301286, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301294, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301301, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301310, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301315, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301320, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301325, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301333, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301338, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301343, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301348, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301353, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301358, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301367, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301372, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301377, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301382, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301390, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301395, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301400, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301405, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301413, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301420, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301438, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301443, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301448, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301453, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301461, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301467, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301471, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301476, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301482, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301487, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301496, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301501, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301506, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301511, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301519, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301524, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301529, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301534, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301541, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301548, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301558, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301563, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301568, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301573, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301580, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301586, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301590, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301595, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301601, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301606, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301615, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301620, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301625, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301630, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301638, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301643, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301648, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301653, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301660, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301667, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301676, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301681, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301686, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301691, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301699, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301704, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301709, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301714, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301719, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301724, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301733, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301738, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301743, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301748, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301756, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301761, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301766, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301771, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301779, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301786, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301795, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301800, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301805, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301810, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301818, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301823, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301828, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301833, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301838, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301843, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301852, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301857, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301862, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301867, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301875, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301880, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301885, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301890, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301897, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301903, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301913, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301918, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301923, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301928, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301936, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301941, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301946, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301951, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301956, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301961, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301970, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2301975, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301980, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301985, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301993, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2301997, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302002, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302007, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302012, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302017, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302027, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302032, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302037, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302041, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302049, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302054, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302059, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83fffcbc8", "tid": 15264, "ts": 2302069, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302080, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302088, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302095, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302106, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83ffaa210", "tid": 15264, "ts": 2302119, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302124, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302129, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302134, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302143, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302148, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302153, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302157, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302163, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302168, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302177, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302182, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302187, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302192, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302200, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302205, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302210, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302215, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302220, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302225, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302234, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302239, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302244, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302249, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302257, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302262, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302267, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302272, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302277, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302282, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302291, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302296, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302301, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302306, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302314, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302319, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302324, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302328, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302334, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302339, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302348, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302353, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302358, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302363, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302371, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302376, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302381, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302385, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302391, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302396, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302405, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302410, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302415, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302419, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302427, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302432, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302437, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302442, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302449, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302456, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302466, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302471, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302475, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302480, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302488, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302493, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302498, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302503, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302508, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302513, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302522, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302528, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302532, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302537, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302545, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302550, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302555, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302560, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302568, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302575, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302584, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302590, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302594, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302599, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302608, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302612, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302618, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302622, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302628, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302633, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302642, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302647, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302652, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302657, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302665, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302670, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302675, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302680, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302686, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302693, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302703, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302708, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302713, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302717, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302725, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302730, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302735, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302740, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302745, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302750, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302760, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302765, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302769, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302774, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302782, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302787, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302792, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302797, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302804, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302810, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302820, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302825, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302830, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302835, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302843, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302848, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302853, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302857, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302863, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302868, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302877, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302882, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302887, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302891, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302900, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302905, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302909, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302914, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302922, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302929, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302939, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302944, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302949, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302953, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302961, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302966, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2302971, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302976, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302982, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302987, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2302996, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303001, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303006, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303011, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303018, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303023, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303028, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303033, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303040, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303047, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303056, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303061, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303066, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303071, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303079, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303084, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303089, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303094, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303099, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303104, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303113, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303118, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303123, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303128, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303136, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303141, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303146, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303151, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303156, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303161, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303170, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303175, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303180, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303185, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303193, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303198, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303203, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83fffcf28", "tid": 15264, "ts": 2303212, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303223, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303231, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303238, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303248, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83ffa9640", "tid": 15264, "ts": 2303254, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303259, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303264, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303269, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303277, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303282, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303287, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303292, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303297, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303302, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303311, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303316, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303321, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303326, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303334, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303339, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303344, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303349, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303354, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303359, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303368, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303373, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303378, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303383, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303391, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303396, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303401, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303406, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303411, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303416, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303425, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303430, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303435, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303440, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303448, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303453, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303458, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303463, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303468, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303473, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303482, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303487, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303492, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303497, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303505, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303510, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303515, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303519, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303525, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303530, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303539, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303544, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303549, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303554, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303561, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303566, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303571, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303576, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303583, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303590, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303599, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303604, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303609, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303614, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303622, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303627, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303632, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303637, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303642, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303647, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303656, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303661, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303666, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303671, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303679, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303684, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303689, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303694, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303702, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303709, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303718, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303723, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303728, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303733, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303741, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303746, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303751, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303756, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303761, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303766, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303775, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303780, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303785, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303790, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303798, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303803, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303808, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303813, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303820, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303827, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303843, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303848, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303853, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303858, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303866, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303871, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303876, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303881, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303887, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303892, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303901, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303907, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303911, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303916, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303924, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303929, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303934, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303939, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303946, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303953, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303962, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2303968, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303972, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303977, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303985, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303990, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2303995, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304000, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304005, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304010, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304019, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304025, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304029, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304034, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304042, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304047, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304052, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304057, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304066, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304073, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304086, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304091, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304096, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304101, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304109, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304114, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304119, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304124, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304129, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304134, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304144, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304149, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304154, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304158, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304167, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304172, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304177, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304181, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304189, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304196, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304205, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304210, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304215, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304220, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304228, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304233, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304238, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304243, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304248, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304253, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304262, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304267, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304272, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304277, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304285, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304290, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304295, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304299, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304305, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304310, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304319, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304324, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304329, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304334, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304341, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304346, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304351, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83ffab4c8", "tid": 15264, "ts": 2304361, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304373, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304381, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304388, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304404, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83ffaacc0", "tid": 15264, "ts": 2304410, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304415, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304420, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304425, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304433, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304438, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304443, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304448, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304454, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304459, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304468, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304473, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304478, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304483, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304491, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304496, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304501, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304506, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304512, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304517, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304526, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304531, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304536, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304541, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304548, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304553, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304558, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304563, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304568, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304573, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304583, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304588, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304593, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304598, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304605, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304610, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304615, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304620, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304626, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304631, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304640, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304645, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304650, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304655, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304663, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304668, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304673, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304677, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304683, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304688, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304697, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304702, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304707, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304712, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304720, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304725, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304730, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304735, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304742, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304749, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304758, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304764, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304768, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304773, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304781, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304786, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304791, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304796, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304801, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304806, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304816, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304821, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304826, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304830, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304838, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304843, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304848, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304853, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304861, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304868, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304878, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304883, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304888, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304893, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304900, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304905, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304910, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304915, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304920, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304925, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304935, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304940, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304945, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304950, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304957, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304962, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2304967, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304972, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304979, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304986, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2304995, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305000, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305005, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305010, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305018, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305023, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305028, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305033, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305038, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305043, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305052, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305057, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305062, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305067, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305075, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305080, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305085, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305090, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305097, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305103, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305113, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305118, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305123, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305128, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305135, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305141, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305145, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305150, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305155, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305160, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305170, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305175, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305180, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305184, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305192, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305197, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305202, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305207, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305215, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305222, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305232, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305237, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305242, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305247, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305255, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305260, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305265, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305269, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305275, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305280, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305289, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305294, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305299, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305304, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305312, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305317, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305321, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305326, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305333, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305340, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305349, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305354, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305359, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305364, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305372, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305377, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305382, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305387, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305392, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305397, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305406, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305411, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305416, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305421, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305429, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305434, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305439, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305444, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305449, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305454, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305463, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305468, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305473, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305478, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305486, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305490, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305495, "pid": 4912 }, { "name": "GPUMemoryAllocator", "cat": "default", "ph": "O", "id": "0x1e83b5ba9b0", "tid": 15264, "ts": 2305540, "pid": 4912, "args": { "snapshot": { "Flags": 4, "RecordOptions": { "Flags": 255, "MinMessageLevel": 0 }, "IsUMA": 1, "ResourceHeapTier": 2, "PreferredResourceHeapSize": 4194304, "MaxResourceHeapSize": 34359738368, "MaxResourceSizeForPooling": 0, "MaxVideoMemoryBudget": 0.000000, "TotalResourceBudgetLimit": 0, "VideoMemoryEvictSize": 0, "ResourceFragmentationLimit": 0.125000 } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 2305603, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305613, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305620, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83ffaa9f0", "tid": 15264, "ts": 2305626, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305631, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e83ffa9910", "tid": 15264, "ts": 2305886, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e83ffa9910", "tid": 15264, "ts": 2305936, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 16777216, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 16777216, "Properties": { "SizeInBytes": 2, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305952, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2305959, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2305965, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2306028, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e83fc8fff0", "tid": 15264, "ts": 2306037, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2306045, "pid": 4912, "args": { "value": 423 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2306062, "pid": 4912, "args": { "value": 100 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2306068, "pid": 4912, "args": { "value": 16 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2306073, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2306079, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e83fc8fff0", "tid": 15264, "ts": 2306123, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 16777216, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 0, "ResourceHeap": { "id_ref": "0x1e83ffa9910" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2306134, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 2306246, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2306256, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2306263, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83ffa9d00", "tid": 15264, "ts": 2306268, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2306274, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e83ffa9d90", "tid": 15264, "ts": 2306451, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e83ffa9d90", "tid": 15264, "ts": 2306500, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 16777216, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 16777216, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2306513, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2306520, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2306525, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2306582, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e83fc8f370", "tid": 15264, "ts": 2306591, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2306598, "pid": 4912, "args": { "value": 335 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2306615, "pid": 4912, "args": { "value": 100 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2306621, "pid": 4912, "args": { "value": 33 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2306626, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2306632, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e83fc8f370", "tid": 15264, "ts": 2306674, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 16777216, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 0, "ResourceHeap": { "id_ref": "0x1e83ffa9d90" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2306684, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 2306789, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2306800, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2306806, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2306812, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2306818, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2306828, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2306834, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e83ffa92e0", "tid": 15264, "ts": 2306988, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e83ffa92e0", "tid": 15264, "ts": 2307037, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2307050, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2307056, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2307062, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2307069, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2307075, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2307080, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2307144, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e83fc915d0", "tid": 15264, "ts": 2307153, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2307161, "pid": 4912, "args": { "value": 354 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2307177, "pid": 4912, "args": { "value": 99 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2307183, "pid": 4912, "args": { "value": 37 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2307189, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2307195, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e83fc915d0", "tid": 15264, "ts": 2307237, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffa92e0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2307247, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 2307372, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2307383, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2307389, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2307395, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e83ffa9400", "tid": 15264, "ts": 2307562, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e83ffa9400", "tid": 15264, "ts": 2307610, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 16777216, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 16777216, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2307623, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2307629, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2307635, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2307691, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e83fc8f730", "tid": 15264, "ts": 2307700, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2307708, "pid": 4912, "args": { "value": 317 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2307724, "pid": 4912, "args": { "value": 99 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2307730, "pid": 4912, "args": { "value": 54 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2307736, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2307741, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e83fc8f730", "tid": 15264, "ts": 2307783, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 16777216, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 0, "ResourceHeap": { "id_ref": "0x1e83ffa9400" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2307792, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2307871, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2307882, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e83fc8fff0", "tid": 15264, "ts": 2307887, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 2307990, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2308002, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2308008, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2308014, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2308020, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2308030, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2308035, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e83ffaa450", "tid": 15264, "ts": 2308185, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e83ffaa450", "tid": 15264, "ts": 2308233, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 2, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2308246, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2308253, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2308259, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2308265, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2308271, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2308276, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2308333, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e83fc8f050", "tid": 15264, "ts": 2308341, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2308349, "pid": 4912, "args": { "value": 340 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2308365, "pid": 4912, "args": { "value": 97 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2308371, "pid": 4912, "args": { "value": 40 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2308377, "pid": 4912, "args": { "value": 28 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2308382, "pid": 4912, "args": { "value": 16 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e83fc8f050", "tid": 15264, "ts": 2308423, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 1048576, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffaa450" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2308433, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2308529, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2308539, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e83fc8f370", "tid": 15264, "ts": 2308544, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 2308640, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2308652, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2308658, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2308664, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2308670, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2308677, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2308682, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e83ffaa3c0", "tid": 15264, "ts": 2308843, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e83ffaa3c0", "tid": 15264, "ts": 2308881, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2308894, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2308901, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2308907, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2308913, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2308919, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2308924, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2308982, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e83fc90270", "tid": 15264, "ts": 2308991, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2308998, "pid": 4912, "args": { "value": 339 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2309015, "pid": 4912, "args": { "value": 92 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2309020, "pid": 4912, "args": { "value": 27 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2309026, "pid": 4912, "args": { "value": 53 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2309032, "pid": 4912, "args": { "value": 33 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e83fc90270", "tid": 15264, "ts": 2309072, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 1048576, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffaa3c0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2309082, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 2309204, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 3 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 1024, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2309215, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2309221, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2309227, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2309232, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2309247, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2309253, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e83ffaa960", "tid": 15264, "ts": 2309419, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e83ffaa960", "tid": 15264, "ts": 2309457, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 3, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2309470, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2309476, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2309482, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2309488, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2309494, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2309499, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2309560, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e83fc8f4b0", "tid": 15264, "ts": 2309569, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2309576, "pid": 4912, "args": { "value": 354 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2309592, "pid": 4912, "args": { "value": 93 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2309598, "pid": 4912, "args": { "value": 31 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2309604, "pid": 4912, "args": { "value": 50 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2309609, "pid": 4912, "args": { "value": 33 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e83fc8f4b0", "tid": 15264, "ts": 2309650, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffaa960" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2309660, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 2309780, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2309790, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2309796, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2309802, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2309810, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2309815, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2309820, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2309888, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e83fc910d0", "tid": 15264, "ts": 2309896, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2309904, "pid": 4912, "args": { "value": 106 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2309920, "pid": 4912, "args": { "value": 93 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2309926, "pid": 4912, "args": { "value": 31 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2309931, "pid": 4912, "args": { "value": 50 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2309937, "pid": 4912, "args": { "value": 33 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e83fc910d0", "tid": 15264, "ts": 2309979, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 65536, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83ffa92e0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2309989, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2310062, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2310069, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2310075, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e83fc915d0", "tid": 15264, "ts": 2310080, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2310132, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 2310184, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2310194, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2310200, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2310207, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2310212, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2310268, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e83fc8f5f0", "tid": 15264, "ts": 2310277, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2310284, "pid": 4912, "args": { "value": 83 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2310300, "pid": 4912, "args": { "value": 95 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2310306, "pid": 4912, "args": { "value": 48 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2310312, "pid": 4912, "args": { "value": 25 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2310318, "pid": 4912, "args": { "value": 16 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e83fc8f5f0", "tid": 15264, "ts": 2310358, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 16777216, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 0, "ResourceHeap": { "id_ref": "0x1e83ffa9d90" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2310368, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2310430, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2310438, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e83fc8f730", "tid": 15264, "ts": 2310443, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2310511, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2310521, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e83fc8f5f0", "tid": 15264, "ts": 2310526, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2310608, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2310617, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2310622, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2310628, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2310636, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2310642, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2310647, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e83fc910d0", "tid": 15264, "ts": 2310652, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2310702, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2310745, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2310752, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2310757, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2310766, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2310772, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2310777, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2310782, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e83fc90270", "tid": 15264, "ts": 2310787, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2310837, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2310880, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2310887, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2310892, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2310901, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2310909, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2310914, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2310919, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e83fc8f4b0", "tid": 15264, "ts": 2310924, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2310974, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2311016, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2311023, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2311029, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2311037, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2311045, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2311051, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2311056, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e83fc8f050", "tid": 15264, "ts": 2311061, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2311110, "pid": 4912 }, { "name": "GPUMemoryAllocator", "cat": "default", "ph": "D", "id": "0x1e83b5ba9b0", "tid": 15264, "ts": 2311130, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e840170808", "tid": 15264, "ts": 2311170, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2311178, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e83ffaa960", "tid": 15264, "ts": 2311183, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2311331, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83b592c60", "tid": 15264, "ts": 2311343, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e8401705c8", "tid": 15264, "ts": 2311368, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2311375, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e83ffaa450", "tid": 15264, "ts": 2311380, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2311522, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83b592ea0", "tid": 15264, "ts": 2311533, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83ff2f4b8", "tid": 15264, "ts": 2311559, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2311567, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e83ffaa3c0", "tid": 15264, "ts": 2311572, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2311713, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2311723, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e83ffa92e0", "tid": 15264, "ts": 2311728, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2311867, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83b5938c0", "tid": 15264, "ts": 2311879, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83ff307d8", "tid": 15264, "ts": 2311904, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83b555ab0", "tid": 15264, "ts": 2311911, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83fffb548", "tid": 15264, "ts": 2311938, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83b555c60", "tid": 15264, "ts": 2311946, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83fffcbc8", "tid": 15264, "ts": 2311969, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83ffaa210", "tid": 15264, "ts": 2311976, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83fffcf28", "tid": 15264, "ts": 2311999, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83ffa9640", "tid": 15264, "ts": 2312005, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83ffab4c8", "tid": 15264, "ts": 2312029, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83ffaacc0", "tid": 15264, "ts": 2312035, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2312045, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e83ffa9910", "tid": 15264, "ts": 2312050, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2312191, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83ffaa9f0", "tid": 15264, "ts": 2312203, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2312211, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e83ffa9d90", "tid": 15264, "ts": 2312216, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2312356, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2312366, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e83ffa9400", "tid": 15264, "ts": 2312372, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2312512, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83ffa9d00", "tid": 15264, "ts": 2312523, "pid": 4912 }, { "name": "thread_name", "cat": "__metadata", "ph": "M", "tid": 15264, "ts": 2370416, "pid": 4912, "args": { "name": "GPGMM_MainThread" } } ] } \ No newline at end of file +{ "traceEvents": [ { "name": "thread_name", "cat": "__metadata", "ph": "M", "tid": 7996, "ts": 1507747, "pid": 31040, "args": { "name": "GPGMM_MainThread" } }, { "name": "GPUMemoryAllocator", "cat": "default", "ph": "N", "id": "0x1d1703f6180", "tid": 7996, "ts": 1507783, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d174ad9488", "tid": 7996, "ts": 1507811, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d17040aee0", "tid": 7996, "ts": 1507893, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d174ad9ea8", "tid": 7996, "ts": 1509556, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d17040a3a0", "tid": 7996, "ts": 1509643, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d174ae6d98", "tid": 7996, "ts": 1510830, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d17040a670", "tid": 7996, "ts": 1510873, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d174ae5a78", "tid": 7996, "ts": 1512088, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d170403510", "tid": 7996, "ts": 1512130, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d174ae5ef8", "tid": 7996, "ts": 1513413, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d170403120", "tid": 7996, "ts": 1513467, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d174af42e8", "tid": 7996, "ts": 1514664, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d1704033f0", "tid": 7996, "ts": 1514706, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d174af5188", "tid": 7996, "ts": 1516091, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d174afa6e0", "tid": 7996, "ts": 1516157, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d174af5608", "tid": 7996, "ts": 1517561, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d174afba00", "tid": 7996, "ts": 1517603, "pid": 31040 }, { "name": "GPUMemoryAllocator", "cat": "default", "ph": "O", "id": "0x1d1703f6180", "tid": 7996, "ts": 1518864, "pid": 31040, "args": { "snapshot": { "Flags": 4, "RecordOptions": { "Flags": 3, "MinMessageLevel": 0 }, "IsUMA": 1, "ResourceHeapTier": 2, "PreferredResourceHeapSize": 4194304, "MaxResourceHeapSize": 34359738368, "MaxVideoMemoryBudget": 0.000000, "TotalResourceBudgetLimit": 0, "EvictLimit": 0, "MemoryFragmentationLimit": 0.125000 } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1518925, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d174afa920", "tid": 7996, "ts": 1518951, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d174afc150", "tid": 7996, "ts": 1519227, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d174afc150", "tid": 7996, "ts": 1519264, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 16777216, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 16777216, "Properties": { "SizeInBytes": 2, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d1703bc520", "tid": 7996, "ts": 1519372, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1519379, "pid": 31040, "args": { "value": 438 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1519400, "pid": 31040, "args": { "value": 0 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1519406, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1519411, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d1703bc520", "tid": 7996, "ts": 1519455, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 16777216, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 0, "ResourceHeap": { "id_ref": "0x1d174afc150" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1519547, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d174afada0", "tid": 7996, "ts": 1519574, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d174afafe0", "tid": 7996, "ts": 1519794, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d174afafe0", "tid": 7996, "ts": 1519831, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 16777216, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 16777216, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d1703bc660", "tid": 7996, "ts": 1519925, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1519932, "pid": 31040, "args": { "value": 368 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1519949, "pid": 31040, "args": { "value": 0 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1519954, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1519960, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d1703bc660", "tid": 7996, "ts": 1520000, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 16777216, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 0, "ResourceHeap": { "id_ref": "0x1d174afafe0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1520086, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d174afbb20", "tid": 7996, "ts": 1520303, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d174afbb20", "tid": 7996, "ts": 1520359, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1520409, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1520426, "pid": 31040, "args": { "value": 35 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d1703bc700", "tid": 7996, "ts": 1520544, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1520551, "pid": 31040, "args": { "value": 448 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1520585, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1520591, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1520605, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d1703bc700", "tid": 7996, "ts": 1520681, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174afbb20" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1520797, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d174afabf0", "tid": 7996, "ts": 1521080, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d174afabf0", "tid": 7996, "ts": 1521118, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 16777216, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 16777216, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d1703bc340", "tid": 7996, "ts": 1521242, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1521249, "pid": 31040, "args": { "value": 434 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1521280, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1521286, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1521303, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d1703bc340", "tid": 7996, "ts": 1521345, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 16777216, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 0, "ResourceHeap": { "id_ref": "0x1d174afabf0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d1703bc520", "tid": 7996, "ts": 1521475, "pid": 31040 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1521620, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d174afb190", "tid": 7996, "ts": 1521868, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d174afb190", "tid": 7996, "ts": 1521904, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 2, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1521941, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1521946, "pid": 31040, "args": { "value": 35 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d1703bcf20", "tid": 7996, "ts": 1522022, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1522029, "pid": 31040, "args": { "value": 382 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1522047, "pid": 31040, "args": { "value": 7 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1522053, "pid": 31040, "args": { "value": 71 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1522058, "pid": 31040, "args": { "value": 16 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d1703bcf20", "tid": 7996, "ts": 1522098, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 1048576, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174afb190" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d1703bc660", "tid": 7996, "ts": 1522218, "pid": 31040 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1522356, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d174afb2b0", "tid": 7996, "ts": 1522569, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d174afb2b0", "tid": 7996, "ts": 1522605, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1522671, "pid": 31040, "args": { "value": 8 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1522677, "pid": 31040, "args": { "value": 33 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d1703bc520", "tid": 7996, "ts": 1522753, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1522760, "pid": 31040, "args": { "value": 388 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1522779, "pid": 31040, "args": { "value": 10 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1522784, "pid": 31040, "args": { "value": 46 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1522790, "pid": 31040, "args": { "value": 33 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d1703bc520", "tid": 7996, "ts": 1522830, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 1048576, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174afb2b0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1522936, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 3 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 1024, "clearValue": { } } }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d174afb3d0", "tid": 7996, "ts": 1523185, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d174afb3d0", "tid": 7996, "ts": 1523241, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 3, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1523282, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1523288, "pid": 31040, "args": { "value": 35 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d1703b7a80", "tid": 7996, "ts": 1523400, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1523407, "pid": 31040, "args": { "value": 454 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1523438, "pid": 31040, "args": { "value": 14 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1523444, "pid": 31040, "args": { "value": 50 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1523465, "pid": 31040, "args": { "value": 33 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d1703b7a80", "tid": 7996, "ts": 1523534, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174afb3d0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1523681, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1523726, "pid": 31040, "args": { "value": 8 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1523732, "pid": 31040, "args": { "value": 31 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d1703b7b20", "tid": 7996, "ts": 1523917, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1523924, "pid": 31040, "args": { "value": 227 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1523942, "pid": 31040, "args": { "value": 14 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1523948, "pid": 31040, "args": { "value": 50 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1523954, "pid": 31040, "args": { "value": 33 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d1703b7b20", "tid": 7996, "ts": 1523995, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 65536, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d174afbb20" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d1703bc700", "tid": 7996, "ts": 1524080, "pid": 31040 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1524240, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d1703b7940", "tid": 7996, "ts": 1524381, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1524402, "pid": 31040, "args": { "value": 132 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1524419, "pid": 31040, "args": { "value": 14 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1524425, "pid": 31040, "args": { "value": 75 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1524430, "pid": 31040, "args": { "value": 16 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d1703b7940", "tid": 7996, "ts": 1524481, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 16777216, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 0, "ResourceHeap": { "id_ref": "0x1d174afafe0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d1703bc340", "tid": 7996, "ts": 1524599, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d1703b7940", "tid": 7996, "ts": 1524700, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d1703b7b20", "tid": 7996, "ts": 1524833, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d1703bc520", "tid": 7996, "ts": 1524982, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d1703b7a80", "tid": 7996, "ts": 1525110, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d1703bcf20", "tid": 7996, "ts": 1525297, "pid": 31040 }, { "name": "GPUMemoryAllocator", "cat": "default", "ph": "D", "id": "0x1d1703f6180", "tid": 7996, "ts": 1525364, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d174ad9488", "tid": 7996, "ts": 1525413, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d174afb3d0", "tid": 7996, "ts": 1525426, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d17040aee0", "tid": 7996, "ts": 1525650, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d174ad9ea8", "tid": 7996, "ts": 1525679, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d174afb190", "tid": 7996, "ts": 1525692, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d17040a3a0", "tid": 7996, "ts": 1525884, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d174ae6d98", "tid": 7996, "ts": 1525912, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d174afb2b0", "tid": 7996, "ts": 1525924, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d174afbb20", "tid": 7996, "ts": 1526116, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d17040a670", "tid": 7996, "ts": 1526304, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d174ae5a78", "tid": 7996, "ts": 1526333, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d170403510", "tid": 7996, "ts": 1526340, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d174ae5ef8", "tid": 7996, "ts": 1526365, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d170403120", "tid": 7996, "ts": 1526371, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d174af42e8", "tid": 7996, "ts": 1526399, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d1704033f0", "tid": 7996, "ts": 1526405, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d174af5188", "tid": 7996, "ts": 1526429, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d174afa6e0", "tid": 7996, "ts": 1526436, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d174af5608", "tid": 7996, "ts": 1526460, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d174afba00", "tid": 7996, "ts": 1526467, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d174afc150", "tid": 7996, "ts": 1526482, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d174afa920", "tid": 7996, "ts": 1526670, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d174afafe0", "tid": 7996, "ts": 1526683, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d174afabf0", "tid": 7996, "ts": 1526904, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d174afada0", "tid": 7996, "ts": 1527095, "pid": 31040 } ] } \ No newline at end of file diff --git a/src/tests/capture_replay_tests/traces/webnn_mobilenetv2_nchw.json b/src/tests/capture_replay_tests/traces/webnn_mobilenetv2_nchw.json index fe0675c0b..28d40b287 100644 --- a/src/tests/capture_replay_tests/traces/webnn_mobilenetv2_nchw.json +++ b/src/tests/capture_replay_tests/traces/webnn_mobilenetv2_nchw.json @@ -1 +1 @@ -{ "traceEvents": [ { "name": "GPUMemoryAllocator", "cat": "default", "ph": "N", "id": "0x1e840170090", "tid": 15264, "ts": 2545482, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83b5cb638", "tid": 15264, "ts": 2545505, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545519, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545531, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545540, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545554, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83b594370", "tid": 15264, "ts": 2545560, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545566, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545571, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545576, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545585, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545590, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545595, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545600, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545606, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545611, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545621, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545626, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545631, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545636, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545644, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545649, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545654, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545659, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545664, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545669, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545678, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545683, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545688, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545693, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545701, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545706, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545711, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545716, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545721, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545726, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545736, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545741, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545746, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545751, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545758, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545764, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545769, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545773, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545779, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545784, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545793, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545798, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545803, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545808, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545816, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545821, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545826, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545830, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545836, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545841, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545850, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545855, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545860, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545865, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545872, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545877, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545882, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545887, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545894, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545902, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545911, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545916, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545921, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545926, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545934, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545939, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545944, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545949, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545954, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545959, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545968, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2545973, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545978, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545983, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545991, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2545996, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546001, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546006, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546015, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546022, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546031, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546037, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546041, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546046, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546054, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546059, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546064, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546069, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546074, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546079, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546088, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546093, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546098, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546103, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546111, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546116, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546121, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546126, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546133, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546140, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546149, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546154, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546159, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546164, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546172, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546177, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546182, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546187, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546192, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546197, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546206, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546211, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546216, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546221, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546229, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546234, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546239, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546244, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546251, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546258, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546267, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546272, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546277, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546282, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546290, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546295, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546300, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546304, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546310, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546315, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546324, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546329, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546334, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546339, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546347, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546352, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546356, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546361, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546370, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546377, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546386, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546391, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546396, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546401, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546409, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546414, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546419, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546424, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546429, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546434, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546443, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546448, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546453, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546458, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546466, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546471, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546476, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546481, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546487, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546494, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546505, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546511, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546515, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546520, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546528, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546533, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546538, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546543, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546548, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546554, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546563, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546568, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546573, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546578, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546586, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546591, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546595, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546600, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546606, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546611, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546620, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546625, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546630, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546635, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546642, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546647, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546652, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83b5cb098", "tid": 15264, "ts": 2546662, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546674, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546682, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546689, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546700, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83b592c60", "tid": 15264, "ts": 2546705, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546710, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546726, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546731, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546740, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546745, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546750, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546755, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546761, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546766, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546775, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546781, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546797, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546802, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546810, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546815, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546819, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546824, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546829, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546835, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546844, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546849, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546854, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546859, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546866, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546871, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546876, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546881, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546887, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546892, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546901, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546906, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546911, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546915, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546923, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546928, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546933, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546938, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546943, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546948, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546957, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546963, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546967, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546972, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546980, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546985, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2546990, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2546995, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547000, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547005, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547014, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547019, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547024, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547029, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547037, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547042, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547047, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547052, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547059, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547066, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547075, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547081, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547085, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547090, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547098, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547103, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547108, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547113, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547118, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547123, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547132, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547137, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547142, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547147, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547155, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547160, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547165, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547170, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547178, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547185, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547194, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547200, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547204, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547210, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547217, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547222, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547227, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547232, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547237, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547243, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547252, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547257, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547262, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547266, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547274, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547279, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547284, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547289, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547296, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547303, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547312, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547317, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547322, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547327, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547335, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547340, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547345, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547350, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547355, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547360, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547369, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547374, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547379, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547384, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547392, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547397, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547402, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547407, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547414, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547420, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547430, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547435, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547440, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547444, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547452, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547457, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547462, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547467, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547473, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547478, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547487, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547492, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547499, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547503, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547511, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547516, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547521, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547526, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547535, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547542, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547551, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547556, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547561, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547566, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547574, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547579, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547584, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547589, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547594, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547599, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547608, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547613, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547618, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547623, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547631, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547636, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547641, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547646, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547652, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547659, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547669, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547674, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547678, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547683, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547691, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547696, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547701, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547706, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547711, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547717, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547726, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547731, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547736, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547741, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547748, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547753, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547758, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547763, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547768, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547773, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547782, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547787, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547792, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547797, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547805, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547810, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547815, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83fc1ed28", "tid": 15264, "ts": 2547824, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547835, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547843, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547850, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547861, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83b593680", "tid": 15264, "ts": 2547866, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547871, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547876, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547881, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547889, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547894, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547899, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547904, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547909, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547914, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547924, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547929, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547933, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547938, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547946, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547951, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547956, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547961, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547966, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547971, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547980, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2547986, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547990, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2547995, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548003, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548008, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548013, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548018, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548023, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548028, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548037, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548042, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548047, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548052, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548060, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548065, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548070, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548075, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548080, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548085, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548094, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548099, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548104, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548109, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548116, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548121, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548126, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548131, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548136, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548141, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548151, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548156, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548161, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548165, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548173, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548178, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548183, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548188, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548195, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548203, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548219, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548225, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548230, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548235, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548243, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548248, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548253, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548258, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548263, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548268, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548278, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548283, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548287, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548292, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548301, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548306, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548310, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548315, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548324, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548332, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548341, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548346, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548351, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548356, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548364, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548369, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548374, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548379, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548384, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548389, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548398, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548404, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548408, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548413, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548421, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548426, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548431, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548436, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548443, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548450, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548459, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548464, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548469, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548474, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548482, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548487, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548492, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548501, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548517, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548523, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548548, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548553, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548558, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548564, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548572, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548577, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548582, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548588, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548595, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548613, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548623, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548628, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548644, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548649, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548657, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548662, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548667, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548672, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548677, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548682, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548691, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548696, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548701, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548706, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548714, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548719, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548724, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548729, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548737, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548744, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548753, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548758, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548763, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548768, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548776, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548781, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548786, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548791, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548796, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548801, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548810, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548815, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548820, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548825, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548833, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548838, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548842, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548847, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548854, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548861, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548870, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548875, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548880, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548885, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548893, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548898, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548903, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548908, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548913, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548918, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548927, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548932, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548937, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548942, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548950, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548955, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548959, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548964, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548969, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548975, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548984, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2548989, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548994, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2548998, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549006, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549011, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549016, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83fc1f088", "tid": 15264, "ts": 2549026, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549038, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549046, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549053, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549069, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83b555a20", "tid": 15264, "ts": 2549075, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549080, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549085, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549090, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549098, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549104, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549108, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549113, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549119, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549124, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549133, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549139, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549143, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549148, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549156, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549161, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549166, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549171, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549176, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549181, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549191, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549196, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549201, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549205, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549213, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549218, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549223, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549228, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549233, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549238, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549247, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549253, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549257, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549262, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549270, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549275, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549280, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549285, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549290, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549295, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549304, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549309, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549314, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549319, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549327, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549332, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549337, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549342, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549347, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549352, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549361, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549366, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549371, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549376, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549384, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549389, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549394, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549398, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549406, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549413, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549422, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549427, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549432, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549437, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549445, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549450, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549455, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549460, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549465, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549470, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549479, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549484, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549489, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549494, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549504, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549509, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549514, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549519, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549527, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549534, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549544, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549549, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549554, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549558, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549567, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549571, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549576, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549581, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549586, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549591, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549601, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549606, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549611, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549616, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549624, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549629, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549633, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549638, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549645, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549652, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549662, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549667, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549672, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549677, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549685, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549690, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549695, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549699, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549705, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549710, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549719, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549724, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549729, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549734, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549741, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549746, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549751, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549756, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549763, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549770, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549779, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549784, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549789, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549794, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549802, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549807, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549812, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549817, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549822, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549827, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549837, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549842, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549847, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549851, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549859, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549864, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549869, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549874, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549882, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549889, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549899, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549904, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549909, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549913, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549922, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549927, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549932, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549936, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549942, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549947, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549956, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549961, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549966, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549971, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549979, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549984, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2549988, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2549993, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550000, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550007, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550016, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550021, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550027, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550031, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550040, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550044, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550049, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550054, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550060, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550064, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550074, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550079, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550084, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550089, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550096, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550102, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550106, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550111, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550116, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550121, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550131, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550136, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550140, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550145, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550153, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550158, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550163, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83fe437d8", "tid": 15264, "ts": 2550173, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550185, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550193, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550200, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550214, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83b555e10", "tid": 15264, "ts": 2550220, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550225, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550230, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550235, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550243, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550248, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550253, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550258, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550263, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550269, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550278, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550283, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550288, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550293, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550301, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550306, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550311, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550315, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550321, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550326, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550335, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550340, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550345, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550350, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550358, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550363, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550368, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550373, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550378, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550383, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550392, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550397, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550402, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550407, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550415, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550420, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550425, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550429, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550435, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550440, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550449, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550454, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550459, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550463, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550471, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550476, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550481, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550486, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550491, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550498, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550507, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550512, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550517, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550522, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550530, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550535, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550540, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550545, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550552, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550559, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550568, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550574, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550578, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550583, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550591, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550596, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550601, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550606, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550611, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550616, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550626, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550631, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550636, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550641, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550648, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550653, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550658, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550663, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550671, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550679, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550694, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550699, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550704, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550709, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550717, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550722, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550727, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550732, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550738, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550743, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550752, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550757, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550762, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550767, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550775, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550780, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550784, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550789, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550797, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550804, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550813, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550818, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550823, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550828, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550836, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550841, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550846, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550851, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550856, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550861, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550870, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550875, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550880, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550885, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550893, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550898, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550903, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550908, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550915, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550922, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550931, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550936, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550941, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550946, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550954, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550959, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550964, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550969, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550974, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550979, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550988, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2550994, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2550998, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551003, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551011, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551016, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551021, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551026, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551034, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551041, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551050, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551056, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551060, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551065, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551073, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551078, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551083, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551088, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551093, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551098, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551108, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551113, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551118, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551123, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551130, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551135, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551140, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551145, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551152, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551159, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551168, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551173, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551178, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551183, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551191, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551196, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551201, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551206, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551211, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551216, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551225, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551230, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551235, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551240, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551248, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551253, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551258, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551263, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551268, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551273, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551282, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551287, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551292, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551297, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551305, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551310, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551314, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83fe43d78", "tid": 15264, "ts": 2551324, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551335, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551343, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551350, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551360, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83d7ae480", "tid": 15264, "ts": 2551370, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551376, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551381, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551385, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551394, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551399, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551404, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551409, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551414, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551419, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551429, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551434, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551439, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551444, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551452, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551457, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551461, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551467, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551472, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551477, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551486, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551491, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551498, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551503, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551511, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551515, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551521, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551525, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551531, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551536, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551545, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551550, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551555, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551559, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551567, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551572, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551577, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551582, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551587, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551593, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551602, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551607, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551611, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551616, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551624, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551629, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551634, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551639, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551644, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551649, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551658, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551663, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551668, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551673, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551681, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551686, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551691, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551696, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551703, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551710, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551719, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551724, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551729, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551734, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551742, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551747, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551752, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551757, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551762, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551767, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551776, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551781, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551786, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551791, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551799, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551804, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551809, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551814, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551822, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551829, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551838, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551843, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551848, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551853, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551861, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551866, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551871, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551876, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551881, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551886, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551895, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551900, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551905, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551910, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551918, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551923, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551928, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551932, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551939, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551946, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551955, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551960, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551965, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551970, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551978, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551983, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2551988, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551993, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2551998, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552003, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552012, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552018, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552022, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552027, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552035, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552040, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552045, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552050, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552057, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552063, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552073, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552078, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552083, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552088, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552096, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552101, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552106, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552111, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552116, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552121, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552130, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552135, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552140, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552145, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552153, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552158, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552163, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552168, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552176, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552183, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552192, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552198, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552202, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552207, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552215, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552220, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552225, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552230, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552235, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552240, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552249, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552254, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552259, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552264, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552272, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552277, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552282, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552287, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552294, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552300, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552310, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552315, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552320, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552324, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552332, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552337, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552342, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552347, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552352, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552357, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552367, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552372, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552376, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552381, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552389, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552394, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552399, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552404, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552409, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552414, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552423, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552428, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552433, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552438, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552446, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552451, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552456, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83fe43c58", "tid": 15264, "ts": 2552466, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552477, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552484, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552492, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552523, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83d7ad5e0", "tid": 15264, "ts": 2552529, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552534, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552539, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552544, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552553, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552569, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552574, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552579, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552584, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552589, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552598, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552603, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552608, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552613, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552621, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552626, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552631, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552636, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552641, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552646, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552655, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552661, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552665, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552670, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552678, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552683, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552688, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552693, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552698, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552703, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552712, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552717, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552722, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552727, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552735, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552740, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552745, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552750, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552755, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552760, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552769, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552774, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552779, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552784, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552792, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552797, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552802, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552806, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552812, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552816, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552826, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552831, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552836, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552840, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552848, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552853, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552858, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552863, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552870, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552877, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552887, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552892, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552897, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552901, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552909, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552914, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552919, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552924, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552929, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552934, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552943, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552949, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552954, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552958, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552966, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552971, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2552976, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552981, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552989, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2552996, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553006, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553011, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553016, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553020, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553028, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553033, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553038, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553043, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553048, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553053, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553063, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553068, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553073, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553078, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553085, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553090, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553095, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553100, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553107, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553114, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553128, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553133, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553138, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553143, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553151, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553156, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553161, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553166, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553171, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553177, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553186, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553191, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553196, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553201, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553209, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553214, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553219, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553223, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553231, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553238, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553247, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553252, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553257, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553262, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553270, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553275, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553280, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553284, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553290, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553295, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553304, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553309, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553314, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553318, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553326, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553331, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553336, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553341, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553350, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553357, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553370, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553375, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553380, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553385, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553393, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553398, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553403, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553407, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553413, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553418, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553427, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553432, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553437, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553442, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553450, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553455, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553460, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553465, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553472, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553479, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553488, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553495, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553500, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553505, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553513, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553518, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553523, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553527, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553533, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553538, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553547, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553552, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553557, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553562, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553570, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553575, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553580, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553584, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553589, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553595, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553604, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553609, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553614, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553618, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553626, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553631, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553636, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83d7af4f8", "tid": 15264, "ts": 2553647, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553658, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553666, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553673, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553689, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83d7ad670", "tid": 15264, "ts": 2553695, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553700, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553705, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553710, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553718, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553723, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553728, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553733, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553738, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553744, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553753, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553758, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553763, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553768, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553776, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553781, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553786, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553791, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553796, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553801, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553811, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553816, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553821, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553826, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553834, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553839, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553844, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553848, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553854, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553859, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553868, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553873, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553878, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553883, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553891, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553896, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553901, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553906, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553911, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553916, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553925, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553930, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553935, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553940, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553948, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553953, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553958, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553962, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553968, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553973, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553982, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2553987, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553992, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2553997, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554005, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554010, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554015, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554019, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554027, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554034, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554043, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554048, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554053, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554058, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554066, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554071, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554076, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554081, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554086, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554091, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554100, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554105, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554110, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554115, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554123, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554128, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554133, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554138, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554146, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554153, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554163, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554168, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554173, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554177, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554185, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554190, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554195, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554200, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554205, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554210, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554220, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554225, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554230, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554234, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554242, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554247, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554252, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554257, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554264, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554271, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554280, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554285, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554290, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554295, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554303, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554308, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554313, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554318, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554323, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554328, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554338, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554343, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554347, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554352, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554360, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554365, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554370, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554375, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554382, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554389, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554398, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554403, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554408, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554413, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554421, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554426, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554431, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554436, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554441, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554446, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554456, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554461, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554466, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554470, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554478, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554483, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554488, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554495, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554503, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554511, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554520, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554525, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554530, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554535, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554543, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554548, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554553, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554558, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554563, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554568, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554578, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554583, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554588, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554593, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554601, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554606, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554611, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554616, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554622, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554629, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554639, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554644, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554649, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554653, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554661, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554666, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554671, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554676, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554681, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554686, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554695, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554701, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554705, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554710, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554718, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554723, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554728, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554733, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554738, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554743, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554752, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554757, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554762, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554767, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554775, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554780, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2554785, "pid": 4912 }, { "name": "GPUMemoryAllocator", "cat": "default", "ph": "O", "id": "0x1e840170090", "tid": 15264, "ts": 2554830, "pid": 4912, "args": { "snapshot": { "Flags": 4, "RecordOptions": { "Flags": 255, "MinMessageLevel": 0 }, "IsUMA": 1, "ResourceHeapTier": 2, "PreferredResourceHeapSize": 4194304, "MaxResourceHeapSize": 34359738368, "MaxResourceSizeForPooling": 34359738368, "MaxVideoMemoryBudget": 0.000000, "TotalResourceBudgetLimit": 0, "VideoMemoryEvictSize": 0, "ResourceFragmentationLimit": 0.125000 } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 2554889, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554899, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554906, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83d7ae240", "tid": 15264, "ts": 2554912, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2554917, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e83d7ae2d0", "tid": 15264, "ts": 2555898, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e83d7ae2d0", "tid": 15264, "ts": 2555949, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 16777216, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 16777216, "Properties": { "SizeInBytes": 2, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2555964, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2555971, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2555976, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2556039, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e83fc8e970", "tid": 15264, "ts": 2556048, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2556055, "pid": 4912, "args": { "value": 1148 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2556073, "pid": 4912, "args": { "value": 100 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2556079, "pid": 4912, "args": { "value": 16 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2556085, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2556091, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e83fc8e970", "tid": 15264, "ts": 2556135, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 16777216, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 0, "ResourceHeap": { "id_ref": "0x1e83d7ae2d0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2556145, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 2556258, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2556268, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2556274, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83d7ad1f0", "tid": 15264, "ts": 2556280, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2556285, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e83d7adf70", "tid": 15264, "ts": 2557186, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e83d7adf70", "tid": 15264, "ts": 2557235, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 16777216, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 16777216, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2557248, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2557255, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2557260, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2557317, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e83fc8f7d0", "tid": 15264, "ts": 2557326, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2557334, "pid": 4912, "args": { "value": 1058 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2557350, "pid": 4912, "args": { "value": 100 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2557356, "pid": 4912, "args": { "value": 33 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2557362, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2557367, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e83fc8f7d0", "tid": 15264, "ts": 2557409, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 16777216, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 0, "ResourceHeap": { "id_ref": "0x1e83d7adf70" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2557419, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 2557529, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2557539, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2557546, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2557552, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2557557, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2557567, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2557573, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e83d7ad550", "tid": 15264, "ts": 2557907, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e83d7ad550", "tid": 15264, "ts": 2557956, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2557969, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2557975, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2557982, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2557988, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2557994, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2557999, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2558064, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e83fc8fff0", "tid": 15264, "ts": 2558073, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2558081, "pid": 4912, "args": { "value": 534 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2558097, "pid": 4912, "args": { "value": 99 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2558103, "pid": 4912, "args": { "value": 37 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2558109, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2558114, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e83fc8fff0", "tid": 15264, "ts": 2558157, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83d7ad550" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2558167, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 2558289, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2558300, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2558306, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2558312, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e83d7adaf0", "tid": 15264, "ts": 2558500, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e83d7adaf0", "tid": 15264, "ts": 2558538, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 16777216, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 16777216, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2558551, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2558557, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2558562, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2558619, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e83fc91030", "tid": 15264, "ts": 2558627, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2558635, "pid": 4912, "args": { "value": 328 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2558651, "pid": 4912, "args": { "value": 99 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2558657, "pid": 4912, "args": { "value": 54 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2558663, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2558668, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e83fc91030", "tid": 15264, "ts": 2558709, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 16777216, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 0, "ResourceHeap": { "id_ref": "0x1e83d7adaf0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2558719, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2558797, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2558808, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e83fc8e970", "tid": 15264, "ts": 2558814, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 2558918, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2558929, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2558936, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2558942, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2558947, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2558957, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2558962, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e83d7addc0", "tid": 15264, "ts": 2559303, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e83d7addc0", "tid": 15264, "ts": 2559341, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 2, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2559354, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2559360, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2559366, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2559373, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2559379, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2559384, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2559440, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e83fc8e970", "tid": 15264, "ts": 2559449, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2559456, "pid": 4912, "args": { "value": 520 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2559472, "pid": 4912, "args": { "value": 97 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2559478, "pid": 4912, "args": { "value": 40 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2559484, "pid": 4912, "args": { "value": 28 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2559492, "pid": 4912, "args": { "value": 16 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e83fc8e970", "tid": 15264, "ts": 2559533, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 1048576, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83d7addc0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2559542, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2559638, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2559648, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e83fc8f7d0", "tid": 15264, "ts": 2559653, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 2559748, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2559760, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2559766, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2559772, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2559778, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2559785, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2559790, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e83d7ae7e0", "tid": 15264, "ts": 2560130, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e83d7ae7e0", "tid": 15264, "ts": 2560167, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2560180, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2560186, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2560193, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2560199, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2560205, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2560210, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2560266, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e83fc8f7d0", "tid": 15264, "ts": 2560275, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2560282, "pid": 4912, "args": { "value": 515 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2560299, "pid": 4912, "args": { "value": 92 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2560305, "pid": 4912, "args": { "value": 27 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2560310, "pid": 4912, "args": { "value": 53 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2560316, "pid": 4912, "args": { "value": 33 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e83fc8f7d0", "tid": 15264, "ts": 2560356, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 1048576, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83d7ae7e0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2560366, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 2560487, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 3 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 1024, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2560512, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2560519, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2560525, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2560530, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2560557, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2560574, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e83d7aecf0", "tid": 15264, "ts": 2561018, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e83d7aecf0", "tid": 15264, "ts": 2561056, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 3, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2561069, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2561075, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2561081, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2561088, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2561094, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2561099, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2561159, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e83fc90090", "tid": 15264, "ts": 2561168, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2561175, "pid": 4912, "args": { "value": 656 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2561192, "pid": 4912, "args": { "value": 93 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2561197, "pid": 4912, "args": { "value": 31 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2561203, "pid": 4912, "args": { "value": 50 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2561209, "pid": 4912, "args": { "value": 33 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e83fc90090", "tid": 15264, "ts": 2561250, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83d7aecf0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2561259, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 2561378, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2561388, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2561395, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2561401, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2561408, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2561414, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2561419, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2561491, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e83fc91210", "tid": 15264, "ts": 2561500, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2561507, "pid": 4912, "args": { "value": 111 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2561523, "pid": 4912, "args": { "value": 93 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2561529, "pid": 4912, "args": { "value": 31 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2561535, "pid": 4912, "args": { "value": 50 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2561540, "pid": 4912, "args": { "value": 33 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e83fc91210", "tid": 15264, "ts": 2561582, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 65536, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83d7ad550" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2561592, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2561665, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2561672, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2561677, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e83fc8fff0", "tid": 15264, "ts": 2561682, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2561735, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 2561788, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2561797, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2561804, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2561810, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2561816, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2561872, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e83fc912b0", "tid": 15264, "ts": 2561880, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2561888, "pid": 4912, "args": { "value": 83 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2561903, "pid": 4912, "args": { "value": 95 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2561910, "pid": 4912, "args": { "value": 48 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2561915, "pid": 4912, "args": { "value": 25 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2561921, "pid": 4912, "args": { "value": 16 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e83fc912b0", "tid": 15264, "ts": 2561961, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 16777216, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 0, "ResourceHeap": { "id_ref": "0x1e83d7adf70" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2561971, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2562032, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2562039, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e83fc91030", "tid": 15264, "ts": 2562044, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2562113, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2562122, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e83fc912b0", "tid": 15264, "ts": 2562128, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2562209, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2562218, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2562224, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2562229, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2562237, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2562243, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2562248, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e83fc91210", "tid": 15264, "ts": 2562253, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2562303, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2562345, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2562352, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2562358, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2562366, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2562372, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2562378, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2562383, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e83fc8f7d0", "tid": 15264, "ts": 2562388, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2562437, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2562480, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2562486, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2562494, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2562503, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2562513, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2562519, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2562524, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e83fc90090", "tid": 15264, "ts": 2562529, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2562579, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2562622, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2562628, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2562634, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2562642, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2562650, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2562655, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2562660, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e83fc8e970", "tid": 15264, "ts": 2562666, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2562715, "pid": 4912 }, { "name": "GPUMemoryAllocator", "cat": "default", "ph": "D", "id": "0x1e840170090", "tid": 15264, "ts": 2562735, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83b5cb638", "tid": 15264, "ts": 2562775, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2562783, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e83d7aecf0", "tid": 15264, "ts": 2562788, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2562934, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83b594370", "tid": 15264, "ts": 2562945, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83b5cb098", "tid": 15264, "ts": 2562970, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2562978, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e83d7addc0", "tid": 15264, "ts": 2562983, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2563122, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83b592c60", "tid": 15264, "ts": 2563133, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83fc1ed28", "tid": 15264, "ts": 2563160, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2563167, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e83d7ae7e0", "tid": 15264, "ts": 2563172, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2563311, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2563321, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e83d7ad550", "tid": 15264, "ts": 2563326, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2563489, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83b593680", "tid": 15264, "ts": 2563500, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83fc1f088", "tid": 15264, "ts": 2563526, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83b555a20", "tid": 15264, "ts": 2563533, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83fe437d8", "tid": 15264, "ts": 2563557, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83b555e10", "tid": 15264, "ts": 2563564, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83fe43d78", "tid": 15264, "ts": 2563587, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83d7ae480", "tid": 15264, "ts": 2563593, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83fe43c58", "tid": 15264, "ts": 2563619, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83d7ad5e0", "tid": 15264, "ts": 2563627, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83d7af4f8", "tid": 15264, "ts": 2563650, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83d7ad670", "tid": 15264, "ts": 2563657, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2563667, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e83d7ae2d0", "tid": 15264, "ts": 2563672, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2563810, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83d7ae240", "tid": 15264, "ts": 2563822, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2563830, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e83d7adf70", "tid": 15264, "ts": 2563835, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2563972, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2563982, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e83d7adaf0", "tid": 15264, "ts": 2563988, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2564128, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83d7ad1f0", "tid": 15264, "ts": 2564139, "pid": 4912 }, { "name": "thread_name", "cat": "__metadata", "ph": "M", "tid": 15264, "ts": 2623193, "pid": 4912, "args": { "name": "GPGMM_MainThread" } } ] } \ No newline at end of file +{ "traceEvents": [ { "name": "thread_name", "cat": "__metadata", "ph": "M", "tid": 7996, "ts": 1581373, "pid": 31040, "args": { "name": "GPGMM_MainThread" } }, { "name": "GPUMemoryAllocator", "cat": "default", "ph": "N", "id": "0x1d1703f6180", "tid": 7996, "ts": 1581395, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d1749e0918", "tid": 7996, "ts": 1581411, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d17040b2d0", "tid": 7996, "ts": 1581469, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d1750fa378", "tid": 7996, "ts": 1582682, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d17040ac10", "tid": 7996, "ts": 1582733, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d1750fb218", "tid": 7996, "ts": 1583949, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d17040a040", "tid": 7996, "ts": 1583993, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d1750fbf98", "tid": 7996, "ts": 1585210, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d1704037e0", "tid": 7996, "ts": 1585253, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d1750fad98", "tid": 7996, "ts": 1586471, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d170402b80", "tid": 7996, "ts": 1586515, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d170411fb8", "tid": 7996, "ts": 1587841, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d170403120", "tid": 7996, "ts": 1587906, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d1704120d8", "tid": 7996, "ts": 1589207, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d170419720", "tid": 7996, "ts": 1589250, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d170412678", "tid": 7996, "ts": 1590467, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d1704187f0", "tid": 7996, "ts": 1590510, "pid": 31040 }, { "name": "GPUMemoryAllocator", "cat": "default", "ph": "O", "id": "0x1d1703f6180", "tid": 7996, "ts": 1592054, "pid": 31040, "args": { "snapshot": { "Flags": 4, "RecordOptions": { "Flags": 3, "MinMessageLevel": 0 }, "IsUMA": 1, "ResourceHeapTier": 2, "PreferredResourceHeapSize": 4194304, "MaxResourceHeapSize": 34359738368, "MaxVideoMemoryBudget": 0.000000, "TotalResourceBudgetLimit": 0, "EvictLimit": 0, "MemoryFragmentationLimit": 0.125000 } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1592118, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d170419330", "tid": 7996, "ts": 1592145, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d170419570", "tid": 7996, "ts": 1596216, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d170419570", "tid": 7996, "ts": 1596261, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 16777216, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 16777216, "Properties": { "SizeInBytes": 2, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d1703bca20", "tid": 7996, "ts": 1596367, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1596375, "pid": 31040, "args": { "value": 4240 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1596404, "pid": 31040, "args": { "value": 0 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1596410, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1596416, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d1703bca20", "tid": 7996, "ts": 1596462, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 16777216, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 0, "ResourceHeap": { "id_ref": "0x1d170419570" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1596560, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d1704181c0", "tid": 7996, "ts": 1596587, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d170418d00", "tid": 7996, "ts": 1600360, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d170418d00", "tid": 7996, "ts": 1600398, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 16777216, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 16777216, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d1703bc2a0", "tid": 7996, "ts": 1600495, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1600502, "pid": 31040, "args": { "value": 3925 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1600520, "pid": 31040, "args": { "value": 0 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1600526, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1600531, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d1703bc2a0", "tid": 7996, "ts": 1600572, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 16777216, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 0, "ResourceHeap": { "id_ref": "0x1d170418d00" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1600661, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d170419210", "tid": 7996, "ts": 1601789, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d170419210", "tid": 7996, "ts": 1601826, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1601864, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1601869, "pid": 31040, "args": { "value": 35 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d1703bbe40", "tid": 7996, "ts": 1601956, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1601963, "pid": 31040, "args": { "value": 1285 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1601980, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1601986, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1601991, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d1703bbe40", "tid": 7996, "ts": 1602033, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d170419210" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1602130, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d170418910", "tid": 7996, "ts": 1605920, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d170418910", "tid": 7996, "ts": 1605959, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 16777216, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 16777216, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d1703bc0c0", "tid": 7996, "ts": 1606058, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1606065, "pid": 31040, "args": { "value": 3917 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1606086, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1606092, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1606097, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d1703bc0c0", "tid": 7996, "ts": 1606150, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 16777216, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 0, "ResourceHeap": { "id_ref": "0x1d170418910" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d1703bca20", "tid": 7996, "ts": 1606251, "pid": 31040 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1606364, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d1704185b0", "tid": 7996, "ts": 1607493, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d1704185b0", "tid": 7996, "ts": 1607540, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 2, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1607577, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1607582, "pid": 31040, "args": { "value": 35 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d1703bd380", "tid": 7996, "ts": 1607658, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1607665, "pid": 31040, "args": { "value": 1285 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1607683, "pid": 31040, "args": { "value": 7 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1607688, "pid": 31040, "args": { "value": 71 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1607694, "pid": 31040, "args": { "value": 16 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d1703bd380", "tid": 7996, "ts": 1607767, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 1048576, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d1704185b0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d1703bc2a0", "tid": 7996, "ts": 1607876, "pid": 31040 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1607989, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d170419960", "tid": 7996, "ts": 1609577, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d170419960", "tid": 7996, "ts": 1609644, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1609696, "pid": 31040, "args": { "value": 8 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1609702, "pid": 31040, "args": { "value": 33 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d1703bd4c0", "tid": 7996, "ts": 1609797, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1609805, "pid": 31040, "args": { "value": 1788 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1609828, "pid": 31040, "args": { "value": 10 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1609834, "pid": 31040, "args": { "value": 46 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1609839, "pid": 31040, "args": { "value": 33 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d1703bd4c0", "tid": 7996, "ts": 1609881, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 1048576, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d170419960" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1610044, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 3 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 1024, "clearValue": { } } }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d170418eb0", "tid": 7996, "ts": 1610267, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d170418eb0", "tid": 7996, "ts": 1610303, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 3, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1610340, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1610346, "pid": 31040, "args": { "value": 35 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d1703bc160", "tid": 7996, "ts": 1610421, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1610428, "pid": 31040, "args": { "value": 351 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1610445, "pid": 31040, "args": { "value": 14 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1610451, "pid": 31040, "args": { "value": 50 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1610456, "pid": 31040, "args": { "value": 33 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d1703bc160", "tid": 7996, "ts": 1610496, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d170418eb0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1610586, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1610620, "pid": 31040, "args": { "value": 8 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1610625, "pid": 31040, "args": { "value": 31 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d1703bb6c0", "tid": 7996, "ts": 1610706, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1610713, "pid": 31040, "args": { "value": 110 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1610729, "pid": 31040, "args": { "value": 14 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1610735, "pid": 31040, "args": { "value": 50 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1610740, "pid": 31040, "args": { "value": 33 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d1703bb6c0", "tid": 7996, "ts": 1610781, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 65536, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d170419210" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d1703bbe40", "tid": 7996, "ts": 1610852, "pid": 31040 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1610953, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d1703bcc00", "tid": 7996, "ts": 1611054, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1611061, "pid": 31040, "args": { "value": 92 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1611078, "pid": 31040, "args": { "value": 14 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1611083, "pid": 31040, "args": { "value": 75 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1611089, "pid": 31040, "args": { "value": 16 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d1703bcc00", "tid": 7996, "ts": 1611128, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 16777216, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 0, "ResourceHeap": { "id_ref": "0x1d170418d00" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d1703bc0c0", "tid": 7996, "ts": 1611189, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d1703bcc00", "tid": 7996, "ts": 1611277, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d1703bb6c0", "tid": 7996, "ts": 1611386, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d1703bd4c0", "tid": 7996, "ts": 1611521, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d1703bc160", "tid": 7996, "ts": 1611630, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d1703bd380", "tid": 7996, "ts": 1611740, "pid": 31040 }, { "name": "GPUMemoryAllocator", "cat": "default", "ph": "D", "id": "0x1d1703f6180", "tid": 7996, "ts": 1611805, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d1749e0918", "tid": 7996, "ts": 1611853, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d170418eb0", "tid": 7996, "ts": 1611867, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d17040b2d0", "tid": 7996, "ts": 1612009, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d1750fa378", "tid": 7996, "ts": 1612037, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d1704185b0", "tid": 7996, "ts": 1612049, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d17040ac10", "tid": 7996, "ts": 1612183, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d1750fb218", "tid": 7996, "ts": 1612210, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d170419960", "tid": 7996, "ts": 1612222, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d170419210", "tid": 7996, "ts": 1612358, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d17040a040", "tid": 7996, "ts": 1612502, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d1750fbf98", "tid": 7996, "ts": 1612531, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d1704037e0", "tid": 7996, "ts": 1612538, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d1750fad98", "tid": 7996, "ts": 1612564, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d170402b80", "tid": 7996, "ts": 1612570, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d170411fb8", "tid": 7996, "ts": 1612597, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d170403120", "tid": 7996, "ts": 1612604, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d1704120d8", "tid": 7996, "ts": 1612629, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d170419720", "tid": 7996, "ts": 1612636, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d170412678", "tid": 7996, "ts": 1612662, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d1704187f0", "tid": 7996, "ts": 1612669, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d170419570", "tid": 7996, "ts": 1612684, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d170419330", "tid": 7996, "ts": 1612821, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d170418d00", "tid": 7996, "ts": 1612835, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d170418910", "tid": 7996, "ts": 1612973, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d1704181c0", "tid": 7996, "ts": 1613109, "pid": 31040 } ] } \ No newline at end of file diff --git a/src/tests/capture_replay_tests/traces/webnn_resnet50v2_nchw.json b/src/tests/capture_replay_tests/traces/webnn_resnet50v2_nchw.json index af58906c5..94684ab4a 100644 --- a/src/tests/capture_replay_tests/traces/webnn_resnet50v2_nchw.json +++ b/src/tests/capture_replay_tests/traces/webnn_resnet50v2_nchw.json @@ -1 +1 @@ -{ "traceEvents": [ { "name": "GPUMemoryAllocator", "cat": "default", "ph": "N", "id": "0x1e840170cd0", "tid": 15264, "ts": 2801406, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83b5a91b8", "tid": 15264, "ts": 2801427, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801441, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801452, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801461, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801475, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83b594520", "tid": 15264, "ts": 2801481, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801486, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801492, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801496, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801505, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801510, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801515, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801520, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801526, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801531, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801541, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801546, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801551, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801556, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801564, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801569, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801574, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801579, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801584, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801589, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801599, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801604, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801609, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801614, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801622, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801627, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801632, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801637, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801642, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801647, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801656, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801662, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801666, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801671, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801679, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801684, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801689, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801694, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801699, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801704, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801714, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801719, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801724, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801728, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801736, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801741, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801746, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801751, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801756, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801761, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801771, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801776, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801780, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801785, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801793, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801798, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801803, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801808, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801815, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801823, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801832, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801837, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801842, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801847, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801855, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801860, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801865, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801870, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801875, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801880, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801889, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801894, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801899, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801904, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801912, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801917, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801922, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801927, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801936, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801943, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801954, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801962, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801967, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801973, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801981, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801987, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2801992, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2801997, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802003, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802008, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802019, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802024, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802029, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802034, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802043, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802048, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802053, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802059, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802066, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802074, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802084, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802090, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802095, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802100, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802108, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802114, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802119, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802124, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802130, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802135, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802145, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802151, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802156, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802161, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802169, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802175, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802180, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802185, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802193, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802200, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802210, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802216, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802221, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802226, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802234, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802240, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802245, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802250, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802256, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802262, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802272, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802277, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802282, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802287, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802296, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802301, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802306, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802311, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802320, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802328, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802338, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802343, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802349, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802354, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802362, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802368, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802373, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802378, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802384, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802389, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802399, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802405, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802410, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802415, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802423, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802428, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802434, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802439, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802447, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802454, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802464, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802470, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802475, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802480, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802488, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802493, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802499, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802504, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802510, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802515, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802525, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802530, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802535, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802541, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802549, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802555, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802560, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802565, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802571, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802576, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802586, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802592, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802597, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802602, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802610, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802616, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802621, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83fc1f2d8", "tid": 15264, "ts": 2802631, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802644, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802652, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802660, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802671, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83b593050", "tid": 15264, "ts": 2802677, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802683, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802688, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802693, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802702, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802707, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802712, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802718, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802723, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802729, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802739, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802744, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802749, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802755, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802763, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802769, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802774, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802779, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802785, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802790, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802800, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802805, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802811, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802816, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802824, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802830, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802835, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802840, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802846, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802851, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802861, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802866, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802871, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802877, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802885, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802890, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802896, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802901, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802906, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802912, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802922, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802927, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802933, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802938, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802946, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802952, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802960, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802965, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802971, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802976, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802987, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2802992, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2802997, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803003, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803011, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803016, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803022, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803027, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803035, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803042, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803052, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803058, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803063, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803068, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803077, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803082, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803088, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803093, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803099, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803104, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803114, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803120, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803125, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803130, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803138, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803144, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803149, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803154, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803163, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803170, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803181, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803186, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803191, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803197, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803205, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803210, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803216, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803221, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803227, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803232, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803242, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803247, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803253, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803258, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803266, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803272, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803277, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803282, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803289, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803297, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803307, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803312, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803318, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803323, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803331, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803336, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803342, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803347, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803352, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803358, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803368, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803373, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803379, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803384, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803392, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803397, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803403, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803408, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803415, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803423, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803433, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803438, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803443, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803448, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803457, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803462, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803468, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803473, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803478, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803484, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803494, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803499, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803504, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803510, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803518, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803523, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803528, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803534, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803542, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803550, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803560, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803565, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803571, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803576, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803584, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803589, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803595, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803600, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803605, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803611, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803621, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803626, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803631, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803637, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803645, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803650, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803656, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803661, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803668, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803675, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803686, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803691, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803696, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803702, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803710, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803715, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803721, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803726, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803731, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803737, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803747, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803752, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803757, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803762, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803771, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803776, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803781, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803787, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803792, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803798, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803807, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803813, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803818, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803823, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803832, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803837, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803842, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83fc1e798", "tid": 15264, "ts": 2803853, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803865, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803873, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803881, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803892, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83b593f80", "tid": 15264, "ts": 2803898, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803903, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803908, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803914, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803922, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803928, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803933, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803938, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803944, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803949, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803962, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2803968, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803973, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803978, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803987, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803992, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2803998, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804003, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804008, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804014, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804024, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804030, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804035, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804040, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804049, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804054, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804059, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804065, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804070, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804076, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804086, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804091, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804096, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804102, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804110, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804115, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804121, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804126, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804132, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804137, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804147, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804153, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804158, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804163, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804171, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804176, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804181, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804187, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804192, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804198, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804208, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804213, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804219, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804224, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804232, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804238, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804243, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804248, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804256, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804264, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804281, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804287, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804292, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804297, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804305, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804310, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804315, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804320, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804326, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804331, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804340, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804345, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804350, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804355, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804363, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804368, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804373, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804378, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804386, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804394, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804403, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804409, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804413, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804418, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804426, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804431, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804436, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804441, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804446, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804451, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804461, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804466, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804470, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804475, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804483, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804488, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804493, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804498, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804505, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804512, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804522, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804527, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804531, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804536, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804544, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804549, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804554, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804559, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804564, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804569, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804578, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804584, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804588, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804593, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804601, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804606, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804611, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804616, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804623, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804630, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804640, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804645, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804650, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804654, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804662, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804668, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804672, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804677, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804683, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804688, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804697, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804702, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804707, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804712, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804720, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804725, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804730, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804735, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804743, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804750, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804759, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804765, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804769, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804774, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804782, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804787, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804792, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804797, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804802, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804807, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804816, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804822, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804826, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804831, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804839, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804844, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804849, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804854, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804861, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804868, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804877, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804883, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804887, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804892, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804900, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804905, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804910, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804915, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804920, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804925, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804934, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804939, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804944, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804949, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804960, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804966, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2804971, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804976, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804982, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804987, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2804998, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805003, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805008, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805013, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805022, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805027, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805032, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83fc1d7d8", "tid": 15264, "ts": 2805043, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805056, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805068, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805076, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805092, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83b5565f0", "tid": 15264, "ts": 2805098, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805103, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805109, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805113, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805122, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805127, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805132, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805137, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805143, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805148, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805157, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805162, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805167, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805172, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805180, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805185, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805190, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805195, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805200, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805205, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805215, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805220, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805225, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805229, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805237, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805242, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805247, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805252, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805257, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805263, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805272, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805277, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805282, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805287, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805295, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805300, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805305, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805309, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805315, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805320, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805329, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805334, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805339, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805344, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805352, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805357, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805362, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805367, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805372, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805377, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805386, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805391, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805396, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805401, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805409, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805414, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805419, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805424, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805431, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805438, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805447, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805453, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805457, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805462, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805470, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805475, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805480, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805485, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805490, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805495, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805505, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805510, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805515, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805519, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805527, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805532, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805537, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805542, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805551, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805558, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805567, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805572, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805577, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805582, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805590, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805595, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805600, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805605, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805610, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805615, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805624, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805629, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805634, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805639, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805647, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805652, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805657, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805662, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805669, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805675, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805685, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805690, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805695, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805700, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805708, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805713, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805718, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805723, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805728, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805733, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805742, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805747, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805752, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805757, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805765, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805770, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805775, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805780, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805787, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805793, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805803, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805808, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805813, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805818, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805826, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805831, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805836, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805840, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805846, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805851, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805860, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805865, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805870, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805875, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805883, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805888, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805893, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805897, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805906, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805913, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805922, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805927, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805932, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805937, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805945, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805950, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805958, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805963, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805969, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805974, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805984, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2805990, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2805995, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806000, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806009, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806014, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806019, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806025, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806032, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806040, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806050, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806055, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806060, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806066, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806074, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806079, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806085, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806090, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806095, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806101, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806111, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806117, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806122, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806127, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806135, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806141, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806146, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806151, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806157, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806162, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806172, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806177, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806183, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806188, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806196, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806201, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806207, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83fc80eb8", "tid": 15264, "ts": 2806218, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806230, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806238, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806246, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806257, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83b555870", "tid": 15264, "ts": 2806263, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806269, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806274, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806279, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806287, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806293, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806298, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806304, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806309, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806315, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806325, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806330, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806335, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806340, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806349, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806354, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806360, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806365, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806370, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806376, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806386, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806392, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806397, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806402, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806410, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806416, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806421, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806426, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806432, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806437, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806447, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806453, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806458, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806464, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806472, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806477, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806483, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806488, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806493, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806499, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806509, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806514, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806519, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806524, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806533, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806538, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806543, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806549, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806554, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806560, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806569, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806575, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806580, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806585, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806594, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806599, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806604, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806609, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806617, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806625, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806635, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806641, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806646, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806651, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806660, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806665, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806670, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806675, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806681, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806686, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806696, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806702, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806707, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806712, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806721, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806726, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806731, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806736, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806745, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806753, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806769, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806774, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806779, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806784, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806793, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806798, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806803, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806808, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806813, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806818, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806827, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806832, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806837, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806842, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806850, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806855, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806860, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806865, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806872, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806879, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806889, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806894, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806899, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806904, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806912, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806917, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806922, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806927, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806932, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806937, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806946, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806954, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806960, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806965, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806974, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806979, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2806984, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806990, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2806998, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807005, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807016, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807021, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807026, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807031, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807040, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807045, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807050, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807056, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807061, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807067, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807077, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807082, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807087, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807092, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807101, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807106, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807111, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807117, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807125, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807133, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807143, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807149, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807154, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807159, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807167, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807173, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807178, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807183, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807189, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807195, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807205, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807210, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807215, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807220, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807229, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807234, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807239, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807245, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807252, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807259, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807269, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807275, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807280, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807285, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807294, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807299, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807304, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807310, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807315, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807321, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807331, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807336, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807341, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807346, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807355, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807360, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807365, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807370, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807376, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807382, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807392, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807397, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807402, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807407, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807415, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807421, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807426, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83fc81698", "tid": 15264, "ts": 2807437, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807449, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807458, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807466, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807477, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83fe43fa0", "tid": 15264, "ts": 2807490, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807497, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807501, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807507, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807515, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807520, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807525, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807530, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807536, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807541, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807550, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807555, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807560, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807565, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807573, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807578, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807583, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807588, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807593, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807598, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807608, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807613, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807618, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807623, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807631, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807636, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807641, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807646, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807651, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807656, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807665, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807670, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807675, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807680, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807688, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807693, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807698, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807703, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807708, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807713, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807723, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807728, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807733, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807738, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807746, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807751, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807756, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807760, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807766, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807771, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807780, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807785, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807790, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807795, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807803, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807808, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807813, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807818, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807825, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807832, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807842, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807847, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807852, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807857, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807865, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807870, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807875, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807879, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807885, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807890, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807899, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807904, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807909, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807914, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807922, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807927, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807932, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807937, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807945, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807955, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807966, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2807971, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807976, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807982, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807990, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2807996, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808001, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808006, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808012, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808017, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808027, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808033, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808038, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808043, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808051, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808057, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808062, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808067, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808075, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808082, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808092, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808098, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808103, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808108, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808117, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808122, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808127, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808132, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808138, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808143, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808153, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808159, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808164, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808169, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808177, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808183, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808188, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808193, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808201, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808208, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808218, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808224, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808229, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808234, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808243, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808248, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808253, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808259, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808264, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808269, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808279, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808285, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808290, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808295, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808304, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808309, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808314, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808320, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808328, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808336, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808346, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808351, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808357, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808362, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808370, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808375, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808381, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808386, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808391, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808397, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808407, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808412, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808417, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808423, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808431, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808436, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808442, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808447, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808454, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808461, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808472, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808477, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808482, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808488, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808496, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808501, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808507, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808512, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808517, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808523, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808533, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808538, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808543, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808549, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808557, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808562, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808568, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808573, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808579, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808584, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808594, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808599, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808605, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808610, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808618, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808624, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808629, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83fc81338", "tid": 15264, "ts": 2808640, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808653, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808661, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808669, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808684, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83fe43cd0", "tid": 15264, "ts": 2808690, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808695, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808700, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808705, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808713, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808718, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808723, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808728, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808734, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808739, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808748, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808754, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808758, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808763, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808772, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808777, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808782, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808787, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808792, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808797, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808806, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808811, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808816, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808821, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808829, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808834, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808839, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808844, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808849, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808854, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808864, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808869, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808874, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808878, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808886, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808891, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808896, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808901, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808907, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808912, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808921, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808926, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808931, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808935, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808943, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808949, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808957, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808962, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808967, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808973, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808983, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2808989, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808994, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2808999, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809008, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809013, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809018, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809024, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809032, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809039, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809049, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809055, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809060, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809065, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809074, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809079, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809084, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809090, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809095, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809101, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809111, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809116, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809121, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809126, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809135, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809140, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809145, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809151, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809160, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809167, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809178, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809183, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809189, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809194, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809202, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809208, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809213, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809218, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809224, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809229, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809239, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809244, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809250, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809255, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809263, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809268, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809274, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809279, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809286, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809294, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809311, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809317, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809322, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809327, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809335, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809340, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809345, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809350, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809355, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809360, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809370, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809375, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809380, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809385, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809393, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809398, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809402, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809407, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809415, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809422, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809431, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809436, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809441, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809446, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809454, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809459, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809464, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809468, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809474, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809479, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809488, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809493, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809498, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809503, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809510, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809515, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809520, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809525, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809534, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809541, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809550, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809555, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809560, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809565, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809573, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809578, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809583, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809588, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809593, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809598, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809607, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809612, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809617, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809622, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809630, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809635, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809640, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809645, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809652, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809658, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809668, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809673, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809678, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809683, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809691, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809696, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809700, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809705, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809711, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809716, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809725, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809730, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809735, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809740, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809747, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809752, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809757, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809762, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809767, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809773, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809782, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809787, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809792, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809797, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809805, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809810, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809815, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83ffad3a8", "tid": 15264, "ts": 2809825, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809836, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809844, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809851, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809868, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83fe42ad0", "tid": 15264, "ts": 2809873, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809879, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809884, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809889, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809897, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809902, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809907, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809912, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809917, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809923, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809932, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809937, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809942, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809947, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809958, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809964, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2809969, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809974, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809980, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809985, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2809995, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810001, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810006, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810012, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810020, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810025, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810031, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810036, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810042, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810047, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810057, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810062, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810068, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810073, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810081, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810086, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810092, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810097, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810102, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810108, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810118, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810123, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810128, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810133, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810142, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810147, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810153, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810158, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810163, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810168, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810178, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810184, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810189, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810194, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810203, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810208, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810213, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810218, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810226, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810234, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810244, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810250, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810255, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810260, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810268, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810274, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810279, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810284, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810290, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810295, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810305, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810310, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810315, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810321, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810329, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810334, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810340, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810345, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810354, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810361, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810371, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810377, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810382, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810387, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810396, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810401, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810406, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810411, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810417, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810422, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810433, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810438, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810443, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810448, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810457, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810462, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810467, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810473, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810480, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810487, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810498, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810503, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810508, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810513, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810522, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810527, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810532, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810538, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810543, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810548, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810559, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810564, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810569, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810574, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810583, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810588, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810593, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810598, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810606, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810613, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810624, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810629, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810634, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810639, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810648, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810653, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810658, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810663, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810669, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810674, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810684, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810690, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810695, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810700, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810708, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810714, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810719, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810724, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810733, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810740, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810751, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810756, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810761, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810766, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810775, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810780, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810786, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810791, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810796, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810801, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810811, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810817, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810822, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810827, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810835, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810841, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810846, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810851, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810859, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810866, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810876, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810881, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810886, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810892, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810900, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810905, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810911, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810916, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810921, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810927, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810937, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810942, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810948, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810955, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810964, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810969, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2810975, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810980, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810986, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2810991, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2811001, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2811007, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2811012, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2811017, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2811025, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2811031, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2811036, "pid": 4912 }, { "name": "GPUMemoryAllocator", "cat": "default", "ph": "O", "id": "0x1e840170cd0", "tid": 15264, "ts": 2811084, "pid": 4912, "args": { "snapshot": { "Flags": 4, "RecordOptions": { "Flags": 255, "MinMessageLevel": 0 }, "IsUMA": 1, "ResourceHeapTier": 2, "PreferredResourceHeapSize": 4194304, "MaxResourceHeapSize": 34359738368, "MaxResourceSizeForPooling": 34359738368, "MaxVideoMemoryBudget": 0.000000, "TotalResourceBudgetLimit": 0, "VideoMemoryEvictSize": 0, "ResourceFragmentationLimit": 0.125000 } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 2811149, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 134217728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2811159, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2811166, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83fe42b60", "tid": 15264, "ts": 2811173, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2811178, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e83fe43a90", "tid": 15264, "ts": 2811605, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e83fe43a90", "tid": 15264, "ts": 2811656, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 134217728, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 134217728, "Properties": { "SizeInBytes": 2, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2811671, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2811678, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2811683, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2811743, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e83fc92750", "tid": 15264, "ts": 2811753, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2811760, "pid": 4912, "args": { "value": 593 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2811777, "pid": 4912, "args": { "value": 100 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2811783, "pid": 4912, "args": { "value": 134 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2811788, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2811794, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e83fc92750", "tid": 15264, "ts": 2811841, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 134217728, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 0, "ResourceHeap": { "id_ref": "0x1e83fe43a90" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 134217728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2811851, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 2811969, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 134217728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2811980, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2811987, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83fe42e30", "tid": 15264, "ts": 2811993, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2811999, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e83fe438e0", "tid": 15264, "ts": 2812342, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e83fe438e0", "tid": 15264, "ts": 2812392, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 134217728, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 134217728, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2812405, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2812412, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2812417, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2812474, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e83fc93290", "tid": 15264, "ts": 2812483, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2812490, "pid": 4912, "args": { "value": 502 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2812507, "pid": 4912, "args": { "value": 100 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2812513, "pid": 4912, "args": { "value": 268 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2812518, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2812524, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e83fc93290", "tid": 15264, "ts": 2812568, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 134217728, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 0, "ResourceHeap": { "id_ref": "0x1e83fe438e0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 134217728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2812578, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 2812683, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2812693, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2812700, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2812706, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2812711, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2812722, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2812727, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e83fe43070", "tid": 15264, "ts": 2813073, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e83fe43070", "tid": 15264, "ts": 2813122, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2813135, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2813141, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2813148, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2813154, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2813160, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2813165, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2813236, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e83fc92f70", "tid": 15264, "ts": 2813246, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2813253, "pid": 4912, "args": { "value": 552 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2813269, "pid": 4912, "args": { "value": 99 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2813275, "pid": 4912, "args": { "value": 272 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2813281, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2813287, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e83fc92f70", "tid": 15264, "ts": 2813329, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83fe43070" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2813339, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 2813463, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 134217728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2813473, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2813479, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2813485, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e83fe43190", "tid": 15264, "ts": 2813834, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e83fe43190", "tid": 15264, "ts": 2813884, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 134217728, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 134217728, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2813897, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2813903, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2813909, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2813969, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e83fc933d0", "tid": 15264, "ts": 2813978, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2813985, "pid": 4912, "args": { "value": 505 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2814001, "pid": 4912, "args": { "value": 99 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2814008, "pid": 4912, "args": { "value": 406 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2814013, "pid": 4912, "args": { "value": 0 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2814019, "pid": 4912, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e83fc933d0", "tid": 15264, "ts": 2814062, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 134217728, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 0, "ResourceHeap": { "id_ref": "0x1e83fe43190" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 134217728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2814072, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2814151, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2814162, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e83fc92750", "tid": 15264, "ts": 2814167, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 2814271, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2814283, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2814289, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2814296, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2814301, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2814311, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2814316, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e83fe434f0", "tid": 15264, "ts": 2814646, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e83fe434f0", "tid": 15264, "ts": 2814694, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 2, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2814708, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2814714, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2814720, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2814726, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2814732, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2814737, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2814794, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e83fc922f0", "tid": 15264, "ts": 2814802, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2814810, "pid": 4912, "args": { "value": 519 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2814826, "pid": 4912, "args": { "value": 99 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2814832, "pid": 4912, "args": { "value": 275 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2814838, "pid": 4912, "args": { "value": 32 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2814844, "pid": 4912, "args": { "value": 134 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e83fc922f0", "tid": 15264, "ts": 2814884, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 1048576, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83fe434f0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2814894, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2815035, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2815052, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e83fc93290", "tid": 15264, "ts": 2815059, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 2815155, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2815166, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2815173, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2815179, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2815185, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2815192, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2815197, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e83fe42920", "tid": 15264, "ts": 2815527, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e83fe42920", "tid": 15264, "ts": 2815575, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2815588, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2815595, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2815601, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2815607, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2815613, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2815618, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2815677, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e83fc936f0", "tid": 15264, "ts": 2815685, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2815693, "pid": 4912, "args": { "value": 519 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2815709, "pid": 4912, "args": { "value": 98 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2815715, "pid": 4912, "args": { "value": 144 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2815720, "pid": 4912, "args": { "value": 64 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2815726, "pid": 4912, "args": { "value": 268 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e83fc936f0", "tid": 15264, "ts": 2815767, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 1048576, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83fe42920" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2815777, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 2815899, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 3 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 1024, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2815909, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2815915, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2815921, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2815927, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2815942, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2815948, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e83fe436a0", "tid": 15264, "ts": 2816292, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e83fe436a0", "tid": 15264, "ts": 2816330, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 3, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2816343, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2816349, "pid": 4912 }, { "name": "BuddyMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2816356, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2816362, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2816368, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2816373, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2816434, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e83fc91d50", "tid": 15264, "ts": 2816443, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2816450, "pid": 4912, "args": { "value": 533 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2816466, "pid": 4912, "args": { "value": 98 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2816472, "pid": 4912, "args": { "value": 148 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2816478, "pid": 4912, "args": { "value": 64 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2816484, "pid": 4912, "args": { "value": 268 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e83fc91d50", "tid": 15264, "ts": 2816525, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83fe436a0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2816534, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 2816654, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2816664, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2816670, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2816676, "pid": 4912 }, { "name": "SlabMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2816683, "pid": 4912 }, { "name": "SlabCacheAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2816689, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2816694, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2816766, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e83fc930b0", "tid": 15264, "ts": 2816775, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2816783, "pid": 4912, "args": { "value": 112 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2816799, "pid": 4912, "args": { "value": 98 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2816805, "pid": 4912, "args": { "value": 148 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2816811, "pid": 4912, "args": { "value": 64 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2816817, "pid": 4912, "args": { "value": 268 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e83fc930b0", "tid": 15264, "ts": 2816859, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 65536, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1e83fe43070" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2816868, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2816942, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2816949, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2816955, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e83fc92f70", "tid": 15264, "ts": 2816960, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2817012, "pid": 4912 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 15264, "ts": 2817064, "pid": 4912, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2817074, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2817081, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1e83ff4bd40", "tid": 15264, "ts": 2817086, "pid": 4912 }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2817092, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1e83ff4c250", "tid": 15264, "ts": 2817981, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1e83ff4c250", "tid": 15264, "ts": 2818029, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 16777216, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 16777216, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "ResourceHeapAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2818042, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.TryAllocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2818049, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "B", "tid": 15264, "ts": 2818054, "pid": 4912 }, { "name": "ResourceAllocator.CreatePlacedResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2818110, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1e83fc938d0", "tid": 15264, "ts": 2818119, "pid": 4912 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2818126, "pid": 4912, "args": { "value": 1045 } }, { "name": "GPU memory unused (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2818142, "pid": 4912, "args": { "value": 98 } }, { "name": "GPU memory unused (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2818148, "pid": 4912, "args": { "value": 165 } }, { "name": "GPU memory reserved (%)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2818154, "pid": 4912, "args": { "value": 61 } }, { "name": "GPU memory reserved (MBytes)", "cat": "default", "ph": "C", "tid": 15264, "ts": 2818160, "pid": 4912, "args": { "value": 268 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1e83fc938d0", "tid": 15264, "ts": 2818200, "pid": 4912, "args": { "snapshot": { "SizeInBytes": 16777216, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 0, "ResourceHeap": { "id_ref": "0x1e83ff4c250" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "E", "tid": 15264, "ts": 2818210, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2818291, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2818299, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e83fc933d0", "tid": 15264, "ts": 2818305, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2818373, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2818384, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e83fc938d0", "tid": 15264, "ts": 2818390, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2818472, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2818481, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2818487, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2818493, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2818501, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2818506, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2818512, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e83fc930b0", "tid": 15264, "ts": 2818516, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2818567, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2818610, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2818617, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2818623, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2818631, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2818637, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2818643, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2818648, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e83fc936f0", "tid": 15264, "ts": 2818653, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2818702, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2818745, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2818752, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2818757, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2818766, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2818774, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2818779, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2818784, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e83fc91d50", "tid": 15264, "ts": 2818789, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2818838, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2818881, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2818888, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2818893, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2818902, "pid": 4912 }, { "name": "SegmentedMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2818910, "pid": 4912 }, { "name": "BuddyMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2818915, "pid": 4912 }, { "name": "SlabMemoryAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2818920, "pid": 4912 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1e83fc922f0", "tid": 15264, "ts": 2818925, "pid": 4912 }, { "name": "SlabCacheAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2818975, "pid": 4912 }, { "name": "GPUMemoryAllocator", "cat": "default", "ph": "D", "id": "0x1e840170cd0", "tid": 15264, "ts": 2818994, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83b5a91b8", "tid": 15264, "ts": 2819034, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2819042, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e83fe436a0", "tid": 15264, "ts": 2819048, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2819193, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83b594520", "tid": 15264, "ts": 2819204, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83fc1f2d8", "tid": 15264, "ts": 2819230, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2819237, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e83fe434f0", "tid": 15264, "ts": 2819242, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2819380, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83b593050", "tid": 15264, "ts": 2819391, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83fc1e798", "tid": 15264, "ts": 2819417, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2819424, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e83fe42920", "tid": 15264, "ts": 2819429, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2819567, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2819577, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e83fe43070", "tid": 15264, "ts": 2819583, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2819720, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83b593f80", "tid": 15264, "ts": 2819731, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83fc1d7d8", "tid": 15264, "ts": 2819756, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83b5565f0", "tid": 15264, "ts": 2819764, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83fc80eb8", "tid": 15264, "ts": 2819790, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83b555870", "tid": 15264, "ts": 2819797, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83fc81698", "tid": 15264, "ts": 2819820, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83fe43fa0", "tid": 15264, "ts": 2819826, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83fc81338", "tid": 15264, "ts": 2819849, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83fe43cd0", "tid": 15264, "ts": 2819856, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83ffad3a8", "tid": 15264, "ts": 2819879, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83fe42ad0", "tid": 15264, "ts": 2819886, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2819895, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e83fe43a90", "tid": 15264, "ts": 2819900, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2820040, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83fe42b60", "tid": 15264, "ts": 2820051, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2820059, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e83ff4c250", "tid": 15264, "ts": 2820064, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2820202, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83ff4bd40", "tid": 15264, "ts": 2820213, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2820219, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e83fe43190", "tid": 15264, "ts": 2820224, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2824655, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "B", "tid": 15264, "ts": 2824667, "pid": 4912 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1e83fe438e0", "tid": 15264, "ts": 2824673, "pid": 4912 }, { "name": "ResourceHeapAllocator.DeallocateMemory", "cat": "default", "ph": "E", "tid": 15264, "ts": 2826491, "pid": 4912 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1e83fe42e30", "tid": 15264, "ts": 2826503, "pid": 4912 }, { "name": "thread_name", "cat": "__metadata", "ph": "M", "tid": 15264, "ts": 2885394, "pid": 4912, "args": { "name": "GPGMM_MainThread" } } ] } \ No newline at end of file +{ "traceEvents": [ { "name": "thread_name", "cat": "__metadata", "ph": "M", "tid": 7996, "ts": 1662981, "pid": 31040, "args": { "name": "GPGMM_MainThread" } }, { "name": "GPUMemoryAllocator", "cat": "default", "ph": "N", "id": "0x1d170467d90", "tid": 7996, "ts": 1663003, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d1749e0c78", "tid": 7996, "ts": 1663019, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d170409a10", "tid": 7996, "ts": 1663076, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d174acd268", "tid": 7996, "ts": 1664363, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d17040a1f0", "tid": 7996, "ts": 1664406, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d174ace108", "tid": 7996, "ts": 1665624, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d17040b1b0", "tid": 7996, "ts": 1665667, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d174acc608", "tid": 7996, "ts": 1666883, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d1704032d0", "tid": 7996, "ts": 1666926, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d174acd028", "tid": 7996, "ts": 1668157, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d1704037e0", "tid": 7996, "ts": 1668201, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d174ad2dd8", "tid": 7996, "ts": 1669433, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d1704036c0", "tid": 7996, "ts": 1669475, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d174ad2958", "tid": 7996, "ts": 1670749, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d1750d9190", "tid": 7996, "ts": 1670795, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d174ad1ab8", "tid": 7996, "ts": 1672205, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d1750d8260", "tid": 7996, "ts": 1672250, "pid": 31040 }, { "name": "GPUMemoryAllocator", "cat": "default", "ph": "O", "id": "0x1d170467d90", "tid": 7996, "ts": 1673578, "pid": 31040, "args": { "snapshot": { "Flags": 4, "RecordOptions": { "Flags": 3, "MinMessageLevel": 0 }, "IsUMA": 1, "ResourceHeapTier": 2, "PreferredResourceHeapSize": 4194304, "MaxResourceHeapSize": 34359738368, "MaxVideoMemoryBudget": 0.000000, "TotalResourceBudgetLimit": 0, "EvictLimit": 0, "MemoryFragmentationLimit": 0.125000 } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1673640, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 134217728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d1750d8fe0", "tid": 7996, "ts": 1673666, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d1750d8c80", "tid": 7996, "ts": 1674100, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d1750d8c80", "tid": 7996, "ts": 1674140, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 134217728, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 134217728, "Properties": { "SizeInBytes": 2, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d1750c9170", "tid": 7996, "ts": 1674255, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1674262, "pid": 31040, "args": { "value": 606 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1674291, "pid": 31040, "args": { "value": 0 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1674297, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1674302, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d1750c9170", "tid": 7996, "ts": 1674350, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 134217728, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 0, "ResourceHeap": { "id_ref": "0x1d1750d8c80" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 134217728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1674487, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 134217728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d1750d9340", "tid": 7996, "ts": 1674515, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d1750d93d0", "tid": 7996, "ts": 1674890, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d1750d93d0", "tid": 7996, "ts": 1674930, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 134217728, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 134217728, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d1750c9a30", "tid": 7996, "ts": 1675051, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1675058, "pid": 31040, "args": { "value": 553 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1675079, "pid": 31040, "args": { "value": 0 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1675085, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1675091, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d1750c9a30", "tid": 7996, "ts": 1675146, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 134217728, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 0, "ResourceHeap": { "id_ref": "0x1d1750d93d0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 134217728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1675248, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d1750d9a90", "tid": 7996, "ts": 1675767, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d1750d9a90", "tid": 7996, "ts": 1675816, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1675865, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1675882, "pid": 31040, "args": { "value": 35 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d1750c9710", "tid": 7996, "ts": 1676008, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1676015, "pid": 31040, "args": { "value": 750 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1676035, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1676041, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1676046, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d1750c9710", "tid": 7996, "ts": 1676101, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d1750d9a90" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1676249, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 134217728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d1750d8410", "tid": 7996, "ts": 1676656, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d1750d8410", "tid": 7996, "ts": 1676708, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 134217728, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 134217728, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d1750cab10", "tid": 7996, "ts": 1676825, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1676832, "pid": 31040, "args": { "value": 566 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1676850, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1676855, "pid": 31040, "args": { "value": 100 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1676860, "pid": 31040, "args": { "value": 0 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d1750cab10", "tid": 7996, "ts": 1676903, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 134217728, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 0, "ResourceHeap": { "id_ref": "0x1d1750d8410" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 134217728, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d1750c9170", "tid": 7996, "ts": 1676987, "pid": 31040 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1677099, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 2 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 2755, "clearValue": { } } }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d1750d9970", "tid": 7996, "ts": 1677517, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d1750d9970", "tid": 7996, "ts": 1677581, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 2, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1677644, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1677650, "pid": 31040, "args": { "value": 35 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d1750ca9d0", "tid": 7996, "ts": 1677725, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1677732, "pid": 31040, "args": { "value": 617 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1677749, "pid": 31040, "args": { "value": 7 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1677754, "pid": 31040, "args": { "value": 67 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1677760, "pid": 31040, "args": { "value": 134 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d1750ca9d0", "tid": 7996, "ts": 1677799, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 1048576, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d1750d9970" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d1750c9a30", "tid": 7996, "ts": 1677882, "pid": 31040 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1677983, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d1750d8920", "tid": 7996, "ts": 1678367, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d1750d8920", "tid": 7996, "ts": 1678403, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1678468, "pid": 31040, "args": { "value": 8 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1678474, "pid": 31040, "args": { "value": 33 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d1750c93f0", "tid": 7996, "ts": 1678549, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1678556, "pid": 31040, "args": { "value": 558 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1678572, "pid": 31040, "args": { "value": 10 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1678578, "pid": 31040, "args": { "value": 35 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1678583, "pid": 31040, "args": { "value": 268 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d1750c93f0", "tid": 7996, "ts": 1678623, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 1048576, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d1750d8920" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 1048576, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1678715, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 3 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 }, "initialResourceState": 1024, "clearValue": { } } }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d1750d96a0", "tid": 7996, "ts": 1679178, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d1750d96a0", "tid": 7996, "ts": 1679216, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 4194304, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 4194304, "Properties": { "SizeInBytes": 3, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1679253, "pid": 31040, "args": { "value": 4 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1679259, "pid": 31040, "args": { "value": 35 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d1750c9c10", "tid": 7996, "ts": 1679336, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1679343, "pid": 31040, "args": { "value": 611 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1679360, "pid": 31040, "args": { "value": 14 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1679366, "pid": 31040, "args": { "value": 36 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1679371, "pid": 31040, "args": { "value": 268 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d1750c9c10", "tid": 7996, "ts": 1679433, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d1750d96a0" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 0 } } } }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1679562, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "GPU slabs allocated (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1679607, "pid": 31040, "args": { "value": 8 } }, { "name": "GPU slab cache miss-rate (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1679612, "pid": 31040, "args": { "value": 31 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d1750c9d50", "tid": 7996, "ts": 1679695, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1679702, "pid": 31040, "args": { "value": 112 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1679718, "pid": 31040, "args": { "value": 14 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1679724, "pid": 31040, "args": { "value": 36 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1679729, "pid": 31040, "args": { "value": 268 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d1750c9d50", "tid": 7996, "ts": 1679770, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 65536, "HeapOffset": 65536, "OffsetFromResource": 0, "Method": 2, "ResourceHeap": { "id_ref": "0x1d1750d9a90" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 65536, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d1750c9710", "tid": 7996, "ts": 1679840, "pid": 31040 }, { "name": "ResourceAllocator.CreateResource", "cat": "default", "ph": "i", "tid": 7996, "ts": 1679940, "pid": 31040, "args": { "allocationDescriptor": { "Flags": 0, "HeapType": 1 }, "resourceDescriptor": { "Dimension": 1, "Alignment": 0, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 }, "initialResourceState": 8, "clearValue": { } } }, { "name": "GPUMemoryPool", "cat": "default", "ph": "N", "id": "0x1d1750f4c40", "tid": 7996, "ts": 1679966, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "N", "id": "0x1d1750f4070", "tid": 7996, "ts": 1680862, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "O", "id": "0x1d1750f4070", "tid": 7996, "ts": 1680898, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 16777216, "IsResident": 0, "MemorySegmentGroup": 0, "SubAllocatedRefs": 0, "Heap": { "SizeInBytes": 16777216, "Properties": { "SizeInBytes": 1, "CPUPageProperty": 0, "MemoryPoolPreference": 0, "CreationNodeMask": 1, "VisibleNodeMask": 1 }, "Alignment": 4194304, "Flags": 0 } } } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "N", "id": "0x1d1750c8e50", "tid": 7996, "ts": 1680997, "pid": 31040 }, { "name": "GPU allocation latency (us)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1681004, "pid": 31040, "args": { "value": 1048 } }, { "name": "GPU memory fragmentation (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1681021, "pid": 31040, "args": { "value": 14 } }, { "name": "GPU memory utilization (%)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1681026, "pid": 31040, "args": { "value": 38 } }, { "name": "GPU memory free (MB)", "cat": "default", "ph": "C", "tid": 7996, "ts": 1681032, "pid": 31040, "args": { "value": 268 } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "O", "id": "0x1d1750c8e50", "tid": 7996, "ts": 1681071, "pid": 31040, "args": { "snapshot": { "SizeInBytes": 16777216, "HeapOffset": 0, "OffsetFromResource": 0, "Method": 0, "ResourceHeap": { "id_ref": "0x1d1750f4070" }, "Resource": { "Dimension": 1, "Alignment": 65536, "Width": 16777216, "Height": 1, "DepthOrArraySize": 1, "MipLevels": 1, "Format": 0, "Layout": 1, "SampleDesc": { "Count": 1, "Quality": 0 }, "Flags": 4 } } } }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d1750cab10", "tid": 7996, "ts": 1681145, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d1750c8e50", "tid": 7996, "ts": 1681236, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d1750c9d50", "tid": 7996, "ts": 1681344, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d1750c93f0", "tid": 7996, "ts": 1681476, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d1750c9c10", "tid": 7996, "ts": 1681585, "pid": 31040 }, { "name": "GPUMemoryAllocation", "cat": "default", "ph": "D", "id": "0x1d1750ca9d0", "tid": 7996, "ts": 1681694, "pid": 31040 }, { "name": "GPUMemoryAllocator", "cat": "default", "ph": "D", "id": "0x1d170467d90", "tid": 7996, "ts": 1681760, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d1749e0c78", "tid": 7996, "ts": 1681808, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d1750d96a0", "tid": 7996, "ts": 1681821, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d170409a10", "tid": 7996, "ts": 1681977, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d174acd268", "tid": 7996, "ts": 1682005, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d1750d9970", "tid": 7996, "ts": 1682017, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d17040a1f0", "tid": 7996, "ts": 1682137, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d174ace108", "tid": 7996, "ts": 1682165, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d1750d8920", "tid": 7996, "ts": 1682177, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d1750d9a90", "tid": 7996, "ts": 1682301, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d17040b1b0", "tid": 7996, "ts": 1682457, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d174acc608", "tid": 7996, "ts": 1682484, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d1704032d0", "tid": 7996, "ts": 1682491, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d174acd028", "tid": 7996, "ts": 1682516, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d1704037e0", "tid": 7996, "ts": 1682522, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d174ad2dd8", "tid": 7996, "ts": 1682547, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d1704036c0", "tid": 7996, "ts": 1682553, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d174ad2958", "tid": 7996, "ts": 1682578, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d1750d9190", "tid": 7996, "ts": 1682585, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d174ad1ab8", "tid": 7996, "ts": 1682610, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d1750d8260", "tid": 7996, "ts": 1682617, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d1750d8c80", "tid": 7996, "ts": 1682632, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d1750d8fe0", "tid": 7996, "ts": 1682769, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d1750f4070", "tid": 7996, "ts": 1682783, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d1750f4c40", "tid": 7996, "ts": 1682904, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d1750d8410", "tid": 7996, "ts": 1682915, "pid": 31040 }, { "name": "GPUMemoryBlock", "cat": "default", "ph": "D", "id": "0x1d1750d93d0", "tid": 7996, "ts": 1686386, "pid": 31040 }, { "name": "GPUMemoryPool", "cat": "default", "ph": "D", "id": "0x1d1750d9340", "tid": 7996, "ts": 1688743, "pid": 31040 } ] } \ No newline at end of file