Home
last modified time | relevance | path

Searched refs:GetSubgraphInputTensorNames (Results 1 – 17 of 17) sorted by relevance

/external/armnn/src/armnnTfLiteParser/test/
DInputOutputTensorNames.cpp27 CHECK(m_Parser->GetSubgraphInputTensorNames(0).size() == 0);
133 CHECK_EQ(m_Parser->GetSubgraphInputTensorNames(0).size(), 1u);
135 CHECK_EQ(m_Parser->GetSubgraphInputTensorNames(0)[0], "In");
144 CHECK_THROWS_AS(m_Parser->GetSubgraphInputTensorNames(1), armnn::ParseException);
190 CHECK_EQ(m_Parser->GetSubgraphInputTensorNames(0).size(), 2u);
192 CHECK_EQ(m_Parser->GetSubgraphInputTensorNames(0)[0], "In0");
193 CHECK_EQ(m_Parser->GetSubgraphInputTensorNames(0)[1], "In1");
/external/armnn/python/pyarmnn/test/
Dtest_tflite_parser.py59 input_names = parser.GetSubgraphInputTensorNames(graph_id)
85 input_names = parser.GetSubgraphInputTensorNames(graph_id)
119 input_names = parser.GetSubgraphInputTensorNames(graph_id)
152 input_names = parser.GetSubgraphInputTensorNames(graph_id)
Dtest_runtime.py24 input_names = parser.GetSubgraphInputTensorNames(graph_id)
/external/armnn/python/pyarmnn/src/pyarmnn/swig/
Darmnn_tfliteparser.i76 ") GetSubgraphInputTensorNames;
77 std::vector<std::string> GetSubgraphInputTensorNames(size_t subgraphId);
/external/armnn/python/pyarmnn/examples/image_classification/
Dtflite_mobilenetv1_quantized.py36 input_names = parser.GetSubgraphInputTensorNames(graph_id)
/external/armnn/include/armnnTfLiteParser/
DITfLiteParser.hpp65 std::vector<std::string> GetSubgraphInputTensorNames(size_t subgraphId) const;
/external/armnn/python/pyarmnn/examples/common/
Dnetwork_executor.py80 input_names = parser.GetSubgraphInputTensorNames(graph_id)
/external/armnn/samples/common/include/ArmnnUtils/
DArmnnNetworkExecutor.hpp104 std::vector<std::string> inputNames = parser->GetSubgraphInputTensorNames(0); in ArmnnNetworkExecutor()
/external/armnn/tests/TfLiteBenchmark-Armnn/
DTfLiteBenchmark-Armnn.cpp153 … std::vector<std::string> inputTensorNames = armnnparser->GetSubgraphInputTensorNames(subgraphId); in main()
/external/armnn/samples/SpeechRecognition/
DReadme.md179 … be used to extract the input information for the network. By calling `GetSubgraphInputTensorNames`
183 std::vector<std::string> inputNames = parser->GetSubgraphInputTensorNames(0);
/external/armnn/samples/KeywordSpotting/
DReadme.md206 … be used to extract the input information for the network. By calling `GetSubgraphInputTensorNames`
211 std::vector<std::string> inputNames = parser->GetSubgraphInputTensorNames(0);
/external/armnn/src/armnnTfLiteParser/
DTfLiteParser.hpp64 std::vector<std::string> GetSubgraphInputTensorNames(size_t subgraphId) const;
DTfLiteParser.cpp101 std::vector<std::string> ITfLiteParser::GetSubgraphInputTensorNames(size_t subgraphId) const in GetSubgraphInputTensorNames() function in armnnTfLiteParser::ITfLiteParser
103 return pTfLiteParserImpl->GetSubgraphInputTensorNames(subgraphId); in GetSubgraphInputTensorNames()
5334 std::vector<std::string> TfLiteParserImpl::GetSubgraphInputTensorNames(size_t subgraphId) const in GetSubgraphInputTensorNames() function in armnnTfLiteParser::TfLiteParserImpl
/external/armnn/python/pyarmnn/examples/keyword_spotting/
DREADME.md119 Parsers extract the input information for the network. The `GetSubgraphInputTensorNames()` function…
/external/armnn/python/pyarmnn/examples/speech_recognition/
DREADME.md101 Parsers extract the input information for the network. The `GetSubgraphInputTensorNames()` function…
/external/armnn/samples/ObjectDetection/
DReadme.md470 … be used to extract the input information for the network. By calling `GetSubgraphInputTensorNames`
474 std::vector<std::string> inputNames = parser->GetSubgraphInputTensorNames(0);
/external/armnn/python/pyarmnn/examples/object_detection/
DREADME.md258 … to extract the input information for the network. By calling `GetSubgraphInputTensorNames` we ext…