Home
last modified time | relevance | path

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

/aosp_15_r20/external/armnn/src/armnnTfLiteParser/test/
H A 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");
/aosp_15_r20/external/armnn/python/pyarmnn/test/
H A 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)
H A Dtest_runtime.py24 input_names = parser.GetSubgraphInputTensorNames(graph_id)
/aosp_15_r20/external/armnn/python/pyarmnn/src/pyarmnn/swig/
H A Darmnn_tfliteparser.i76 ") GetSubgraphInputTensorNames;
77 std::vector<std::string> GetSubgraphInputTensorNames(size_t subgraphId);
/aosp_15_r20/external/armnn/python/pyarmnn/examples/image_classification/
H A Dtflite_mobilenetv1_quantized.py36 input_names = parser.GetSubgraphInputTensorNames(graph_id)
/aosp_15_r20/external/armnn/include/armnnTfLiteParser/
H A DITfLiteParser.hpp65 std::vector<std::string> GetSubgraphInputTensorNames(size_t subgraphId) const;
/aosp_15_r20/external/armnn/python/pyarmnn/examples/common/
H A Dnetwork_executor.py80 input_names = parser.GetSubgraphInputTensorNames(graph_id)
/aosp_15_r20/external/armnn/samples/SpeechRecognition/
H A DReadme.md179 … be used to extract the input information for the network. By calling `GetSubgraphInputTensorNames`
183 std::vector<std::string> inputNames = parser->GetSubgraphInputTensorNames(0);
/aosp_15_r20/external/armnn/samples/KeywordSpotting/
H A DReadme.md206 … be used to extract the input information for the network. By calling `GetSubgraphInputTensorNames`
211 std::vector<std::string> inputNames = parser->GetSubgraphInputTensorNames(0);
/aosp_15_r20/external/armnn/samples/common/include/ArmnnUtils/
H A DArmnnNetworkExecutor.hpp104 std::vector<std::string> inputNames = parser->GetSubgraphInputTensorNames(0); in ArmnnNetworkExecutor()
/aosp_15_r20/external/armnn/tests/TfLiteBenchmark-Armnn/
H A DTfLiteBenchmark-Armnn.cpp153 … std::vector<std::string> inputTensorNames = armnnparser->GetSubgraphInputTensorNames(subgraphId); in main()
/aosp_15_r20/external/armnn/src/armnnTfLiteParser/
H A DTfLiteParser.hpp64 std::vector<std::string> GetSubgraphInputTensorNames(size_t subgraphId) const;
H A 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
/aosp_15_r20/external/armnn/python/pyarmnn/examples/keyword_spotting/
H A DREADME.md119 Parsers extract the input information for the network. The `GetSubgraphInputTensorNames()` function…
/aosp_15_r20/external/armnn/python/pyarmnn/examples/speech_recognition/
H A DREADME.md101 Parsers extract the input information for the network. The `GetSubgraphInputTensorNames()` function…
/aosp_15_r20/external/armnn/samples/ObjectDetection/
H A DReadme.md470 … be used to extract the input information for the network. By calling `GetSubgraphInputTensorNames`
474 std::vector<std::string> inputNames = parser->GetSubgraphInputTensorNames(0);
/aosp_15_r20/external/armnn/python/pyarmnn/examples/object_detection/
H A DREADME.md258 … to extract the input information for the network. By calling `GetSubgraphInputTensorNames` we ext…