Files
paddlepaddle--paddle/test/legacy_test/test_unfold_op.py
T
2026-07-13 12:40:42 +08:00

269 lines
8.1 KiB
Python

# Copyright (c) 2019 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.
import unittest
import numpy as np
from op_test import (
OpTest,
convert_float_to_uint16,
get_device_place,
get_places,
is_custom_device,
)
import paddle
from paddle import base
from paddle.base import core
class TestUnfoldOp(OpTest):
"""
This is for test on unfold Op
"""
def init_data(self):
self.batch_size = 3
self.input_channels = 3
self.input_height = 20
self.input_width = 20
self.kernel_sizes = [3, 3]
self.strides = [1, 1]
self.paddings = [1, 1, 1, 1]
self.dilations = [1, 1]
input_shape = [
self.batch_size,
self.input_channels,
self.input_height,
self.input_width,
]
if self.dtype == np.uint16:
as_type = self.np_dtype
else:
as_type = self.dtype
self.x = np.random.rand(*input_shape).astype(as_type)
def calc_unfold(self):
output_shape = [0] * 3
output_shape[0] = self.batch_size
output_shape[1] = (
self.input_channels * self.kernel_sizes[0] * self.kernel_sizes[1]
)
dkernel_h = self.dilations[0] * (self.kernel_sizes[0] - 1) + 1
dkernel_w = self.dilations[1] * (self.kernel_sizes[1] - 1) + 1
out_height = (
int(
(
self.input_height
+ self.paddings[0]
+ self.paddings[2]
- dkernel_h
)
/ self.strides[0]
)
+ 1
)
out_width = (
int(
(
self.input_width
+ self.paddings[1]
+ self.paddings[3]
- dkernel_w
)
/ self.strides[1]
)
+ 1
)
output_shape[2] = out_height * out_width
if self.dtype == np.uint16:
as_type = self.np_dtype
else:
as_type = self.dtype
output = np.zeros(output_shape).astype(as_type)
# ------------ calculate output -------------- #
for i in range(output_shape[0]):
for j in range(output_shape[1]):
for k in range(output_shape[2]):
h_out = int(k / out_width)
w_out = k % out_width
w_offset = j % self.kernel_sizes[1]
h_offset = (
int(j / self.kernel_sizes[1]) % self.kernel_sizes[0]
)
c_in = int(
j / (self.kernel_sizes[0] * self.kernel_sizes[1])
)
h_in = (
h_offset * self.dilations[0]
+ h_out * self.strides[0]
- self.paddings[0]
)
w_in = (
w_offset * self.dilations[1]
+ w_out * self.strides[1]
- self.paddings[1]
)
if (h_in >= 0 and h_in < self.input_height) and (
w_in >= 0 and w_in < self.input_width
):
output[i, j, k] = self.x[i, c_in, h_in, w_in]
self.outputs = output
def set_data(self):
self.init_data()
self.calc_unfold()
self.inputs = {'X': self.x}
self.attrs = {
'kernel_sizes': self.kernel_sizes,
'paddings': self.paddings,
'dilations': self.dilations,
'strides': self.strides,
}
self.outputs = {'Y': self.outputs}
def setUp(self):
self.op_type = 'unfold'
self.init_dtype()
self.python_api = paddle.nn.functional.unfold
self.set_data()
def init_dtype(self):
self.dtype = np.float64
def test_check_output(self):
self.check_output(check_pir=True)
def test_check_grad(self):
self.check_grad(['X'], 'Y', check_pir=True)
def test_support_tuple(self):
paddle.disable_static()
x = paddle.randn((10, 3, 64, 64))
paddle.nn.functional.unfold(x, 3, (1, 1), 1, 1)
paddle.nn.functional.unfold(x, 3, 1, (1, 1), 1)
paddle.nn.functional.unfold(x, 3, 1, 1, (1, 1))
out1 = paddle.nn.functional.unfold(x, 3, (1, 1), (1, 1), (1, 1))
out2 = paddle.nn.functional.unfold(x, (3, 3), (1, 1), (1, 1), (1, 1))
np.testing.assert_allclose(out1.numpy(), out2.numpy())
paddle.enable_static()
class TestUnfoldFP16Op(TestUnfoldOp):
def init_dtype(self):
self.dtype = np.float16
class TestUnfoldZeroSize(TestUnfoldOp):
"""
This is for test on unfold Op with zero size input
"""
def init_data(self):
self.batch_size = 3
self.input_channels = 0
self.input_height = 20
self.input_width = 20
self.kernel_sizes = [3, 3]
self.strides = [1, 1]
self.paddings = [1, 1, 1, 1]
self.dilations = [1, 1]
input_shape = [
self.batch_size,
self.input_channels,
self.input_height,
self.input_width,
]
if self.dtype == np.uint16:
as_type = self.np_dtype
else:
as_type = self.dtype
self.x = np.random.rand(*input_shape).astype(as_type)
@unittest.skipIf(
not (core.is_compiled_with_cuda() or is_custom_device())
or not core.is_bfloat16_supported(get_device_place()),
"core is not compiled with CUDA or not support bfloat16",
)
class TestUnfoldBF16Op(TestUnfoldOp):
# Notice: The test is time consuming, may cause timeout, modify the parameters to reduce the time
def init_data(self):
self.batch_size = 3
self.input_channels = 3
self.input_height = 5
self.input_width = 5
self.kernel_sizes = [3, 3]
self.strides = [1, 1]
self.paddings = [1, 1, 1, 1]
self.dilations = [1, 1]
input_shape = [
self.batch_size,
self.input_channels,
self.input_height,
self.input_width,
]
self.x = np.random.rand(*input_shape).astype(self.np_dtype)
def init_dtype(self):
self.dtype = np.uint16
self.np_dtype = np.float32
def setUp(self):
self.op_type = 'unfold'
self.init_dtype()
self.python_api = paddle.nn.functional.unfold
self.set_data()
self.inputs['X'] = convert_float_to_uint16(self.inputs['X'])
self.outputs['Y'] = convert_float_to_uint16(self.outputs['Y'])
self.place = get_device_place()
def test_check_output(self):
self.check_output_with_place(self.place, check_pir=True)
def test_check_grad(self):
self.check_grad_with_place(self.place, ['X'], 'Y', check_pir=True)
class TestUnfoldAPI(TestUnfoldOp):
"""
This is for test on paddle.nn.Unfold
"""
def setUp(self):
self.op_type = 'unfold'
self.python_api = paddle.nn.functional.unfold
self.set_data()
self.places = get_places()
def test_dygraph(self):
for place in self.places:
with base.dygraph.guard(place):
input = paddle.to_tensor(self.inputs['X'])
m = paddle.nn.Unfold(**self.attrs)
m.eval()
result = m(input)
np.testing.assert_allclose(
result.numpy(), self.outputs['Y'], rtol=1e-05
)
def test_info(self):
str(paddle.nn.Unfold(**self.attrs))
if __name__ == '__main__':
unittest.main()