aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/experimental/Types.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/core/experimental/Types.h')
-rw-r--r--arm_compute/core/experimental/Types.h26
1 files changed, 3 insertions, 23 deletions
diff --git a/arm_compute/core/experimental/Types.h b/arm_compute/core/experimental/Types.h
index 2b5591872a..62dd6ff305 100644
--- a/arm_compute/core/experimental/Types.h
+++ b/arm_compute/core/experimental/Types.h
@@ -50,29 +50,9 @@ enum class TensorType
ACL_INT_2 = 52
};
-/** Input tensor aggregate */
-struct InputTensor
-{
- InputTensor(TensorType type, const ITensor *tensor)
- : type(type), tensor(tensor)
- {
- }
-
- TensorType type{ TensorType::ACL_UNKNOWN };
- const ITensor *tensor{ nullptr };
-};
-/** Output tensor aggregate */
-struct OutputTensor
-{
- OutputTensor(TensorType type, ITensor *tensor)
- : type(type), tensor(tensor)
- {
- }
-
- TensorType type{ TensorType::ACL_UNKNOWN };
- ITensor *tensor{ nullptr };
-};
-using OperatorTensor = OutputTensor;
+using InputTensorMap = std::map<TensorType, const ITensor *>;
+using OutputTensorMap = std::map<TensorType, ITensor *>;
+using OperatorTensorMap = OutputTensorMap;
namespace experimental
{