From fb14ebbd68e04876809145296af96f6f41857418 Mon Sep 17 00:00:00 2001 From: James Ward Date: Thu, 26 Nov 2020 11:08:12 +0000 Subject: IVGCVSW-5348 Update Doxygen Docu * Update Doxygen Documentation for 20.11 release Signed-off-by: James Ward Change-Id: Ib47edac7923a642a277b1169d1085e5622021dc0 --- 20.11/_is_layer_supported_test_impl_8hpp.xhtml | 316 +++++++++++++++++++++++++ 1 file changed, 316 insertions(+) create mode 100644 20.11/_is_layer_supported_test_impl_8hpp.xhtml (limited to '20.11/_is_layer_supported_test_impl_8hpp.xhtml') diff --git a/20.11/_is_layer_supported_test_impl_8hpp.xhtml b/20.11/_is_layer_supported_test_impl_8hpp.xhtml new file mode 100644 index 0000000000..a250a9fbd2 --- /dev/null +++ b/20.11/_is_layer_supported_test_impl_8hpp.xhtml @@ -0,0 +1,316 @@ + + + + + + + + + + + + + +ArmNN: src/backends/backendsCommon/test/IsLayerSupportedTestImpl.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.11 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
IsLayerSupportedTestImpl.hpp File Reference
+
+
+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + +

+Macros

#define DECLARE_LAYER_POLICY_CUSTOM_PARAM(name, descType)
 
#define DECLARE_LAYER_POLICY_MAP_PARAM(name, descType)
 
#define DECLARE_LAYER_POLICY_1_PARAM(name)   DECLARE_LAYER_POLICY_CUSTOM_PARAM(name, void)
 
#define DECLARE_LAYER_POLICY_2_PARAM(name)   DECLARE_LAYER_POLICY_CUSTOM_PARAM(name, armnn::name##Descriptor)
 
#define DECLARE_LAYER_POLICY_EXCEPTION(name, descType)
 
#define DECLARE_LAYER_POLICY_EXCEPTION_1_PARAM(name)   DECLARE_LAYER_POLICY_EXCEPTION(name, void)
 
#define DECLARE_LAYER_POLICY_EXCEPTION_2_PARAM(name)   DECLARE_LAYER_POLICY_EXCEPTION(name, armnn::name##Descriptor)
 
+

Macro Definition Documentation

+ +

◆ DECLARE_LAYER_POLICY_1_PARAM

+ +
+
+ + + + + + + + +
#define DECLARE_LAYER_POLICY_1_PARAM( name)   DECLARE_LAYER_POLICY_CUSTOM_PARAM(name, void)
+
+ +

Definition at line 527 of file IsLayerSupportedTestImpl.hpp.

+ +
+
+ +

◆ DECLARE_LAYER_POLICY_2_PARAM

+ +
+
+ + + + + + + + +
#define DECLARE_LAYER_POLICY_2_PARAM( name)   DECLARE_LAYER_POLICY_CUSTOM_PARAM(name, armnn::name##Descriptor)
+
+ +

Definition at line 531 of file IsLayerSupportedTestImpl.hpp.

+ +
+
+ +

◆ DECLARE_LAYER_POLICY_CUSTOM_PARAM

+ +
+
+ + + + + + + + + + + + + + + + + + +
#define DECLARE_LAYER_POLICY_CUSTOM_PARAM( name,
 descType 
)
+
+Value:
template<armnn::DataType DataType> \
struct LayerTypePolicy<armnn::LayerType::name, DataType> \
{ \
using Type = armnn::name##Layer; \
using Desc = descType; \
using QueueDesc = armnn::name##QueueDescriptor; \
constexpr static const char* NameStr = #name; \
constexpr static const bool IsException = false; \
\
static std::unique_ptr<armnn::IWorkload> MakeDummyWorkload(armnn::IWorkloadFactory *factory, \
unsigned int nIn, unsigned int nOut) \
{ \
QueueDesc desc; \
armnn::WorkloadInfo info = MakeDummyWorkloadInfo<DataType>(nIn, nOut); \
return factory->Create##name(desc, info); \
} \
};
+ +
+

Definition at line 485 of file IsLayerSupportedTestImpl.hpp.

+ +
+
+ +

◆ DECLARE_LAYER_POLICY_EXCEPTION

+ +
+
+ + + + + + + + + + + + + + + + + + +
#define DECLARE_LAYER_POLICY_EXCEPTION( name,
 descType 
)
+
+Value:
template<armnn::DataType DataType> \
struct LayerTypePolicy<armnn::LayerType::name, DataType> \
{ \
using Type = armnn::name##Layer; \
using Desc = descType; \
constexpr static const char* NameStr = #name; \
constexpr static const bool IsException = true; \
\
static std::unique_ptr<armnn::IWorkload> MakeDummyWorkload(armnn::IWorkloadFactory *factory, \
unsigned int nIn, unsigned int nOut) \
{ \
IgnoreUnused(factory, nIn, nOut); \
return std::unique_ptr<armnn::IWorkload>(); \
} \
};
+
+

Definition at line 534 of file IsLayerSupportedTestImpl.hpp.

+ +
+
+ +

◆ DECLARE_LAYER_POLICY_EXCEPTION_1_PARAM

+ +
+
+ + + + + + + + +
#define DECLARE_LAYER_POLICY_EXCEPTION_1_PARAM( name)   DECLARE_LAYER_POLICY_EXCEPTION(name, void)
+
+ +

Definition at line 551 of file IsLayerSupportedTestImpl.hpp.

+ +
+
+ +

◆ DECLARE_LAYER_POLICY_EXCEPTION_2_PARAM

+ +
+
+ + + + + + + + +
#define DECLARE_LAYER_POLICY_EXCEPTION_2_PARAM( name)   DECLARE_LAYER_POLICY_EXCEPTION(name, armnn::name##Descriptor)
+
+ +

Definition at line 552 of file IsLayerSupportedTestImpl.hpp.

+ +
+
+ +

◆ DECLARE_LAYER_POLICY_MAP_PARAM

+ +
+
+ + + + + + + + + + + + + + + + + + +
#define DECLARE_LAYER_POLICY_MAP_PARAM( name,
 descType 
)
+
+Value:
template<armnn::DataType DataType> \
struct LayerTypePolicy<armnn::LayerType::name, DataType> \
{ \
using Type = armnn::name##Layer; \
using Desc = descType; \
using QueueDesc = armnn::name##QueueDescriptor; \
using Workload = armnn::name##Workload; \
constexpr static const char* NameStr = #name; \
constexpr static const bool IsException = false; \
\
static std::unique_ptr<armnn::IWorkload> MakeDummyWorkload(armnn::IWorkloadFactory* factory, \
unsigned int nIn, unsigned int nOut) \
{ \
IgnoreUnused(factory); \
QueueDesc desc; \
armnn::WorkloadInfo info = MakeDummyWorkloadInfo<DataType>(nIn, nOut); \
return std::make_unique<armnn::name##Workload>(desc, info); \
} \
};
+ +
+

Definition at line 504 of file IsLayerSupportedTestImpl.hpp.

+ +
+
+
+
+ + + + -- cgit v1.2.1