ArmNN
 21.02
DepthToSpace.cpp File Reference
#include <boost/test/unit_test.hpp>
#include "ParserFlatbuffersFixture.hpp"
#include "../TfLiteParser.hpp"
#include <string>
#include <iostream>

Go to the source code of this file.

Functions

 BOOST_FIXTURE_TEST_CASE (ParseDepthToSpace, SimpleDepthToSpaceFixture)
 

Function Documentation

◆ BOOST_FIXTURE_TEST_CASE()

BOOST_FIXTURE_TEST_CASE ( ParseDepthToSpace  ,
SimpleDepthToSpaceFixture   
)

Definition at line 84 of file DepthToSpace.cpp.

References BOOST_AUTO_TEST_SUITE_END().

85 {
86  RunTest<4, armnn::DataType::Float32>
87  (0,
88  {{ "inputTensor", { 1.f, 2.f, 3.f, 4.f,
89  5.f, 6.f, 7.f, 8.f,
90  9.f, 10.f, 11.f, 12.f,
91  13.f, 14.f, 15.f, 16.f }}},
92  {{ "outputTensor", { 1.f, 2.f, 5.f, 6.f,
93  3.f, 4.f, 7.f, 8.f,
94  9.f, 10.f, 13.f, 14.f,
95  11.f, 12.f, 15.f, 16.f }}});
96 }