aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSadik Armagan <sadik.armagan@arm.com>2021-03-31 16:12:13 +0100
committerSadik Armagan <sadik.armagan@arm.com>2021-04-02 10:38:51 +0000
commitaede8ca25d3231d122b670353b754142b64e5d69 (patch)
tree87ba5bdae701a51b15fa44d550a55932e89966c9 /include
parent8c7a28ba48a0c7347fd6f940cbcf4b6dbeca932f (diff)
downloadarmnn-aede8ca25d3231d122b670353b754142b64e5d69.tar.gz
IVGCVSW-5783 'Add AsyncExecution Capability'
* Added AsyncExecution to the BackendCapability enum class. * Logged a warning if backends do not support AsyncExecution capability if AsyncNetwork is created. Signed-off-by: Sadik Armagan <sadik.armagan@arm.com> Change-Id: I49f8467297f4b6b8e414cb6a3638a7d3f1bb886a
Diffstat (limited to 'include')
-rw-r--r--include/armnn/Types.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/armnn/Types.hpp b/include/armnn/Types.hpp
index 576e67ea18..07d38a332d 100644
--- a/include/armnn/Types.hpp
+++ b/include/armnn/Types.hpp
@@ -203,6 +203,9 @@ enum class BackendCapability : uint32_t
/// On the other hand, non-const weights can be accessed through inputs.
NonConstWeights,
+ /// Asynchronous Execution.
+ AsyncExecution,
+
// add new enum values here
};