24.02
|
#include <ParserPrototxtFixture.hpp>
Public Member Functions | |
ParserPrototxtFixture () | |
template<std::size_t NumOutputDimensions> | |
void | RunTest (const std::vector< float > &inputData, const std::vector< float > &expectedOutputData) |
Executes the network with the given input tensor and checks the result against the given output tensor. More... | |
template<std::size_t NumOutputDimensions> | |
void | RunComparisonTest (const std::map< std::string, std::vector< float >> &inputData, const std::map< std::string, std::vector< uint8_t >> &expectedOutputData) |
Executes the network with the given input tensor and checks the result against the given output tensor. More... | |
template<std::size_t NumOutputDimensions, typename T = float> | |
void | RunTest (const std::map< std::string, std::vector< float >> &inputData, const std::map< std::string, std::vector< T >> &expectedOutputData) |
Executes the network with the given input tensors and checks the results against the given output tensors. More... | |
void | SetupSingleInputSingleOutput (const std::string &inputName, const std::string &outputName) |
Parses and loads the network defined by the m_Prototext string. More... | |
void | SetupSingleInputSingleOutput (const armnn::TensorShape &inputTensorShape, const std::string &inputName, const std::string &outputName) |
void | SetupSingleInputSingleOutput (const armnn::TensorShape &inputTensorShape, const armnn::TensorShape &outputTensorShape, const std::string &inputName, const std::string &outputName) |
void | Setup (const std::map< std::string, armnn::TensorShape > &inputShapes, const std::vector< std::string > &requestedOutputs) |
void | Setup (const std::map< std::string, armnn::TensorShape > &inputShapes) |
void | Setup () |
armnn::IOptimizedNetworkPtr | SetupOptimizedNetwork (const std::map< std::string, armnn::TensorShape > &inputShapes, const std::vector< std::string > &requestedOutputs) |
Public Attributes | |
std::string | m_Prototext |
std::unique_ptr< TParser, void(*)(TParser *parser)> | m_Parser |
armnn::IRuntimePtr | m_Runtime |
armnn::NetworkId | m_NetworkIdentifier |
armnn::TensorShape | m_SingleOutputShape |
This will store the output shape so it don't need to be passed to the single-input-single-output overload of RunTest(). More... | |
std::string | m_SingleInputName |
If the single-input-single-output overload of Setup() is called, these will store the input and output name so they don't need to be passed to the single-input-single-output overload of RunTest(). More... | |
std::string | m_SingleOutputName |
Definition at line 24 of file ParserPrototxtFixture.hpp.
|
inline |
Definition at line 26 of file ParserPrototxtFixture.hpp.
void RunComparisonTest | ( | const std::map< std::string, std::vector< float >> & | inputData, |
const std::map< std::string, std::vector< uint8_t >> & | expectedOutputData | ||
) |
Executes the network with the given input tensor and checks the result against the given output tensor.
Calls RunTest with output type of uint8_t for checking comparison operators.
Definition at line 194 of file ParserPrototxtFixture.hpp.
void RunTest | ( | const std::map< std::string, std::vector< float >> & | inputData, |
const std::map< std::string, std::vector< T >> & | expectedOutputData | ||
) |
Executes the network with the given input tensors and checks the results against the given output tensors.
This overload supports multiple inputs and multiple outputs, identified by name.
Definition at line 203 of file ParserPrototxtFixture.hpp.
References CHECK_LOCATION.
void RunTest | ( | const std::vector< float > & | inputData, |
const std::vector< float > & | expectedOutputData | ||
) |
Executes the network with the given input tensor and checks the result against the given output tensor.
This overload assumes that the network has a single input and a single output.
Definition at line 186 of file ParserPrototxtFixture.hpp.
void Setup |
Definition at line 157 of file ParserPrototxtFixture.hpp.
References CHECK_LOCATION, armnn::CpuRef, armnn::Optimize(), and armnn::Success.
void Setup | ( | const std::map< std::string, armnn::TensorShape > & | inputShapes | ) |
Definition at line 140 of file ParserPrototxtFixture.hpp.
References CHECK_LOCATION, armnn::CpuRef, armnn::Optimize(), and armnn::Success.
void Setup | ( | const std::map< std::string, armnn::TensorShape > & | inputShapes, |
const std::vector< std::string > & | requestedOutputs | ||
) |
Definition at line 122 of file ParserPrototxtFixture.hpp.
References CHECK_LOCATION, armnn::CpuRef, armnn::Optimize(), and armnn::Success.
armnn::IOptimizedNetworkPtr SetupOptimizedNetwork | ( | const std::map< std::string, armnn::TensorShape > & | inputShapes, |
const std::vector< std::string > & | requestedOutputs | ||
) |
Definition at line 174 of file ParserPrototxtFixture.hpp.
References armnn::CpuRef, and armnn::Optimize().
void SetupSingleInputSingleOutput | ( | const armnn::TensorShape & | inputTensorShape, |
const armnn::TensorShape & | outputTensorShape, | ||
const std::string & | inputName, | ||
const std::string & | outputName | ||
) |
Definition at line 108 of file ParserPrototxtFixture.hpp.
void SetupSingleInputSingleOutput | ( | const armnn::TensorShape & | inputTensorShape, |
const std::string & | inputName, | ||
const std::string & | outputName | ||
) |
Definition at line 97 of file ParserPrototxtFixture.hpp.
void SetupSingleInputSingleOutput | ( | const std::string & | inputName, |
const std::string & | outputName | ||
) |
Parses and loads the network defined by the m_Prototext string.
Definition at line 87 of file ParserPrototxtFixture.hpp.
armnn::NetworkId m_NetworkIdentifier |
Definition at line 72 of file ParserPrototxtFixture.hpp.
std::unique_ptr<TParser, void(*)(TParser* parser)> m_Parser |
Definition at line 70 of file ParserPrototxtFixture.hpp.
std::string m_Prototext |
Definition at line 69 of file ParserPrototxtFixture.hpp.
armnn::IRuntimePtr m_Runtime |
Definition at line 71 of file ParserPrototxtFixture.hpp.
std::string m_SingleInputName |
If the single-input-single-output overload of Setup() is called, these will store the input and output name so they don't need to be passed to the single-input-single-output overload of RunTest().
Definition at line 77 of file ParserPrototxtFixture.hpp.
std::string m_SingleOutputName |
Definition at line 78 of file ParserPrototxtFixture.hpp.
armnn::TensorShape m_SingleOutputShape |
This will store the output shape so it don't need to be passed to the single-input-single-output overload of RunTest().
Definition at line 83 of file ParserPrototxtFixture.hpp.