MCPcopy Create free account
hub / github.com/ARM-software/armnn / FillInt32Test

Function FillInt32Test

delegate/test/FillTest.cpp:87–101  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

85}
86
87void FillInt32Test(tflite::BuiltinOperator fillOperatorCode = tflite::BuiltinOperator_FILL,
88 int32_t fill = 2 )
89{
90 std::vector<int32_t> inputShape { 2 };
91 std::vector<int32_t> tensorShape { 2, 2 };
92 std::vector<int32_t> expectedOutputValues = { fill, fill,
93 fill, fill };
94
95 FillTest<int32_t>(fillOperatorCode,
96 ::tflite::TensorType_INT32,
97 inputShape,
98 tensorShape,
99 expectedOutputValues,
100 fill);
101}
102
103TEST_SUITE("FillTests")
104{

Callers 1

FillTest.cppFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected