ArmNN
 20.08
DeserializeDepthToSpace.cpp File Reference
#include "ParserFlatbuffersSerializeFixture.hpp"
#include "../Deserializer.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 }