aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/IRuntime.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/armnn/IRuntime.hpp')
-rw-r--r--include/armnn/IRuntime.hpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/armnn/IRuntime.hpp b/include/armnn/IRuntime.hpp
index 3f3c998f3a..41e1c47c5c 100644
--- a/include/armnn/IRuntime.hpp
+++ b/include/armnn/IRuntime.hpp
@@ -44,6 +44,23 @@ public:
// Setting this value will override the paths set by the DYNAMIC_BACKEND_PATHS compiler directive
// Only a single path is allowed for the override
std::string m_DynamicBackendsPath;
+
+ struct ExternalProfilingOptions
+ {
+ ExternalProfilingOptions()
+ : m_EnableProfiling(false)
+ , m_OutgoingCaptureFile("")
+ , m_IncomingCaptureFile("")
+ , m_FileOnly(false)
+ , m_CapturePeriod(150u)
+ {}
+
+ bool m_EnableProfiling;
+ std::string m_OutgoingCaptureFile;
+ std::string m_IncomingCaptureFile;
+ bool m_FileOnly;
+ uint32_t m_CapturePeriod;
+ };
};
static IRuntime* CreateRaw(const CreationOptions& options);