aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/Types.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/armnn/Types.hpp')
-rw-r--r--include/armnn/Types.hpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/armnn/Types.hpp b/include/armnn/Types.hpp
index e1ff46b023..576e67ea18 100644
--- a/include/armnn/Types.hpp
+++ b/include/armnn/Types.hpp
@@ -196,6 +196,16 @@ public:
using IBackendSharedPtr = std::shared_ptr<IBackend>;
using IBackendUniquePtr = std::unique_ptr<IBackend, void(*)(IBackend* backend)>;
+/// BackendCapability class
+enum class BackendCapability : uint32_t
+{
+ /// Constant weights can be accessed through the descriptors,
+ /// On the other hand, non-const weights can be accessed through inputs.
+ NonConstWeights,
+
+ // add new enum values here
+};
+
/// Device specific knowledge to be passed to the optimizer.
class IDeviceSpec
{