forked from PaddlePaddle/Paddle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathATen_resize_test.cc
More file actions
196 lines (150 loc) · 4.94 KB
/
ATen_resize_test.cc
File metadata and controls
196 lines (150 loc) · 4.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
// Copyright (c) 2026 PaddlePaddle Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include <ATen/Functions.h>
#include <ATen/core/TensorBody.h>
#include <ATen/ops/resize.h>
#include <ATen/ops/tensor.h>
#include <c10/core/ScalarType.h>
#include <c10/core/TensorOptions.h>
#include "ATen/ATen.h"
#include "gtest/gtest.h"
#include "torch/all.h"
// ======================== resize_ tests ========================
// Note: compat resize_ uses reshape when numel is unchanged, and falls back to
// set_ for storage-changing cases so repeated resize_ calls remain stable.
TEST(TensorResizeTest, ResizeBasic) {
// Create a 2x3 tensor
at::Tensor t = at::arange(6, at::kFloat).reshape({2, 3});
// Resize to 3x2 (same 6 elements)
t.resize_({3, 2});
// Verify the shape
ASSERT_EQ(t.sizes()[0], 3);
ASSERT_EQ(t.sizes()[1], 2);
}
TEST(TensorResizeTest, ResizeFlatten) {
// Create a 2x3 tensor
at::Tensor t = at::arange(6, at::kFloat).reshape({2, 3});
// Resize to flat 1D (same 6 elements)
t.resize_({6});
ASSERT_EQ(t.sizes()[0], 6);
}
TEST(TensorResizeTest, ResizeSameSize) {
// Create a tensor
at::Tensor t = at::arange(6, at::kFloat).reshape({2, 3});
// Resize to same size
t.resize_({2, 3});
ASSERT_EQ(t.sizes()[0], 2);
ASSERT_EQ(t.sizes()[1], 3);
}
TEST(TensorResizeTest, ResizeTo1D) {
// Create a 2x3 tensor
at::Tensor t = at::arange(6, at::kFloat).reshape({2, 3});
// Resize to 1D (6 elements)
t.resize_({6});
ASSERT_EQ(t.sizes()[0], 6);
}
TEST(TensorResizeTest, ResizeTo2D) {
// Create a 6-element tensor
at::Tensor t = at::arange(6, at::kFloat);
// Resize to 2x3 (6 elements)
t.resize_({2, 3});
ASSERT_EQ(t.sizes()[0], 2);
ASSERT_EQ(t.sizes()[1], 3);
}
TEST(TensorResizeTest, ResizeSquare) {
// Create a 2x3 tensor
at::Tensor t = at::arange(6, at::kFloat).reshape({2, 3});
// Resize to 1x6 (6 elements)
t.resize_({1, 6});
ASSERT_EQ(t.sizes()[0], 1);
ASSERT_EQ(t.sizes()[1], 6);
}
TEST(TensorResizeTest, ResizePreservesData) {
// Create tensor with known values
at::Tensor t = at::arange(6, at::kFloat).reshape({2, 3});
// Resize to 3x2
t.resize_({3, 2});
// Verify data is preserved (in row-major order)
float* data = t.data_ptr<float>();
ASSERT_FLOAT_EQ(data[0], 0.0f);
ASSERT_FLOAT_EQ(data[1], 1.0f);
ASSERT_FLOAT_EQ(data[2], 2.0f);
ASSERT_FLOAT_EQ(data[3], 3.0f);
ASSERT_FLOAT_EQ(data[4], 4.0f);
ASSERT_FLOAT_EQ(data[5], 5.0f);
}
TEST(TensorResizeTest, ResizeShrinkDifferentNumel) {
at::Tensor t = at::arange(24, at::kFloat).reshape({2, 3, 4});
t.resize_({4, 5});
ASSERT_EQ(t.sizes()[0], 4);
ASSERT_EQ(t.sizes()[1], 5);
float* data = t.data_ptr<float>();
for (int i = 0; i < 20; ++i) {
ASSERT_FLOAT_EQ(data[i], static_cast<float>(i));
}
}
TEST(TensorResizeTest, ResizeGrowDifferentNumelPreservesPrefix) {
at::Tensor t = at::arange(6, at::kFloat).reshape({2, 3});
t.resize_({2, 5});
ASSERT_EQ(t.sizes()[0], 2);
ASSERT_EQ(t.sizes()[1], 5);
float* data = t.data_ptr<float>();
for (int i = 0; i < 6; ++i) {
ASSERT_FLOAT_EQ(data[i], static_cast<float>(i));
}
}
TEST(TensorResizeTest, ResizeReturnReference) {
// Create a tensor
at::Tensor t = at::zeros({2, 3});
// Resize in-place, returns reference to same tensor
const at::Tensor& result = t.resize_({3, 2});
// Verify returned reference points to same tensor
ASSERT_EQ(result.sizes()[0], 3);
ASSERT_EQ(result.sizes()[1], 2);
// Verify original tensor was modified
ASSERT_EQ(t.sizes()[0], 3);
ASSERT_EQ(t.sizes()[1], 2);
}
TEST(TensorResizeTest, ResizePreserveDtype) {
// Create an int tensor
at::Tensor t = at::zeros({2, 3}, at::kInt);
// Resize to same element count (3x2)
t.resize_({3, 2});
// Verify dtype is preserved
ASSERT_EQ(t.dtype(), at::kInt);
}
TEST(TensorResizeTest, ResizeLargeTensor) {
// Create a larger tensor 4x5 = 20 elements
at::Tensor t = at::arange(20, at::kFloat).reshape({4, 5});
// Resize to 2x10 (20 elements)
t.resize_({2, 10});
ASSERT_EQ(t.sizes()[0], 2);
ASSERT_EQ(t.sizes()[1], 10);
}
TEST(TensorResizeTest, ResizeChain) {
// Multiple consecutive resizes
at::Tensor t = at::arange(12, at::kFloat).reshape({3, 4});
// Resize to 4x3
t.resize_({4, 3});
ASSERT_EQ(t.sizes()[0], 4);
ASSERT_EQ(t.sizes()[1], 3);
// Resize to 2x6
t.resize_({2, 6});
ASSERT_EQ(t.sizes()[0], 2);
ASSERT_EQ(t.sizes()[1], 6);
// Resize back to 3x4
t.resize_({3, 4});
ASSERT_EQ(t.sizes()[0], 3);
ASSERT_EQ(t.sizes()[1], 4);
}