aboutsummaryrefslogtreecommitdiff
path: root/include/armnnTfParser
diff options
context:
space:
mode:
authortelsoa01 <telmo.soares@arm.com>2018-08-31 09:22:23 +0100
committertelsoa01 <telmo.soares@arm.com>2018-08-31 09:22:23 +0100
commitc577f2c6a3b4ddb6ba87a882723c53a248afbeba (patch)
treebd7d4c148df27f8be6649d313efb24f536b7cf34 /include/armnnTfParser
parent4c7098bfeab1ffe1cdc77f6c15548d3e73274746 (diff)
downloadarmnn-c577f2c6a3b4ddb6ba87a882723c53a248afbeba.tar.gz
Release 18.08
Diffstat (limited to 'include/armnnTfParser')
-rw-r--r--include/armnnTfParser/ITfParser.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/armnnTfParser/ITfParser.hpp b/include/armnnTfParser/ITfParser.hpp
index a6f56c8a19..ab480b83e0 100644
--- a/include/armnnTfParser/ITfParser.hpp
+++ b/include/armnnTfParser/ITfParser.hpp
@@ -21,7 +21,7 @@ using BindingPointInfo = std::pair<armnn::LayerBindingId, armnn::TensorInfo>;
class ITfParser;
using ITfParserPtr = std::unique_ptr<ITfParser, void(*)(ITfParser* parser)>;
-/// parses a directed acyclic graph from a tensorflow protobuf file
+/// Parses a directed acyclic graph from a tensorflow protobuf file.
class ITfParser
{
public:
@@ -29,28 +29,28 @@ public:
static ITfParserPtr Create();
static void Destroy(ITfParser* parser);
- /// Create the network from a protobuf text file on disk
+ /// Create the network from a protobuf text file on the disk.
virtual armnn::INetworkPtr CreateNetworkFromTextFile(
const char* graphFile,
const std::map<std::string, armnn::TensorShape>& inputShapes,
const std::vector<std::string>& requestedOutputs) = 0;
- /// Create the network from a protobuf binary file on disk
+ /// Create the network from a protobuf binary file on the disk.
virtual armnn::INetworkPtr CreateNetworkFromBinaryFile(
const char* graphFile,
const std::map<std::string, armnn::TensorShape>& inputShapes,
const std::vector<std::string>& requestedOutputs) = 0;
- /// Create the network directly from protobuf text in a string. Useful for debugging/testing
+ /// Create the network directly from protobuf text in a string. Useful for debugging/testing.
virtual armnn::INetworkPtr CreateNetworkFromString(
const char* protoText,
const std::map<std::string, armnn::TensorShape>& inputShapes,
const std::vector<std::string>& requestedOutputs) = 0;
- /// Retrieve binding info (layer id and tensor info) for the network input identified by the given layer name
+ /// Retrieve binding info (layer id and tensor info) for the network input identified by the given layer name.
virtual BindingPointInfo GetNetworkInputBindingInfo(const std::string& name) const = 0;
- /// Retrieve binding info (layer id and tensor info) for the network output identified by the given layer name
+ /// Retrieve binding info (layer id and tensor info) for the network output identified by the given layer name.
virtual BindingPointInfo GetNetworkOutputBindingInfo(const std::string& name) const = 0;
protected: