blob: 4dc8ea959b4970cc4a2a037f444c71e07990ff48 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Matthew Bentham314d3e22023-06-23 10:53:52 +00002 * Copyright (c) 2016-2021, 2023 Arm Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +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#include "arm_compute/core/ITensor.h"
25
26#include "arm_compute/core/Error.h"
27#include "arm_compute/core/Helpers.h"
Matthew Bentham314d3e22023-06-23 10:53:52 +000028#include "arm_compute/core/Utils.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010029#include "arm_compute/core/Window.h"
30
31#include <cstring>
32#include <limits>
33
Georgios Pinitas0499dff2020-07-31 22:21:38 +010034namespace arm_compute
35{
Anthony Barbier6ff3b192017-09-04 18:44:23 +010036void ITensor::copy_from(const ITensor &src)
37{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010038 if (&src == this)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010039 {
40 return;
41 }
42
43 const ITensorInfo *src_info = src.info();
44 ITensorInfo *dst_info = this->info();
45
46 ARM_COMPUTE_ERROR_ON(src_info->num_dimensions() > dst_info->num_dimensions());
47 ARM_COMPUTE_ERROR_ON(src_info->num_channels() != dst_info->num_channels());
48 ARM_COMPUTE_ERROR_ON(src_info->element_size() != dst_info->element_size());
49
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010050 for (size_t d = 0; d < src_info->num_dimensions(); d++)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010051 {
52 ARM_COMPUTE_ERROR_ON(src_info->dimension(d) > dst_info->dimension(d));
53 }
54
55 // Copy information about valid region
56 dst_info->set_valid_region(src_info->valid_region());
57
58 Window win_src;
SiCong Li86b53332017-08-23 11:02:43 +010059 win_src.use_tensor_dimensions(src_info->tensor_shape(), Window::DimY);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010060 Window win_dst;
SiCong Li86b53332017-08-23 11:02:43 +010061 win_dst.use_tensor_dimensions(dst_info->tensor_shape(), Window::DimY);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010062
63 Iterator src_it(&src, win_src);
64 Iterator dst_it(this, win_dst);
65
Anthony Barbier5376c4c2018-07-13 09:48:58 +010066 const size_t line_size = src_info->element_size() * src_info->dimension(0);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010067
Georgios Pinitas0499dff2020-07-31 22:21:38 +010068 execute_window_loop(
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010069 win_src, [&](const Coordinates &) { memcpy(dst_it.ptr(), src_it.ptr(), line_size); }, src_it, dst_it);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010070}
71
giuros01edc21e42018-11-16 14:45:31 +000072#ifdef ARM_COMPUTE_ASSERTS_ENABLED
Anthony Barbier6ff3b192017-09-04 18:44:23 +010073void ITensor::print(std::ostream &s, IOFormatInfo io_fmt) const
74{
75 ARM_COMPUTE_ERROR_ON(this->buffer() == nullptr);
76
Ioan-Cristian Szabo57120912017-12-12 09:56:21 +000077 const DataType dt = this->info()->data_type();
78 const size_t slices2D = this->info()->tensor_shape().total_size_upper(2);
79 const Strides strides = this->info()->strides_in_bytes();
80 const PaddingSize padding = this->info()->padding();
81 const size_t num_channels = this->info()->num_channels();
Michalis Spyrou53860dd2019-07-01 14:20:56 +010082 std::ios stream_status(nullptr);
83 stream_status.copyfmt(s);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010084
85 // Set precision
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010086 if (is_data_type_float(dt) && (io_fmt.precision_type != IOFormatInfo::PrecisionType::Default))
Anthony Barbier6ff3b192017-09-04 18:44:23 +010087 {
88 int precision = io_fmt.precision;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010089 if (io_fmt.precision_type == IOFormatInfo::PrecisionType::Full)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010090 {
91 precision = std::numeric_limits<float>().max_digits10;
92 }
93 s.precision(precision);
94 }
95
96 // Define region to print
97 size_t print_width = 0;
98 size_t print_height = 0;
99 int start_offset = 0;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100100 switch (io_fmt.print_region)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100101 {
102 case IOFormatInfo::PrintRegion::NoPadding:
103 print_width = this->info()->dimension(0);
104 print_height = this->info()->dimension(1);
105 start_offset = this->info()->offset_first_element_in_bytes();
106 break;
107 case IOFormatInfo::PrintRegion::ValidRegion:
108 print_width = this->info()->valid_region().shape.x();
109 print_height = this->info()->valid_region().shape.y();
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100110 start_offset = this->info()->offset_element_in_bytes(
111 Coordinates(this->info()->valid_region().anchor.x(), this->info()->valid_region().anchor.y()));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100112 break;
113 case IOFormatInfo::PrintRegion::Full:
114 print_width = padding.left + this->info()->dimension(0) + padding.right;
115 print_height = padding.top + this->info()->dimension(1) + padding.bottom;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100116 start_offset = static_cast<int>(this->info()->offset_first_element_in_bytes()) - padding.top * strides[1] -
117 padding.left * strides[0];
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100118 break;
119 default:
120 break;
121 }
122
Ioan-Cristian Szabo57120912017-12-12 09:56:21 +0000123 print_width = print_width * num_channels;
124
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100125 // Set pointer to start
126 const uint8_t *ptr = this->buffer() + start_offset;
127
128 // Start printing
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100129 for (size_t i = 0; i < slices2D; ++i)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100130 {
131 // Find max_width of elements in slice to align columns
132 int max_element_width = 0;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100133 if (io_fmt.align_columns)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100134 {
135 size_t offset = i * strides[2];
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100136 for (size_t h = 0; h < print_height; ++h)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100137 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100138 max_element_width = std::max<int>(
139 max_element_width, max_consecutive_elements_display_width(s, dt, ptr + offset, print_width));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100140 offset += strides[1];
141 }
142 }
143
144 // Print slice
145 {
146 size_t offset = i * strides[2];
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100147 for (size_t h = 0; h < print_height; ++h)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100148 {
149 print_consecutive_elements(s, dt, ptr + offset, print_width, max_element_width, io_fmt.element_delim);
150 offset += strides[1];
151 s << io_fmt.row_delim;
152 }
153 s << io_fmt.row_delim;
154 }
155 }
Michalis Spyrou53860dd2019-07-01 14:20:56 +0100156
157 // Restore output stream flags
158 s.copyfmt(stream_status);
SiCong Li86b53332017-08-23 11:02:43 +0100159}
giuros01edc21e42018-11-16 14:45:31 +0000160#endif /* ARM_COMPUTE_ASSERTS_ENABLED */
Georgios Pinitas1562be32018-03-08 19:09:19 +0000161
162bool ITensor::is_used() const
163{
164 return _is_used;
165}
166
167void ITensor::mark_as_unused() const
168{
169 _is_used = false;
170}
Georgios Pinitas45fbf9f2021-08-13 12:07:59 +0100171
172void ITensor::mark_as_used() const
173{
174 _is_used = true;
175}
Matthew Bentham314d3e22023-06-23 10:53:52 +0000176} // namespace arm_compute