From decd08b89565b18067d229c8c25b6f3a3333c653 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Sun, 13 Mar 2022 22:35:46 +0000 Subject: IVGCVSW-6847 replace armnn:Optional with arm::pipe::Optional in profiling code Change-Id: I048c538d4f8c21770aec2b2751c934d9fa15a4dc Signed-off-by: Jim Flynn --- src/profiling/test/ProfilingTestUtils.hpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'src/profiling/test/ProfilingTestUtils.hpp') diff --git a/src/profiling/test/ProfilingTestUtils.hpp b/src/profiling/test/ProfilingTestUtils.hpp index 32db72a19d..b4aa372a98 100644 --- a/src/profiling/test/ProfilingTestUtils.hpp +++ b/src/profiling/test/ProfilingTestUtils.hpp @@ -8,10 +8,10 @@ #include "ProfilingUtils.hpp" #include "Runtime.hpp" -#include #include #include +#include #include using namespace armnn; @@ -30,7 +30,7 @@ void VerifyTimelineHeaderBinary(const unsigned char* readableData, unsigned int& offset, uint32_t packetDataLength); -ProfilingGuid VerifyTimelineLabelBinaryPacketData(Optional guid, +ProfilingGuid VerifyTimelineLabelBinaryPacketData(arm::pipe::Optional guid, const std::string& label, const unsigned char* readableData, unsigned int& offset); @@ -41,20 +41,20 @@ void VerifyTimelineEventClassBinaryPacketData(ProfilingGuid guid, unsigned int& offset); void VerifyTimelineRelationshipBinaryPacketData(ProfilingRelationshipType relationshipType, - Optional relationshipGuid, - Optional headGuid, - Optional tailGuid, - Optional attributeGuid, + arm::pipe::Optional relationshipGuid, + arm::pipe::Optional headGuid, + arm::pipe::Optional tailGuid, + arm::pipe::Optional attributeGuid, const unsigned char* readableData, unsigned int& offset); -ProfilingGuid VerifyTimelineEntityBinaryPacketData(Optional guid, +ProfilingGuid VerifyTimelineEntityBinaryPacketData(arm::pipe::Optional guid, const unsigned char* readableData, unsigned int& offset); -ProfilingGuid VerifyTimelineEventBinaryPacket(Optional timestamp, - Optional threadId, - Optional eventGuid, +ProfilingGuid VerifyTimelineEventBinaryPacket(arm::pipe::Optional timestamp, + arm::pipe::Optional threadId, + arm::pipe::Optional eventGuid, const unsigned char* readableData, unsigned int& offset); -- cgit v1.2.1