ie_tensor_info.hpp
Go to the documentation of this file.
1 // Copyright (C) 2018-2019 Intel Corporation
2 // SPDX-License-Identifier: Apache-2.0
3 //
4 
5 /**
6  * @brief A header file for the TensorInfo structure
7  * @file ie_tensor_info.hpp
8  */
9 
10 #pragma once
11 
12 #include <string>
13 #include <memory>
14 #include <map>
15 
16 namespace InferenceEngine {
17 
18 struct TensorInfo {
19  using Ptr = std::shared_ptr<TensorInfo>;
20 
21  // memory layout BFYX, BXYF (enum)
22  // size
23  // precision
24  std::map<std::string, std::string> extraInfo;
25 };
26 
27 } // namespace InferenceEngine
Definition: ie_argmax_layer.hpp:11
Definition: ie_tensor_info.hpp:18