/* * Copyright (c) Contributors to the Open 3D Engine Project. * For complete copyright and license terms please see the LICENSE at the root of this distribution. * * SPDX-License-Identifier: Apache-2.0 OR MIT * */ #include "ProfilingCaptureSystemComponent.h" #include #include #include #include #include #include #include #include #include #include #include #include #include namespace AZ { namespace Render { class ProfilingCaptureNotificationBusHandler final : public ProfilingCaptureNotificationBus::Handler , public AZ::BehaviorEBusHandler { public: AZ_EBUS_BEHAVIOR_BINDER(ProfilingCaptureNotificationBusHandler, "{E45E4F37-EC1F-4010-994B-4F80998BEF15}", AZ::SystemAllocator, OnCaptureQueryTimestampFinished, OnCaptureCpuFrameTimeFinished, OnCaptureQueryPipelineStatisticsFinished, OnCaptureBenchmarkMetadataFinished ); void OnCaptureQueryTimestampFinished(bool result, const AZStd::string& info) override { Call(FN_OnCaptureQueryTimestampFinished, result, info); } void OnCaptureCpuFrameTimeFinished(bool result, const AZStd::string& info) override { Call(FN_OnCaptureCpuFrameTimeFinished, result, info); } void OnCaptureQueryPipelineStatisticsFinished(bool result, const AZStd::string& info) override { Call(FN_OnCaptureQueryPipelineStatisticsFinished, result, info); } void OnCaptureBenchmarkMetadataFinished(bool result, const AZStd::string& info) override { Call(FN_OnCaptureBenchmarkMetadataFinished, result, info); } static void Reflect(AZ::ReflectContext* context) { if (AZ::BehaviorContext* behaviorContext = azrtti_cast(context)) { behaviorContext->EBus("ProfilingCaptureNotificationBus") ->Attribute(AZ::Script::Attributes::Scope, AZ::Script::Attributes::ScopeFlags::Automation) ->Attribute(AZ::Script::Attributes::Module, "atom") ->Handler() ; } } }; // Intermediate class to serialize pass' Timestamp data. class TimestampSerializer { public: class TimestampSerializerEntry { public: AZ_TYPE_INFO(TimestampSerializer::TimestampSerializerEntry, "{34C90068-954C-4A07-A265-DB21462A7F9B}"); static void Reflect(AZ::ReflectContext* context); Name m_passName; uint64_t m_timestampResultInNanoseconds; }; AZ_TYPE_INFO(TimestampSerializer, "{FAAD85C2-5948-4D81-B54A-53502D69CBC0}"); static void Reflect(AZ::ReflectContext* context); TimestampSerializer() = default; TimestampSerializer(AZStd::vector&& pass); AZStd::vector m_timestampEntries; }; // Intermediate class to serialize CPU frame time statistics. class CpuFrameTimeSerializer { public: AZ_TYPE_INFO(Render::CpuFrameTimeSerializer, "{584B415E-8769-4757-AC64-EA57EDBCBC3E}"); static void Reflect(AZ::ReflectContext* context); CpuFrameTimeSerializer() = default; CpuFrameTimeSerializer(double frameTime); double m_frameTime; }; // Intermediate class to serialize pass' PipelineStatistics data. class PipelineStatisticsSerializer { public: class PipelineStatisticsSerializerEntry { public: AZ_TYPE_INFO(PipelineStatisticsSerializer::PipelineStatisticsSerializerEntry, "{7CEF130F-555F-4BC0-9A57-E6912F92599F}"); static void Reflect(AZ::ReflectContext* context); Name m_passName; RPI::PipelineStatisticsResult m_pipelineStatisticsResult; }; AZ_TYPE_INFO(PipelineStatisticsSerializer, "{4972BAB6-98FB-4D3B-9EAC-50FF418E77C0}"); static void Reflect(AZ::ReflectContext* context); PipelineStatisticsSerializer() = default; PipelineStatisticsSerializer(AZStd::vector&& passes); AZStd::vector m_pipelineStatisticsEntries; }; // Intermediate class to serialize benchmark metadata. class BenchmarkMetadataSerializer { public: class GpuEntry { public: AZ_TYPE_INFO(Render::BenchmarkMetadataSerializer::GpuEntry, "{3D5C2DDE-59FB-4E28-9605-D2A083E34505}"); static void Reflect(AZ::ReflectContext* context); GpuEntry() = default; GpuEntry(const RHI::PhysicalDeviceDescriptor& descriptor); private: AZStd::string m_description; uint32_t m_driverVersion; }; AZ_TYPE_INFO(Render::BenchmarkMetadataSerializer, "{2BC41B6F-528F-4E59-AEDA-3B9D74E323EC}"); static void Reflect(AZ::ReflectContext* context); BenchmarkMetadataSerializer() = default; BenchmarkMetadataSerializer(const AZStd::string& benchmarkName, const RHI::PhysicalDeviceDescriptor& gpuDescriptor); AZStd::string m_benchmarkName; GpuEntry m_gpuEntry; }; // --- DelayedQueryCaptureHelper --- bool DelayedQueryCaptureHelper::StartCapture(CaptureCallback&& captureCallback) { if (m_state != DelayedCaptureState::Idle) { AZ_Warning("DelayedQueryCaptureHelper", false, "State is not set to idle, another process is in a pending state."); return false; } m_state = DelayedCaptureState::Pending; m_captureCallback = captureCallback; m_frameThreshold = FrameThreshold; return true; } void DelayedQueryCaptureHelper::UpdateCapture() { if (m_state == DelayedCaptureState::Pending) { m_frameThreshold--; if (m_frameThreshold == 0u) { m_captureCallback(); m_state = DelayedCaptureState::Idle; } } } bool DelayedQueryCaptureHelper::IsIdle() const { return m_state == DelayedCaptureState::Idle; } // --- TimestampSerializer --- TimestampSerializer::TimestampSerializer(AZStd::vector&& passes) { for (const RPI::Pass* pass : passes) { m_timestampEntries.push_back({pass->GetName(), pass->GetLatestTimestampResult().GetDurationInNanoseconds()}); } } void TimestampSerializer::Reflect(AZ::ReflectContext* context) { if (auto* serializeContext = azrtti_cast(context)) { serializeContext->Class() ->Version(1) ->Field("timestampEntries", &TimestampSerializer::m_timestampEntries) ; } TimestampSerializerEntry::Reflect(context); } // --- TimestampSerializerEntry --- void TimestampSerializer::TimestampSerializerEntry::Reflect(AZ::ReflectContext* context) { if (auto* serializeContext = azrtti_cast(context)) { serializeContext->Class() ->Version(1) ->Field("passName", &TimestampSerializerEntry::m_passName) ->Field("timestampResultInNanoseconds", &TimestampSerializerEntry::m_timestampResultInNanoseconds) ; } } // --- CpuFrameTimeSerializer --- CpuFrameTimeSerializer::CpuFrameTimeSerializer(double frameTime) { m_frameTime = frameTime; } void CpuFrameTimeSerializer::Reflect(AZ::ReflectContext* context) { if (auto* serializeContext = azrtti_cast(context)) { serializeContext->Class() ->Version(1) ->Field("frameTime", &CpuFrameTimeSerializer::m_frameTime) ; } } // --- PipelineStatisticsSerializer --- PipelineStatisticsSerializer::PipelineStatisticsSerializer(AZStd::vector&& passes) { for (const RPI::Pass* pass : passes) { m_pipelineStatisticsEntries.push_back({pass->GetName(), pass->GetLatestPipelineStatisticsResult()}); } } void PipelineStatisticsSerializer::Reflect(AZ::ReflectContext* context) { if (auto* serializeContext = azrtti_cast(context)) { serializeContext->Class() ->Version(1) ->Field("pipelineStatisticsEntries", &PipelineStatisticsSerializer::m_pipelineStatisticsEntries) ; } PipelineStatisticsSerializerEntry::Reflect(context); } // --- PipelineStatisticsSerializerEntry --- void PipelineStatisticsSerializer::PipelineStatisticsSerializerEntry::Reflect(AZ::ReflectContext* context) { if (auto* serializeContext = azrtti_cast(context)) { serializeContext->Class() ->Version(1) ->Field("passName", &PipelineStatisticsSerializerEntry::m_passName) ->Field("pipelineStatisticsResult", &PipelineStatisticsSerializerEntry::m_pipelineStatisticsResult) ; } } // --- BenchmarkMetadataSerializer --- BenchmarkMetadataSerializer::BenchmarkMetadataSerializer(const AZStd::string& benchmarkName, const RHI::PhysicalDeviceDescriptor& gpuDescriptor) { m_benchmarkName = benchmarkName; m_gpuEntry = GpuEntry(gpuDescriptor); } void BenchmarkMetadataSerializer::Reflect(AZ::ReflectContext* context) { if (auto* serializeContext = azrtti_cast(context)) { serializeContext->Class() ->Version(1) ->Field("benchmarkName", &BenchmarkMetadataSerializer::m_benchmarkName) ->Field("gpuInfo", &BenchmarkMetadataSerializer::m_gpuEntry) ; } GpuEntry::Reflect(context); } // --- GpuEntry --- BenchmarkMetadataSerializer::GpuEntry::GpuEntry(const RHI::PhysicalDeviceDescriptor& descriptor) { m_description = descriptor.m_description; m_driverVersion = descriptor.m_driverVersion; } void BenchmarkMetadataSerializer::GpuEntry::Reflect(AZ::ReflectContext* context) { if (auto* serializeContext = azrtti_cast(context)) { serializeContext->Class() ->Version(1) ->Field("description", &GpuEntry::m_description) ->Field("driverVersion", &GpuEntry::m_driverVersion) ; } } // --- ProfilingCaptureSystemComponent --- void ProfilingCaptureSystemComponent::Reflect(AZ::ReflectContext* context) { if (auto serializeContext = azrtti_cast(context)) { serializeContext->Class() ->Version(1) ; } if (AZ::BehaviorContext* behaviorContext = azrtti_cast(context)) { behaviorContext->EBus("ProfilingCaptureRequestBus") ->Attribute(AZ::Script::Attributes::Scope, AZ::Script::Attributes::ScopeFlags::Automation) ->Attribute(AZ::Script::Attributes::Module, "atom") ->Event("CapturePassTimestamp", &ProfilingCaptureRequestBus::Events::CapturePassTimestamp) ->Event("CaptureCpuFrameTime", &ProfilingCaptureRequestBus::Events::CaptureCpuFrameTime) ->Event("CapturePassPipelineStatistics", &ProfilingCaptureRequestBus::Events::CapturePassPipelineStatistics) ->Event("CaptureBenchmarkMetadata", &ProfilingCaptureRequestBus::Events::CaptureBenchmarkMetadata) ; ProfilingCaptureNotificationBusHandler::Reflect(context); } TimestampSerializer::Reflect(context); CpuFrameTimeSerializer::Reflect(context); PipelineStatisticsSerializer::Reflect(context); BenchmarkMetadataSerializer::Reflect(context); } void ProfilingCaptureSystemComponent::Activate() { ProfilingCaptureRequestBus::Handler::BusConnect(); } void ProfilingCaptureSystemComponent::Deactivate() { TickBus::Handler::BusDisconnect(); ProfilingCaptureRequestBus::Handler::BusDisconnect(); } bool ProfilingCaptureSystemComponent::CapturePassTimestamp(const AZStd::string& outputFilePath) { RPI::Pass* root = AZ::RPI::PassSystemInterface::Get()->GetRootPass().get(); // Enable all the Timestamp queries in passes. root->SetTimestampQueryEnabled(true); const bool captureStarted = m_timestampCapture.StartCapture([this, root, outputFilePath]() { JsonSerializerSettings serializationSettings; serializationSettings.m_keepDefaults = true; TimestampSerializer timestampSerializer(CollectPassesRecursively(root)); const auto saveResult = JsonSerializationUtils::SaveObjectToFile(×tampSerializer, outputFilePath, (TimestampSerializer*)nullptr, &serializationSettings); AZStd::string captureInfo = outputFilePath; if (!saveResult.IsSuccess()) { captureInfo = AZStd::string::format("Failed to save pass' Timestamps to file '%s'. Error: %s", outputFilePath.c_str(), saveResult.GetError().c_str()); AZ_Warning("ProfilingCaptureSystemComponent", false, captureInfo.c_str()); } // Disable all the Timestamp queries in passes. root->SetTimestampQueryEnabled(false); // Notify listeners that the pass' Timestamp queries capture has finished. ProfilingCaptureNotificationBus::Broadcast(&ProfilingCaptureNotificationBus::Events::OnCaptureQueryTimestampFinished, saveResult.IsSuccess(), captureInfo); }); // Start the TickBus. if (captureStarted) { TickBus::Handler::BusConnect(); } return captureStarted; } bool ProfilingCaptureSystemComponent::CaptureCpuFrameTime(const AZStd::string& outputFilePath) { const bool captureStarted = m_cpuFrameTimeStatisticsCapture.StartCapture([outputFilePath]() { JsonSerializerSettings serializationSettings; serializationSettings.m_keepDefaults = true; double frameTime = AZ::RHI::RHISystemInterface::Get()->GetCpuFrameTime(); AZ_Warning("ProfilingCaptureSystemComponent", frameTime > 0, "Failed to get Cpu frame time"); CpuFrameTimeSerializer serializer(frameTime); const auto saveResult = JsonSerializationUtils::SaveObjectToFile(&serializer, outputFilePath, (CpuFrameTimeSerializer*)nullptr, &serializationSettings); AZStd::string captureInfo = outputFilePath; if (!saveResult.IsSuccess()) { captureInfo = AZStd::string::format("Failed to save Cpu frame time to file '%s'. Error: %s", outputFilePath.c_str(), saveResult.GetError().c_str()); AZ_Warning("ProfilingCaptureSystemComponent", false, captureInfo.c_str()); } // Notify listeners that the Cpu frame time statistics capture has finished. ProfilingCaptureNotificationBus::Broadcast(&ProfilingCaptureNotificationBus::Events::OnCaptureCpuFrameTimeFinished, saveResult.IsSuccess(), captureInfo); }); // Start the TickBus. if (captureStarted) { TickBus::Handler::BusConnect(); } return captureStarted; } bool ProfilingCaptureSystemComponent::CapturePassPipelineStatistics(const AZStd::string& outputFilePath) { RPI::Pass* root = AZ::RPI::PassSystemInterface::Get()->GetRootPass().get(); // Enable all the PipelineStatistics queries in passes. root->SetPipelineStatisticsQueryEnabled(true); const bool captureStarted = m_pipelineStatisticsCapture.StartCapture([this, root, outputFilePath]() { JsonSerializerSettings serializationSettings; serializationSettings.m_keepDefaults = true; PipelineStatisticsSerializer pipelineStatisticsSerializer(CollectPassesRecursively(root)); const auto saveResult = JsonSerializationUtils::SaveObjectToFile(&pipelineStatisticsSerializer, outputFilePath, (PipelineStatisticsSerializer*)nullptr, &serializationSettings); AZStd::string captureInfo = outputFilePath; if (!saveResult.IsSuccess()) { captureInfo = AZStd::string::format("Failed to save pass' PipelineStatistics to file '%s'. Error: %s", outputFilePath.c_str(), saveResult.GetError().c_str()); AZ_Warning("ProfilingCaptureSystemComponent", false, captureInfo.c_str()); } // Disable all the PipelineStatistics queries in passes. root->SetPipelineStatisticsQueryEnabled(false); // Notify listeners that the pass' PipelineStatistics queries capture has finished. ProfilingCaptureNotificationBus::Broadcast(&ProfilingCaptureNotificationBus::Events::OnCaptureQueryPipelineStatisticsFinished, saveResult.IsSuccess(), captureInfo); }); // Start the TickBus. if (captureStarted) { TickBus::Handler::BusConnect(); } return captureStarted; } bool ProfilingCaptureSystemComponent::CaptureBenchmarkMetadata(const AZStd::string& benchmarkName, const AZStd::string& outputFilePath) { const bool captureStarted = m_benchmarkMetadataCapture.StartCapture([benchmarkName, outputFilePath]() { JsonSerializerSettings serializationSettings; serializationSettings.m_keepDefaults = true; const RHI::PhysicalDeviceDescriptor& gpuDescriptor = RHI::GetRHIDevice()->GetPhysicalDevice().GetDescriptor(); BenchmarkMetadataSerializer serializer(benchmarkName, gpuDescriptor); const auto saveResult = JsonSerializationUtils::SaveObjectToFile(&serializer, outputFilePath, (BenchmarkMetadataSerializer*)nullptr, &serializationSettings); AZStd::string captureInfo = outputFilePath; if (!saveResult.IsSuccess()) { captureInfo = AZStd::string::format("Failed to save benchmark metadata data to file '%s'. Error: %s", outputFilePath.c_str(), saveResult.GetError().c_str()); AZ_Warning("ProfilingCaptureSystemComponent", false, captureInfo.c_str()); } // Notify listeners that the benchmark metadata capture has finished. ProfilingCaptureNotificationBus::Broadcast(&ProfilingCaptureNotificationBus::Events::OnCaptureBenchmarkMetadataFinished, saveResult.IsSuccess(), captureInfo); }); // Start the TickBus. if (captureStarted) { TickBus::Handler::BusConnect(); } return captureStarted; } AZStd::vector ProfilingCaptureSystemComponent::CollectPassesRecursively(const RPI::Pass* root) const { AZStd::vector passes; AZStd::function collectPass = [&](const RPI::Pass* pass) { passes.push_back(pass); const RPI::ParentPass* asParent = pass->AsParent(); if (asParent) { for (const auto& child : asParent->GetChildren()) { collectPass(child.get()); } } }; collectPass(root); return passes; } void ProfilingCaptureSystemComponent::OnTick([[maybe_unused]] float deltaTime, [[maybe_unused]] ScriptTimePoint time) { // Update the delayed captures m_timestampCapture.UpdateCapture(); m_cpuFrameTimeStatisticsCapture.UpdateCapture(); m_pipelineStatisticsCapture.UpdateCapture(); m_benchmarkMetadataCapture.UpdateCapture(); // Disconnect from the TickBus if all capture states are set to idle. if (m_timestampCapture.IsIdle() && m_pipelineStatisticsCapture.IsIdle() && m_benchmarkMetadataCapture.IsIdle() && m_cpuFrameTimeStatisticsCapture.IsIdle()) { TickBus::Handler::BusDisconnect(); } } } }