blob: f456c50769ed0699284b832b58f804fe75981921 [file] [log] [blame]
Georgios Pinitas0499dff2020-07-31 22:21:38 +01001/*
Sang-Hoon Park72291822021-01-14 14:52:03 +00002 * Copyright (c) 2020-2021 Arm Limited.
Georgios Pinitas0499dff2020-07-31 22:21:38 +01003 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24#ifndef ARM_COMPUTE_ITENSORPACK_H
25#define ARM_COMPUTE_ITENSORPACK_H
26
Georgios Pinitas856f66e2021-04-22 21:13:21 +010027#include "arm_compute/core/experimental/Types.h"
28
Sang-Hoon Park72291822021-01-14 14:52:03 +000029#include <cstddef>
Georgios Pinitas0499dff2020-07-31 22:21:38 +010030#include <cstdint>
Georgios Pinitas856f66e2021-04-22 21:13:21 +010031#include <unordered_map>
Georgios Pinitas0499dff2020-07-31 22:21:38 +010032
33namespace arm_compute
34{
35// Forward declaration
36class ITensor;
37
38/** Tensor packing service */
39class ITensorPack
40{
Georgios Pinitas856f66e2021-04-22 21:13:21 +010041public:
Georgios Pinitas0499dff2020-07-31 22:21:38 +010042 struct PackElement
43 {
44 PackElement() = default;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010045 PackElement(int id, ITensor *tensor) : id(id), tensor(tensor), ctensor(nullptr)
Georgios Pinitas0499dff2020-07-31 22:21:38 +010046 {
47 }
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010048 PackElement(int id, const ITensor *ctensor) : id(id), tensor(nullptr), ctensor(ctensor)
Georgios Pinitas0499dff2020-07-31 22:21:38 +010049 {
50 }
51
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010052 int id{-1};
53 ITensor *tensor{nullptr};
54 const ITensor *ctensor{nullptr};
Georgios Pinitas0499dff2020-07-31 22:21:38 +010055 };
56
57public:
58 /** Default Constructor */
59 ITensorPack() = default;
Georgios Pinitas856f66e2021-04-22 21:13:21 +010060 /** Initializer list Constructor */
61 ITensorPack(std::initializer_list<PackElement> l);
Georgios Pinitas0499dff2020-07-31 22:21:38 +010062 /** Add tensor to the pack
63 *
64 * @param[in] id ID/type of the tensor to add
65 * @param[in] tensor Tensor to add
66 */
67 void add_tensor(int id, ITensor *tensor);
68
69 /** Add const tensor to the pack
70 *
71 * @param[in] id ID/type of the tensor to add
72 * @param[in] tensor Tensor to add
73 */
74 void add_tensor(int id, const ITensor *tensor);
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +000075
76 /** Add const tensor to the pack
77 *
78 * @param[in] id ID/type of the tensor to add
79 * @param[in] tensor Tensor to add
80 */
81 void add_const_tensor(int id, const ITensor *tensor);
Georgios Pinitas0499dff2020-07-31 22:21:38 +010082 /** Get tensor of a given id from the pac
83 *
84 * @param[in] id ID of tensor to extract
85 *
86 * @return The pointer to the tensor if exist and is non-const else nullptr
87 */
88 ITensor *get_tensor(int id);
89 /** Get constant tensor of a given id
90 *
91 * @param[in] id ID of tensor to extract
92 *
93 * @return The pointer to the tensor if exist and is const else nullptr
94 */
95 const ITensor *get_const_tensor(int id) const;
Sang-Hoon Park8b83d462021-05-25 13:12:47 +010096 /** Remove the tensor stored with the given id
97 *
98 * @param[in] id ID of tensor to remove
99 */
100 void remove_tensor(int id);
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100101 /** Pack size accessor
102 *
103 * @return Number of tensors registered to the pack
104 */
105 size_t size() const;
106 /** Checks if pack is empty
107 *
108 * @return True if empty else false
109 */
110 bool empty() const;
111
112private:
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100113 std::unordered_map<int, PackElement> _pack{}; /**< Container with the packed tensors */
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100114};
115} // namespace arm_compute
116#endif /*ARM_COMPUTE_ITENSORPACK_H */