Home
last modified time | relevance | path

Searched refs:tensorName (Results 1 – 14 of 14) sorted by relevance

/external/armnn/src/armnnSerializer/test/
DSerializerTestUtils.cpp78 void LayerVerifierBase::VerifyConstTensors(const std::string& tensorName, in VerifyConstTensors() argument
84 CHECK_MESSAGE(actualPtr == nullptr, (tensorName + " should not exist")); in VerifyConstTensors()
88 CHECK_MESSAGE(actualPtr != nullptr, (tensorName + " should have been set")); in VerifyConstTensors()
95 (tensorName + " shapes don't match")); in VerifyConstTensors()
98 (tensorName + " data types don't match")); in VerifyConstTensors()
101 (tensorName + " (GetNumBytes) data sizes do not match")); in VerifyConstTensors()
116 CHECK_MESSAGE(same, (tensorName + " data does not match")); in VerifyConstTensors()
DSerializerTestUtils.hpp40 void VerifyConstTensors(const std::string& tensorName,
/external/armnn/src/backends/tosaCommon/test/
DTosaTestUtils.hpp210 std::basic_string<char> tensorName = basicBlock->GetTensors()[i]->GetName(); in AssertTosaOneToOneMappingBasicBlock() local
215 CHECK(tensorName == operatorInputName); in AssertTosaOneToOneMappingBasicBlock()
223 std::basic_string<char> tensorName = basicBlock->GetTensors()[numInputs + i]->GetName(); in AssertTosaOneToOneMappingBasicBlock() local
232 CHECK(tensorName == operatorOutputName); in AssertTosaOneToOneMappingBasicBlock()
/external/armnn/shim/sl/canonical/
DCanonicalUtils.cpp219 const std::string& tensorName, in DumpTensor() argument
224 const fs::path fileName = dumpPath / (requestName + "_" + tensorName + ".dump"); in DumpTensor()
342 const std::string& tensorName,
347 const std::string& tensorName,
DCanonicalUtils.hpp61 const std::string& tensorName,
/external/armnn/src/armnnOnnxParser/
DOnnxParser.hpp123 void CreateConstantLayer(const std::string& tensorName, const std::string& layerName);
124 void CreateInt64ConstantLayer(const std::string& tensorName, const std::string& layerName);
DOnnxParser.cpp109 std::string tensorName, in CheckValidDataType() argument
120 tensorName, in CheckValidDataType()
1425 void OnnxParserImpl::CreateConstantLayer(const std::string& tensorName, const std::string& layerNam… in CreateConstantLayer() argument
1427 auto armnnTensor = CreateConstTensor(tensorName); in CreateConstantLayer()
1430 RegisterOutputSlots(layer, {tensorName}); in CreateConstantLayer()
1433 void OnnxParserImpl::CreateInt64ConstantLayer(const std::string& tensorName, const std::string& lay… in CreateInt64ConstantLayer() argument
1435 auto armnnTensor = CreateInt64ConstTensor(tensorName); in CreateInt64ConstantLayer()
1438 RegisterOutputSlots(layer, {tensorName}); in CreateInt64ConstantLayer()
/external/android-nn-driver/
DUtils.cpp339 const std::string& tensorName, in DumpTensor() argument
344 const fs::path fileName = dumpPath / (requestName + "_" + tensorName + ".dump"); in DumpTensor()
463 const std::string& tensorName,
468 const std::string& tensorName,
DUtils.hpp134 const std::string& tensorName,
/external/armnn/src/backends/backendsCommon/
DWorkloadData.cpp113 std::string const& tensorName) in ValidateTensorNumElements() argument
119 tensorName + " tensor."); in ValidateTensorNumElements()
125 const std::string& descName, std::string const& tensorName) in ValidateTensorDataType() argument
130 GetDataTypeName(tensor.GetDataType()) + " for " + tensorName + " tensor."); in ValidateTensorDataType()
134 …tizedDataType(const TensorInfo& tensor, const std::string& descName, const std::string& tensorName) in ValidPerAxisQuantizedDataType() argument
140 GetDataTypeName(tensor.GetDataType()) + " for " + tensorName + " tensor."); in ValidPerAxisQuantizedDataType()
355 const std::string& tensorName) in ValidatePerAxisQuantizationDimension() argument
361 "not set on tensor {1}.", descName, tensorName)); in ValidatePerAxisQuantizationDimension()
367 const std::string& tensorName) in ValidatePerAxisQuantizationOffset() argument
374 descName, tensorName, quantizationOffset)); in ValidatePerAxisQuantizationOffset()
[all …]
/external/tensorflow/tensorflow/lite/objc/sources/
DTFLSignatureRunner.mm335 NSString *tensorName = TFLTensorNameFromCTensor(tensor);
336 if (!tensorName) {
353 name:tensorName
/external/armnn/include/armnn/backends/
DWorkloadData.hpp35 std::string const& tensorName) const;
40 std::string const& tensorName) const;
/external/armnn/src/backends/backendsCommon/test/layerTests/
DTransposeConvolution2dTestImpl.cpp36 void VerifyInputTensorData(const TensorData<T>& data, const std::string& tensorName) in VerifyInputTensorData() argument
40 … throw armnn::InvalidArgumentException("Size of data too small for " + tensorName + ": expected " + in VerifyInputTensorData()
/external/armnn/src/backends/reference/
DRefLayerSupport.cpp51 std::string& tensorName) in CreateIncorrectDimensionsErrorMsg() argument
54 … " " + std::to_string(actual) + " dimensions instead, for the '" + tensorName + "' tensor."; in CreateIncorrectDimensionsErrorMsg()