aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/SendTimelinePacket.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/profiling/SendTimelinePacket.hpp')
-rw-r--r--src/profiling/SendTimelinePacket.hpp17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/profiling/SendTimelinePacket.hpp b/src/profiling/SendTimelinePacket.hpp
index fc9cf6fd25..f915dafea7 100644
--- a/src/profiling/SendTimelinePacket.hpp
+++ b/src/profiling/SendTimelinePacket.hpp
@@ -13,10 +13,10 @@
#include <memory>
-namespace armnn
+namespace arm
{
-namespace profiling
+namespace pipe
{
class SendTimelinePacket : public ISendTimelinePacket
@@ -97,7 +97,8 @@ void SendTimelinePacket::ForwardWriteBinaryFunction(Func& func, Params&& ... par
continue;
case TimelinePacketStatus::Error:
- throw RuntimeException("Error processing while sending TimelineBinaryPacket", CHECK_LOCATION());
+ throw armnn::RuntimeException("Error processing while sending TimelineBinaryPacket", CHECK_LOCATION
+ ());
default:
m_Offset += numberOfBytesWritten;
@@ -106,7 +107,7 @@ void SendTimelinePacket::ForwardWriteBinaryFunction(Func& func, Params&& ... par
}
}
}
- catch (const RuntimeException& ex)
+ catch (const armnn::RuntimeException& ex)
{
// don't swallow in the catch all block
throw ex;
@@ -116,16 +117,16 @@ void SendTimelinePacket::ForwardWriteBinaryFunction(Func& func, Params&& ... par
// ditto
throw ex;
}
- catch (const Exception& ex)
+ catch (const armnn::Exception& ex)
{
throw ex;
}
catch ( ... )
{
- throw RuntimeException("Unknown Exception thrown while sending TimelineBinaryPacket", CHECK_LOCATION());
+ throw armnn::RuntimeException("Unknown Exception thrown while sending TimelineBinaryPacket", CHECK_LOCATION());
}
}
-} // namespace profiling
+} // namespace pipe
-} // namespace armnn
+} // namespace arm