ArmNN
 21.02
DeserializeGather.cpp File Reference
#include <boost/test/unit_test.hpp>
#include "ParserFlatbuffersSerializeFixture.hpp"
#include <armnnDeserializer/IDeserializer.hpp>
#include <string>

Go to the source code of this file.

Functions

 BOOST_FIXTURE_TEST_CASE (GatherFloat32, SimpleGatherFixtureFloat32)
 

Function Documentation

◆ BOOST_FIXTURE_TEST_CASE()

BOOST_FIXTURE_TEST_CASE ( GatherFloat32  ,
SimpleGatherFixtureFloat32   
)

Definition at line 136 of file DeserializeGather.cpp.

References BOOST_AUTO_TEST_SUITE_END().

137 {
138  RunTest<4, armnn::DataType::Float32>(0,
139  {{"InputLayer", { 1, 2, 3,
140  4, 5, 6,
141  7, 8, 9,
142  10, 11, 12,
143  13, 14, 15,
144  16, 17, 18 }}},
145  {{"OutputLayer", { 7, 8, 9,
146  10, 11, 12,
147  13, 14, 15,
148  16, 17, 18,
149  7, 8, 9,
150  10, 11, 12,
151  13, 14, 15,
152  16, 17, 18,
153  7, 8, 9,
154  10, 11, 12,
155  1, 2, 3,
156  4, 5, 6 }}});
157 }