-
Notifications
You must be signed in to change notification settings - Fork 18
Description
I am trying to capture a memory trace of the Mesh Node Workgraph sample using RMV that comes with the latest Developer Tool suite (RMV version 1.13.0.5).
I click 'Dump Trace' and the rmv file is created without issue, However, when trying to open it, I am greeted with the error message 'The trace file, MeshNodeSample_DX12.rmv, failed to load.'
After downloading the source, building, and running, I get the same error but I can see that two asserts fail:
RMT_ASSERT(out_resource_update->resource_type == kRmtResourceTypeBuffer);
out_resource_update->resource_type
here is actually of type kRmtResourceTypeImage
and
RMT_ASSERT(out_timeline->series_memory_buffer)
out_timeline->series_memory_buffer
is NULL because the code before attempted to allocate a ludicrously large chunk of memory, its either a garbage value or its calculation involved a loop that went on for too long
Have I done something incorrectly? Thanks in advance
OS: Windows 11 Pro
OS Description: 26100.1.amd64fre.ge_release.240331-1435
GPU: AMD Radeon RX 7600
Driver Packaging Version: 25.10.25.01-250724a-417878C-AMD-Software-Adrenalin-Edition
Driver Software Version: 25.8.1
RMV commit hash: 29bb28f
Mesh Node Workgraph sample commit hash: f3486b1dd8eee1f0dd7f4410ac9d22f9a6c31ea7
EDIT: Typo + clarification