MCPcopy Create free account
hub / github.com/ARM-software/armnn / ProfilingException

Class ProfilingException

profiling/common/include/ProfilingException.hpp:49–65  ·  view source on GitHub ↗

General Exception class for Profiling code

Source from the content-addressed store, hash-verified

47
48/// General Exception class for Profiling code
49class ProfilingException : public std::exception
50{
51public:
52 explicit ProfilingException(const std::string& message) : m_Message(message) {};
53
54 explicit ProfilingException(const std::string& message,
55 const Location& location) : m_Message(message + location.AsString()) {};
56
57 /// @return - Error message of ProfilingException
58 virtual const char *what() const noexcept override
59 {
60 return m_Message.c_str();
61 }
62
63private:
64 std::string m_Message;
65};
66
67class BackendProfilingException : public ProfilingException
68{

Callers 15

UpdateMethod · 0.85
DisconnectMethod · 0.85
operator()Method · 0.85
GetGlobalIdMethod · 0.85
CounterIdMap.cppFile · 0.85
FailMethod · 0.85
CommitMethod · 0.85
operator()Method · 0.85
operator()Method · 0.85
operator()Method · 0.85

Calls

no outgoing calls

Tested by 10

ReadPacketMethod · 0.68
HandlePacketMethod · 0.68
ConnectionMethod · 0.68
AddRelationshipMethod · 0.68
HandleLabelLinkMethod · 0.68
HandleConnectionMethod · 0.68
HandleChildMethod · 0.68
HandleExecutionOfMethod · 0.68
HandleExecutionLinkMethod · 0.68
AddEventClassMethod · 0.68