ArmNN
 20.02
Pack.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 (ParsePack, SimplePackFixture)
 

Function Documentation

◆ BOOST_FIXTURE_TEST_CASE()

BOOST_FIXTURE_TEST_CASE ( ParsePack  ,
SimplePackFixture   
)

Definition at line 106 of file Pack.cpp.

References BOOST_AUTO_TEST_SUITE_END().

107 {
108  RunTest<4, armnn::DataType::Float32>(
109  0,
110  { {"inputTensor1", { 1, 2, 3,
111  4, 5, 6,
112 
113  7, 8, 9,
114  10, 11, 12,
115 
116  13, 14, 15,
117  16, 17, 18 } },
118  {"inputTensor2", { 19, 20, 21,
119  22, 23, 24,
120 
121  25, 26, 27,
122  28, 29, 30,
123 
124  31, 32, 33,
125  34, 35, 36 } } },
126  { {"outputTensor", { 1, 19,
127  2, 20,
128  3, 21,
129 
130  4, 22,
131  5, 23,
132  6, 24,
133 
134 
135  7, 25,
136  8, 26,
137  9, 27,
138 
139  10, 28,
140  11, 29,
141  12, 30,
142 
143 
144  13, 31,
145  14, 32,
146  15, 33,
147 
148  16, 34,
149  17, 35,
150  18, 36 } } });
151 }