| 282 | } |
| 283 | |
| 284 | std::string ReadOptionalNodeStringAttribute(const onnx::NodeProto& node, const std::string& name) |
| 285 | { |
| 286 | std::string attribValue = ""; |
| 287 | ReadOptionalNodeAttributeImpl(node, name, onnx::AttributeProto::STRING, |
| 288 | [&attribValue](const onnx::AttributeProto& attrValue) |
| 289 | { |
| 290 | attribValue = attrValue.s(); |
| 291 | }); |
| 292 | return attribValue; |
| 293 | } |
| 294 | |
| 295 | armnn::TensorInfo ToTensorInfo(const std::string& name, std::vector<unsigned int>& shape, int data_type) |
| 296 | { |
no test coverage detected