From ae050524109f1ce827962665436ef7430f2ac479 Mon Sep 17 00:00:00 2001 From: David Monahan Date: Wed, 22 Mar 2023 16:48:58 +0000 Subject: IVGCVSW-7255 Update Doxygen Documentation and publish on GitHub. * Updating Doxygen documentation for 23.02 release. Signed-off-by: David Monahan Change-Id: I545574ff7664b4595d2fe6a91a3c35d2ad55df82 --- .../_convert_fp32_to_fp16_layer_8cpp_source.xhtml | 156 ++++++++++++++------- 1 file changed, 107 insertions(+), 49 deletions(-) (limited to '23.02/_convert_fp32_to_fp16_layer_8cpp_source.xhtml') diff --git a/23.02/_convert_fp32_to_fp16_layer_8cpp_source.xhtml b/23.02/_convert_fp32_to_fp16_layer_8cpp_source.xhtml index 8e4a1a681f..e2485b4b8c 100644 --- a/23.02/_convert_fp32_to_fp16_layer_8cpp_source.xhtml +++ b/23.02/_convert_fp32_to_fp16_layer_8cpp_source.xhtml @@ -8,7 +8,7 @@ - + ArmNN: src/armnn/layers/ConvertFp32ToFp16Layer.cpp Source File @@ -19,9 +19,6 @@ - @@ -30,7 +27,8 @@ extensions: ["tex2jax.js"], jax: ["input/TeX","output/HTML-CSS"], }); - + + @@ -51,18 +49,21 @@ - + +/* @license-end */
@@ -76,7 +77,9 @@ $(function() {
@@ -98,54 +101,109 @@ $(document).ready(function(){initNavTree('_convert_fp32_to_fp16_layer_8cpp_sourc
ConvertFp32ToFp16Layer.cpp
-Go to the documentation of this file.
1 //
2 // Copyright © 2017 Arm Ltd and Contributors. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
6 
7 #include "LayerCloneBase.hpp"
8 
9 #include <armnn/TypesUtils.hpp>
12 
13 namespace armnn
14 {
15 
17  : Layer(1, 1, LayerType::ConvertFp32ToFp16, name)
18 {
19 }
20 
21 std::unique_ptr<IWorkload> ConvertFp32ToFp16Layer::CreateWorkload(const IWorkloadFactory& factory) const
22 {
24  SetAdditionalInfo(descriptor);
25 
26  return factory.CreateWorkload(LayerType::ConvertFp32ToFp16, descriptor, PrepInfoAndDesc(descriptor));
27 }
28 
30 {
31  return CloneBase<ConvertFp32ToFp16Layer>(graph, GetName());
32 }
33 
35 {
36 
38 
39  const TensorShape& outputShape = GetOutputSlot(0).GetTensorInfo().GetShape();
40 
42 
43  auto inferredShapes = InferOutputShapes({ GetInputSlot(0).GetConnection()->GetTensorInfo().GetShape() });
44 
45  ARMNN_ASSERT(inferredShapes.size() == 1);
46 
47  ValidateAndCopyShape(outputShape, inferredShapes[0], m_ShapeInferenceMethod, "LayerName");
48 }
49 
51 {
52  strategy.ExecuteStrategy(this, GetParameters(), {}, GetName());
53 }
54 
55 } // namespace armnn
-
const TensorShape & GetShape() const
Definition: Tensor.hpp:191
-
std::vector< TensorShape > InferOutputShapes(const std::vector< TensorShape > &inputShapes) const override
Infer the shape of the output(s) based on the provided input shape(s)
Definition: Layer.cpp:397
- - -
ConvertFp32ToFp16Layer * Clone(Graph &graph) const override
Creates a dynamically-allocated copy of this layer.
- -
ConvertFp32ToFp16Layer(const char *name)
Constructor to create a ConvertFp32ToFp16Layer.
-
virtual std::unique_ptr< IWorkload > CreateWorkload(const IWorkloadFactory &factory) const override
Makes a workload for the ConvertFp32ToFp16 type.
-
void VerifyShapeInferenceType(const TensorShape &outputShape, ShapeInferenceMethod shapeInferenceMethod)
Definition: Layer.cpp:491
-
Copyright (c) 2021 ARM Limited and Contributors.
- -
const IOutputSlot * GetConnection() const override
Definition: Layer.hpp:206
-
void ValidateAndCopyShape(const TensorShape &outputShape, const TensorShape &inferredShape, const ShapeInferenceMethod shapeInferenceMethod, const std::string &layerName, const unsigned int outputSlotIndex=0)
Definition: Layer.cpp:422
- -
void VerifyLayerConnections(unsigned int expectedConnections, const CheckLocation &location) const
Definition: Layer.cpp:378
-
const InputSlot & GetInputSlot(unsigned int index) const override
Get a const input slot handle by slot index.
Definition: Layer.hpp:324
- -
WorkloadInfo PrepInfoAndDesc(QueueDescriptor &descriptor) const
Helper function to reduce duplication in *Layer::CreateWorkload.
Definition: Layer.hpp:396
-
#define ARMNN_ASSERT(COND)
Definition: Assert.hpp:14
-
virtual void ExecuteStrategy(const IConnectableLayer *layer, const armnn::BaseDescriptor &descriptor, const std::vector< armnn::ConstTensor > &constants, const char *name, const armnn::LayerBindingId id=0)=0
-
#define CHECK_LOCATION()
Definition: Exceptions.hpp:203
- -
void ValidateTensorShapesFromInputs() override
Check if the input tensor shape(s) will lead to a valid configuration of ConvertFp32ToFp16Layer.
-
This layer converts data type Float 32 to Float 16.
- -
void ExecuteStrategy(IStrategy &strategy) const override
Apply a visitor to this layer.
-
void SetAdditionalInfo(QueueDescriptor &descriptor) const
Definition: Layer.cpp:274
-
virtual const BaseDescriptor & GetParameters() const override
If the layer has a descriptor return it.
Definition: Layer.hpp:365
- -
const OutputSlot & GetOutputSlot(unsigned int index=0) const override
Get the const output slot handle by slot index.
Definition: Layer.hpp:326
-
virtual const TensorInfo & GetTensorInfo() const =0
-
const char * GetName() const override
Returns the name of the layer.
Definition: Layer.hpp:319
-
virtual std::unique_ptr< IWorkload > CreateWorkload(LayerType type, const QueueDescriptor &descriptor, const WorkloadInfo &info) const
-
const TensorInfo & GetTensorInfo() const override
Definition: Layer.cpp:92
-
ShapeInferenceMethod m_ShapeInferenceMethod
Definition: Layer.hpp:423
- - -
LayerType
When adding a new layer, adapt also the LastLayer enum value in the enum class LayerType below...
Definition: Types.hpp:466
+Go to the documentation of this file.
1 //
+
2 // Copyright © 2017 Arm Ltd and Contributors. All rights reserved.
+
3 // SPDX-License-Identifier: MIT
+
4 //
+ +
6 
+
7 #include "LayerCloneBase.hpp"
+
8 
+
9 #include <armnn/TypesUtils.hpp>
+ + +
12 
+
13 namespace armnn
+
14 {
+
15 
+ +
17  : Layer(1, 1, LayerType::ConvertFp32ToFp16, name)
+
18 {
+
19 }
+
20 
+
21 std::unique_ptr<IWorkload> ConvertFp32ToFp16Layer::CreateWorkload(const IWorkloadFactory& factory) const
+
22 {
+ +
24  SetAdditionalInfo(descriptor);
+
25 
+
26  return factory.CreateWorkload(LayerType::ConvertFp32ToFp16, descriptor, PrepInfoAndDesc(descriptor));
+
27 }
+
28 
+ +
30 {
+
31  return CloneBase<ConvertFp32ToFp16Layer>(graph, GetName());
+
32 }
+
33 
+ +
35 {
+
36 
+ +
38 
+
39  const TensorShape& outputShape = GetOutputSlot(0).GetTensorInfo().GetShape();
+
40 
+ +
42 
+
43  auto inferredShapes = InferOutputShapes({ GetInputSlot(0).GetConnection()->GetTensorInfo().GetShape() });
+
44 
+
45  ARMNN_ASSERT(inferredShapes.size() == 1);
+
46 
+
47  ValidateAndCopyShape(outputShape, inferredShapes[0], m_ShapeInferenceMethod, "LayerName");
+
48 }
+
49 
+ +
51 {
+
52  strategy.ExecuteStrategy(this, GetParameters(), {}, GetName());
+
53 }
+
54 
+
55 } // namespace armnn
+
ConvertFp32ToFp16Layer(const char *name)
Constructor to create a ConvertFp32ToFp16Layer.
+ +
#define CHECK_LOCATION()
Definition: Exceptions.hpp:203
+
void ValidateTensorShapesFromInputs() override
Check if the input tensor shape(s) will lead to a valid configuration of ConvertFp32ToFp16Layer.
+
void VerifyLayerConnections(unsigned int expectedConnections, const CheckLocation &location) const
Definition: Layer.cpp:378
+
const IOutputSlot * GetConnection() const override
Definition: Layer.hpp:206
+ + +
void VerifyShapeInferenceType(const TensorShape &outputShape, ShapeInferenceMethod shapeInferenceMethod)
Definition: Layer.cpp:491
+ + + +
void SetAdditionalInfo(QueueDescriptor &descriptor) const
Definition: Layer.cpp:274
+
ShapeInferenceMethod m_ShapeInferenceMethod
Definition: Layer.hpp:423
+
void ValidateAndCopyShape(const TensorShape &outputShape, const TensorShape &inferredShape, const ShapeInferenceMethod shapeInferenceMethod, const std::string &layerName, const unsigned int outputSlotIndex=0)
Definition: Layer.cpp:422
+
Copyright (c) 2021 ARM Limited and Contributors.
+ +
const TensorInfo & GetTensorInfo() const override
Definition: Layer.cpp:92
+ +
LayerType
When adding a new layer, adapt also the LastLayer enum value in the enum class LayerType below.
Definition: Types.hpp:466
+
virtual const TensorInfo & GetTensorInfo() const =0
+
WorkloadInfo PrepInfoAndDesc(QueueDescriptor &descriptor) const
Helper function to reduce duplication in *Layer::CreateWorkload.
Definition: Layer.hpp:396
+
const OutputSlot & GetOutputSlot(unsigned int index=0) const override
Get the const output slot handle by slot index.
Definition: Layer.hpp:326
+
virtual const BaseDescriptor & GetParameters() const override
If the layer has a descriptor return it.
Definition: Layer.hpp:365
+
const TensorShape & GetShape() const
Definition: Tensor.hpp:191
+
ConvertFp32ToFp16Layer * Clone(Graph &graph) const override
Creates a dynamically-allocated copy of this layer.
+ +
const InputSlot & GetInputSlot(unsigned int index) const override
Get a const input slot handle by slot index.
Definition: Layer.hpp:324
+
void ExecuteStrategy(IStrategy &strategy) const override
Apply a visitor to this layer.
+
virtual void ExecuteStrategy(const IConnectableLayer *layer, const armnn::BaseDescriptor &descriptor, const std::vector< armnn::ConstTensor > &constants, const char *name, const armnn::LayerBindingId id=0)=0
+ +
#define ARMNN_ASSERT(COND)
Definition: Assert.hpp:14
+
virtual std::unique_ptr< IWorkload > CreateWorkload(LayerType type, const QueueDescriptor &descriptor, const WorkloadInfo &info) const
+
const char * GetName() const override
Returns the name of the layer.
Definition: Layer.hpp:319
+ + +
This layer converts data type Float 32 to Float 16.
+
virtual std::unique_ptr< IWorkload > CreateWorkload(const IWorkloadFactory &factory) const override
Makes a workload for the ConvertFp32ToFp16 type.
+
std::vector< TensorShape > InferOutputShapes(const std::vector< TensorShape > &inputShapes) const override
Infer the shape of the output(s) based on the provided input shape(s)
Definition: Layer.cpp:397
-- cgit v1.2.1