From fd627ffaec8fd8801d980b4c91ee7c0607ab6aaf Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Thu, 25 Feb 2021 17:44:00 +0000 Subject: IVGCVSW-5687 Update Doxygen Docu * Update Doxygen Documentation for 21.02 release Signed-off-by: Jan Eilers Change-Id: I9ed2f9caab038836ea99d7b378d7899fe431a4e5 --- 21.02/_deserialize_depth_to_space_8cpp.xhtml | 160 +++++++++++++++++++++++++++ 1 file changed, 160 insertions(+) create mode 100644 21.02/_deserialize_depth_to_space_8cpp.xhtml (limited to '21.02/_deserialize_depth_to_space_8cpp.xhtml') diff --git a/21.02/_deserialize_depth_to_space_8cpp.xhtml b/21.02/_deserialize_depth_to_space_8cpp.xhtml new file mode 100644 index 0000000000..fdba65420c --- /dev/null +++ b/21.02/_deserialize_depth_to_space_8cpp.xhtml @@ -0,0 +1,160 @@ + + + + + + + + + + + + + +ArmNN: src/armnnDeserializer/test/DeserializeDepthToSpace.cpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
DeserializeDepthToSpace.cpp File Reference
+
+
+
#include "ParserFlatbuffersSerializeFixture.hpp"
+#include <armnnDeserializer/IDeserializer.hpp>
+#include <boost/test/unit_test.hpp>
+#include <string>
+
+

Go to the source code of this file.

+ + + + +

+Functions

 BOOST_FIXTURE_TEST_CASE (DepthToSpaceFloat32, DepthToSpaceFloat32Fixture)
 
+

Function Documentation

+ +

◆ BOOST_FIXTURE_TEST_CASE()

+ +
+
+ + + + + + + + + + + + + + + + + + +
BOOST_FIXTURE_TEST_CASE (DepthToSpaceFloat32 ,
DepthToSpaceFloat32Fixture  
)
+
+ +

Definition at line 118 of file DeserializeDepthToSpace.cpp.

+ +

References BOOST_AUTO_TEST_SUITE_END().

+
119 {
120  RunTest<4, armnn::DataType::Float32>(
121  0,
122  {
123  1.f, 2.f, 3.f, 4.f,
124  5.f, 6.f, 7.f, 8.f,
125  9.f, 10.f, 11.f, 12.f,
126  13.f, 14.f, 15.f, 16.f
127  },
128  {
129  1.f, 2.f, 5.f, 6.f,
130  3.f, 4.f, 7.f, 8.f,
131  9.f, 10.f, 13.f, 14.f,
132  11.f, 12.f, 15.f, 16.f
133  });
134 }
+
+
+
+
+ + + + -- cgit v1.2.1