Publishing 2019 R3 content
[platform/upstream/dldt.git] / inference-engine / include / ie_tensor_info.hpp
index ccbf3e8..69d092a 100644 (file)
 
 namespace InferenceEngine {
 
+/**
+* @struct TensorInfo
+* @brief This structure describes tensor information
+*/
 struct TensorInfo {
+    /**
+    * @brief A shared pointer to the TensorInfo object
+    */
     using Ptr = std::shared_ptr<TensorInfo>;
 
-    // memory layout BFYX, BXYF (enum)
-    // size
-    // precision
+    /**
+    * @brief A map of extra info:
+    * - memory layout BFYX, BXYF (enum)
+    * - size
+    * - precision
+    */
     std::map<std::string, std::string> extraInfo;
 };