Home
last modified time | relevance | path

Searched refs:m_CxxResult (Results 1 – 2 of 2) sorted by relevance

/external/armnn/tests/ExecuteNetwork/
DExecuteNetworkProgramOptions.cpp501 m_CxxResult = m_CxxOptions.parse(ac, av); in ParseOptions()
503 if (m_CxxResult.count("help") || ac <= 1) in ParseOptions()
509 CheckRequiredOptions(m_CxxResult); in ParseOptions()
510 CheckOptionDependencies(m_CxxResult); in ParseOptions()
511 CheckForDeprecatedOptions(m_CxxResult); in ParseOptions()
521 auto computeDevices = GetOptionValue<std::vector<std::string>>("compute", m_CxxResult); in ParseOptions()
524 ParseStringList(GetOptionValue<std::string>("input-name", m_CxxResult), ","); in ParseOptions()
526 ParseStringList(GetOptionValue<std::string>("input-tensor-data", m_CxxResult), ","); in ParseOptions()
528 ParseStringList(GetOptionValue<std::string>("output-name", m_CxxResult), ","); in ParseOptions()
530 ParseStringList(GetOptionValue<std::string>("write-outputs-to-file", m_CxxResult), ","); in ParseOptions()
[all …]
DExecuteNetworkProgramOptions.hpp42 cxxopts::ParseResult m_CxxResult; member