From 6940dd720ebb6b3d1df8ca203ab696daefe58189 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Fri, 20 Mar 2020 12:25:56 +0000 Subject: renamed Documentation folder 20.02 and added .nojekyll file Signed-off-by: Jim Flynn --- 20.02/_is_layer_supported_test_impl_8hpp.xhtml | 280 +++++++++++++++++++++++++ 1 file changed, 280 insertions(+) create mode 100644 20.02/_is_layer_supported_test_impl_8hpp.xhtml (limited to '20.02/_is_layer_supported_test_impl_8hpp.xhtml') diff --git a/20.02/_is_layer_supported_test_impl_8hpp.xhtml b/20.02/_is_layer_supported_test_impl_8hpp.xhtml new file mode 100644 index 0000000000..fb5da91fd1 --- /dev/null +++ b/20.02/_is_layer_supported_test_impl_8hpp.xhtml @@ -0,0 +1,280 @@ + + + + + + + + + + + + + +ArmNN: src/backends/backendsCommon/test/IsLayerSupportedTestImpl.hpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
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_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 398 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 402 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 377 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 405 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 422 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 423 of file IsLayerSupportedTestImpl.hpp.

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