blob: 3f4a2edd0399e293fa35f7ec3e0a4773ea6a90f1 [file] [log] [blame]
Gunes Bayir3a1e1252023-01-03 21:26:09 +00001/*
2 * Copyright (c) 2023 Arm Limited.
3 *
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 SRC_DYNAMIC_FUSION_UTILS_UTILS
25#define SRC_DYNAMIC_FUSION_UTILS_UTILS
26
27#include "arm_compute/core/ITensorInfo.h"
Mohammed Suhail Munshia18d85c2023-01-03 10:16:16 +000028#include "arm_compute/dynamic_fusion/sketch/attributes/Pool2dAttributes.h"
Gunes Bayir3a1e1252023-01-03 21:26:09 +000029
30namespace arm_compute
31{
32namespace experimental
33{
34namespace dynamic_fusion
35{
SiCong Li5a2bc012023-01-12 12:54:49 +000036/** Tensor should have backing memory. @ref MemoryType
37 */
38inline bool is_alloc_tensor(const ITensorInfo *tensor_info)
Gunes Bayir3a1e1252023-01-03 21:26:09 +000039{
40 return tensor_info->id() > ITensorInfo::invalid_tensor_id;
41}
42
SiCong Li5a2bc012023-01-12 12:54:49 +000043/** Tensor should not have backing memory. @ref MemoryType
44 */
45inline bool is_noalloc_tensor(const ITensorInfo *tensor_info)
Gunes Bayir3a1e1252023-01-03 21:26:09 +000046{
47 return tensor_info->id() < ITensorInfo::invalid_tensor_id;
48}
49
SiCong Li5a2bc012023-01-12 12:54:49 +000050/** @ref ITensorInfo has valid id
51 */
Mohammed Suhail Munshia18d85c2023-01-03 10:16:16 +000052inline bool is_valid_tensor(const ITensorInfo *tensor_info)
Gunes Bayir3a1e1252023-01-03 21:26:09 +000053{
54 return tensor_info->has_valid_id();
55}
56
SiCong Li5a2bc012023-01-12 12:54:49 +000057/** @ref ITensorInfo has invalid id
58 */
Mohammed Suhail Munshia18d85c2023-01-03 10:16:16 +000059inline bool is_invalid_tensor(const ITensorInfo *tensor_info)
Gunes Bayir3a1e1252023-01-03 21:26:09 +000060{
61 return !is_valid_tensor(tensor_info);
62}
Mohammed Suhail Munshia18d85c2023-01-03 10:16:16 +000063
64/** Inline function to convert @ref Pool2dAttributes to PoolingLayerInfo
65*/
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010066inline PoolingLayerInfo convert_pool_attr_to_pool_info(const Pool2dAttributes &pool_attr,
67 bool mixed_precision = false,
68 DataLayout data_layout = DataLayout::NHWC)
Mohammed Suhail Munshia18d85c2023-01-03 10:16:16 +000069{
70 // Create PadStrideInfo
71 const Size2D stride = pool_attr.stride();
72 const Padding2D padding = pool_attr.pad();
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010073 const PadStrideInfo pad_stride(stride.x(), stride.y(), padding.left, padding.top,
74 arm_compute::DimensionRoundingType::FLOOR);
Mohammed Suhail Munshia18d85c2023-01-03 10:16:16 +000075
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010076 return PoolingLayerInfo(pool_attr.pool_type(), pool_attr.pool_size(), data_layout, pad_stride,
77 pool_attr.exclude_padding(), mixed_precision);
Mohammed Suhail Munshia18d85c2023-01-03 10:16:16 +000078}
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010079} // namespace dynamic_fusion
80} // namespace experimental
81} // namespace arm_compute
Gunes Bayir3a1e1252023-01-03 21:26:09 +000082
83#endif /* SRC_DYNAMIC_FUSION_UTILS_UTILS */