From c577f2c6a3b4ddb6ba87a882723c53a248afbeba Mon Sep 17 00:00:00 2001 From: telsoa01 Date: Fri, 31 Aug 2018 09:22:23 +0100 Subject: Release 18.08 --- include/armnnCaffeParser/ICaffeParser.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'include/armnnCaffeParser/ICaffeParser.hpp') diff --git a/include/armnnCaffeParser/ICaffeParser.hpp b/include/armnnCaffeParser/ICaffeParser.hpp index 55fc85052b..0f23a658b2 100644 --- a/include/armnnCaffeParser/ICaffeParser.hpp +++ b/include/armnnCaffeParser/ICaffeParser.hpp @@ -28,28 +28,28 @@ public: static ICaffeParserPtr Create(); static void Destroy(ICaffeParser* 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& inputShapes, const std::vector& 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& inputShapes, const std::vector& 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/testin.g virtual armnn::INetworkPtr CreateNetworkFromString( const char* protoText, const std::map& inputShapes, const std::vector& 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: -- cgit v1.2.1