ArmNN
 21.02
TestPooling2d.cpp File Reference
#include <boost/test/unit_test.hpp>
#include "armnnCaffeParser/ICaffeParser.hpp"
#include "ParserPrototxtFixture.hpp"

Go to the source code of this file.

Functions

 BOOST_FIXTURE_TEST_CASE (GlobalPooling, GlobalPoolingFixture)
 

Function Documentation

◆ BOOST_FIXTURE_TEST_CASE()

BOOST_FIXTURE_TEST_CASE ( GlobalPooling  ,
GlobalPoolingFixture   
)

Definition at line 36 of file TestPooling2d.cpp.

References BOOST_AUTO_TEST_SUITE_END().

37 {
38  RunTest<4>(
39  {
40  1,3,
41  5,7,
42 
43  2,2,
44  2,2,
45 
46  4,4,
47  6,6
48  },
49  {
50  4, 2, 5
51  });
52 }