/aosp_15_r20/external/armnn/src/armnnTfLiteParser/test/ |
H A D | InputOutputTensorNames.cpp | 27 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 D | test_tflite_parser.py | 59 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 D | test_runtime.py | 24 input_names = parser.GetSubgraphInputTensorNames(graph_id)
|
/aosp_15_r20/external/armnn/python/pyarmnn/src/pyarmnn/swig/ |
H A D | armnn_tfliteparser.i | 76 ") GetSubgraphInputTensorNames; 77 std::vector<std::string> GetSubgraphInputTensorNames(size_t subgraphId);
|
/aosp_15_r20/external/armnn/python/pyarmnn/examples/image_classification/ |
H A D | tflite_mobilenetv1_quantized.py | 36 input_names = parser.GetSubgraphInputTensorNames(graph_id)
|
/aosp_15_r20/external/armnn/include/armnnTfLiteParser/ |
H A D | ITfLiteParser.hpp | 65 std::vector<std::string> GetSubgraphInputTensorNames(size_t subgraphId) const;
|
/aosp_15_r20/external/armnn/python/pyarmnn/examples/common/ |
H A D | network_executor.py | 80 input_names = parser.GetSubgraphInputTensorNames(graph_id)
|
/aosp_15_r20/external/armnn/samples/SpeechRecognition/ |
H A D | Readme.md | 179 … 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 D | Readme.md | 206 … 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 D | ArmnnNetworkExecutor.hpp | 104 std::vector<std::string> inputNames = parser->GetSubgraphInputTensorNames(0); in ArmnnNetworkExecutor()
|
/aosp_15_r20/external/armnn/tests/TfLiteBenchmark-Armnn/ |
H A D | TfLiteBenchmark-Armnn.cpp | 153 … std::vector<std::string> inputTensorNames = armnnparser->GetSubgraphInputTensorNames(subgraphId); in main()
|
/aosp_15_r20/external/armnn/src/armnnTfLiteParser/ |
H A D | TfLiteParser.hpp | 64 std::vector<std::string> GetSubgraphInputTensorNames(size_t subgraphId) const;
|
H A D | TfLiteParser.cpp | 101 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 D | README.md | 119 Parsers extract the input information for the network. The `GetSubgraphInputTensorNames()` function…
|
/aosp_15_r20/external/armnn/python/pyarmnn/examples/speech_recognition/ |
H A D | README.md | 101 Parsers extract the input information for the network. The `GetSubgraphInputTensorNames()` function…
|
/aosp_15_r20/external/armnn/samples/ObjectDetection/ |
H A D | Readme.md | 470 … 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 D | README.md | 258 … to extract the input information for the network. By calling `GetSubgraphInputTensorNames` we ext…
|