536 lines
16 KiB
Python
536 lines
16 KiB
Python
# Copyright (c) 2018 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,
|
|
is_custom_device,
|
|
)
|
|
|
|
import paddle
|
|
from paddle import base, tensor
|
|
|
|
|
|
class TestUnbind(unittest.TestCase):
|
|
def setUp(self):
|
|
self.init_dtype()
|
|
self.input_1 = np.random.random([2, 3]).astype(self.dtype)
|
|
if self.dtype == 'complex64' or self.dtype == 'complex128':
|
|
self.input_1 = (
|
|
np.random.random([2, 3]) + 1j * np.random.random([2, 3])
|
|
).astype(self.dtype)
|
|
|
|
def init_dtype(self):
|
|
self.dtype = 'float32'
|
|
|
|
def test_unbind(self):
|
|
paddle.enable_static()
|
|
self.init_dtype()
|
|
main_program = paddle.base.Program()
|
|
startup_program = paddle.base.Program()
|
|
with paddle.base.program_guard(
|
|
main_program=main_program, startup_program=startup_program
|
|
):
|
|
x_1 = paddle.static.data(shape=[2, 3], dtype=self.dtype, name='x_1')
|
|
[out_0, out_1] = tensor.unbind(input=x_1, axis=0)
|
|
axis = paddle.static.data(shape=[], dtype='int32', name='axis')
|
|
exe = base.Executor(place=base.CPUPlace())
|
|
|
|
[res_1, res_2] = exe.run(
|
|
feed={"x_1": self.input_1, "axis": 0},
|
|
fetch_list=[out_0, out_1],
|
|
)
|
|
|
|
np.testing.assert_array_equal(res_1, self.input_1[0, 0:100])
|
|
np.testing.assert_array_equal(res_2, self.input_1[1, 0:100])
|
|
|
|
def test_unbind_static_fp16_gpu(self):
|
|
if paddle.base.core.is_compiled_with_cuda() or is_custom_device():
|
|
place = get_device_place()
|
|
with paddle.static.program_guard(
|
|
paddle.static.Program(), paddle.static.Program()
|
|
):
|
|
input = np.random.random([2, 3]).astype("float16")
|
|
|
|
x = paddle.static.data(name="x", shape=[2, 3], dtype="float16")
|
|
y = paddle.unbind(x)
|
|
|
|
exe = paddle.static.Executor(place)
|
|
res = exe.run(
|
|
paddle.static.default_main_program(),
|
|
feed={
|
|
"x": input,
|
|
},
|
|
fetch_list=[y],
|
|
)
|
|
|
|
np.testing.assert_array_equal(res[0], input[0, :])
|
|
np.testing.assert_array_equal(res[1], input[1, :])
|
|
|
|
def test_unbind_dygraph(self):
|
|
with base.dygraph.guard():
|
|
x = paddle.to_tensor(self.input_1)
|
|
x.stop_gradient = False
|
|
[res_1, res_2] = paddle.unbind(x, 0)
|
|
np.testing.assert_array_equal(res_1, self.input_1[0, 0:100])
|
|
np.testing.assert_array_equal(res_2, self.input_1[1, 0:100])
|
|
|
|
out = paddle.add_n([res_1, res_2])
|
|
|
|
np_grad = np.ones(x.shape, self.dtype)
|
|
out.backward()
|
|
np.testing.assert_array_equal(x.grad.numpy(False), np_grad)
|
|
|
|
|
|
class TestUnbind_complex64(TestUnbind):
|
|
def init_dtype(self):
|
|
self.dtype = 'complex64'
|
|
|
|
def test_unbind_static_fp16_gpu(self):
|
|
pass
|
|
|
|
|
|
class TestUnbind_complex128(TestUnbind):
|
|
def init_dtype(self):
|
|
self.dtype = 'complex128'
|
|
|
|
def test_unbind_static_fp16_gpu(self):
|
|
pass
|
|
|
|
|
|
class TestLayersUnbind(unittest.TestCase):
|
|
def setUp(self):
|
|
self.init_dtype()
|
|
self.input_1 = np.random.random([2, 3]).astype(self.dtype)
|
|
if self.dtype == 'complex64' or self.dtype == 'complex128':
|
|
self.input_1 = (
|
|
np.random.random([2, 3]) + 1j * np.random.random([2, 3])
|
|
).astype(self.dtype)
|
|
|
|
def init_dtype(self):
|
|
self.dtype = 'float32'
|
|
|
|
def test_layers_unbind(self):
|
|
paddle.enable_static()
|
|
prog = paddle.static.Program()
|
|
startup_prog = paddle.static.Program()
|
|
with paddle.static.program_guard(prog, startup_prog):
|
|
x_1 = paddle.static.data(shape=[2, 3], dtype=self.dtype, name='x_1')
|
|
[out_0, out_1] = paddle.unbind(input=x_1, axis=0)
|
|
axis = paddle.static.data(shape=[], dtype='int32', name='axis')
|
|
exe = base.Executor(place=base.CPUPlace())
|
|
[res_1, res_2] = exe.run(
|
|
feed={"x_1": self.input_1, "axis": 0},
|
|
fetch_list=[out_0, out_1],
|
|
)
|
|
|
|
np.testing.assert_array_equal(res_1, self.input_1[0, 0:100])
|
|
np.testing.assert_array_equal(res_2, self.input_1[1, 0:100])
|
|
|
|
|
|
class TestLayersUnbind_complex64(TestLayersUnbind):
|
|
def init_dtype(self):
|
|
self.dtype = 'complex64'
|
|
|
|
|
|
class TestLayersUnbind_complex128(TestLayersUnbind):
|
|
def init_dtype(self):
|
|
self.dtype = 'complex128'
|
|
|
|
|
|
class TestUnbindOp(OpTest):
|
|
def initParameters(self):
|
|
pass
|
|
|
|
def outReshape(self):
|
|
self.out[0] = self.out[0].reshape((2, 2))
|
|
self.out[1] = self.out[1].reshape((2, 2))
|
|
self.out[2] = self.out[2].reshape((2, 2))
|
|
|
|
def setAxis(self):
|
|
pass
|
|
|
|
def setUp(self):
|
|
self._set_op_type()
|
|
self.prim_op_type = "comp"
|
|
self.dtype = self.get_dtype()
|
|
self.axis = 0
|
|
self.num = 3
|
|
self.initParameters()
|
|
x = np.arange(12).reshape(3, 2, 2).astype(self.dtype)
|
|
if self.dtype == np.complex64 or self.dtype == np.complex128:
|
|
x = (
|
|
np.arange(12).reshape(3, 2, 2)
|
|
+ 1j * np.arange(12).reshape(3, 2, 2)
|
|
).astype(self.dtype)
|
|
self.out = np.split(x, self.num, self.axis)
|
|
self.outReshape()
|
|
self.inputs = {'X': x}
|
|
self.attrs = {'axis': self.axis}
|
|
self.setAxis()
|
|
self.outputs = {
|
|
'Out': [(f'out{i}', self.out[i]) for i in range(len(self.out))]
|
|
}
|
|
self.python_api = paddle.unbind
|
|
self.public_python_api = paddle.unbind
|
|
self.python_out_sig = [f'out{i}' for i in range(len(self.out))]
|
|
|
|
def get_dtype(self):
|
|
return "float64"
|
|
|
|
def _set_op_type(self):
|
|
self.op_type = "unbind"
|
|
|
|
def test_check_output(self):
|
|
self.check_output(check_pir=True, check_prim_pir=True)
|
|
|
|
def test_check_grad(self):
|
|
self.check_grad(
|
|
['X'], ['out0', 'out1', 'out2'], check_pir=True, check_prim_pir=True
|
|
)
|
|
|
|
|
|
class TestUnbindOp1(TestUnbindOp):
|
|
def initParameters(self):
|
|
self.axis = 1
|
|
self.num = 2
|
|
|
|
def test_check_grad(self):
|
|
self.check_grad(['X'], ['out0', 'out1'], check_pir=True)
|
|
|
|
def outReshape(self):
|
|
self.out[0] = self.out[0].reshape((3, 2))
|
|
self.out[1] = self.out[1].reshape((3, 2))
|
|
|
|
|
|
class TestUnbindOp2(TestUnbindOp):
|
|
def initParameters(self):
|
|
self.axis = 2
|
|
self.num = 2
|
|
|
|
def test_check_grad(self):
|
|
self.check_grad(['X'], ['out0', 'out1'], check_pir=True)
|
|
|
|
def outReshape(self):
|
|
self.out[0] = self.out[0].reshape((3, 2))
|
|
self.out[1] = self.out[1].reshape((3, 2))
|
|
|
|
|
|
class TestUnbindOp3(TestUnbindOp):
|
|
def initParameters(self):
|
|
self.axis = 2
|
|
self.num = 2
|
|
|
|
def setAxis(self):
|
|
self.attrs = {'axis': -1}
|
|
|
|
def test_check_grad(self):
|
|
self.check_grad(['X'], ['out0', 'out1'], check_pir=True)
|
|
|
|
def outReshape(self):
|
|
self.out[0] = self.out[0].reshape((3, 2))
|
|
self.out[1] = self.out[1].reshape((3, 2))
|
|
|
|
|
|
class TestUnbindOp4(TestUnbindOp):
|
|
def initParameters(self):
|
|
self.axis = 1
|
|
self.num = 2
|
|
|
|
def setAxis(self):
|
|
self.attrs = {'axis': -2}
|
|
|
|
def test_check_grad(self):
|
|
self.check_grad(['X'], ['out0', 'out1'], check_pir=True)
|
|
|
|
def outReshape(self):
|
|
self.out[0] = self.out[0].reshape((3, 2))
|
|
self.out[1] = self.out[1].reshape((3, 2))
|
|
|
|
|
|
class TestUnbindOp1_Complex64(TestUnbindOp1):
|
|
def get_dtype(self):
|
|
return np.complex64
|
|
|
|
def test_check_output(self):
|
|
self.check_output(check_pir=True)
|
|
|
|
|
|
class TestUnbindOp2_Complex64(TestUnbindOp2):
|
|
def get_dtype(self):
|
|
return np.complex64
|
|
|
|
def test_check_output(self):
|
|
self.check_output(check_pir=True)
|
|
|
|
|
|
class TestUnbindOp3_Complex64(TestUnbindOp3):
|
|
def get_dtype(self):
|
|
return np.complex64
|
|
|
|
def test_check_output(self):
|
|
self.check_output(check_pir=True)
|
|
|
|
|
|
class TestUnbindOp4_Complex64(TestUnbindOp4):
|
|
def get_dtype(self):
|
|
return np.complex64
|
|
|
|
def test_check_output(self):
|
|
self.check_output(check_pir=True)
|
|
|
|
|
|
class TestUnbindOp1_Complex128(TestUnbindOp1):
|
|
def get_dtype(self):
|
|
return np.complex128
|
|
|
|
def test_check_output(self):
|
|
self.check_output(check_pir=True)
|
|
|
|
|
|
class TestUnbindOp2_Complex128(TestUnbindOp2):
|
|
def get_dtype(self):
|
|
return np.complex128
|
|
|
|
def test_check_output(self):
|
|
self.check_output(check_pir=True)
|
|
|
|
|
|
class TestUnbindOp3_Complex128(TestUnbindOp3):
|
|
def get_dtype(self):
|
|
return np.complex128
|
|
|
|
def test_check_output(self):
|
|
self.check_output(check_pir=True)
|
|
|
|
|
|
class TestUnbindOp4_Complex128(TestUnbindOp4):
|
|
def get_dtype(self):
|
|
return np.complex128
|
|
|
|
def test_check_output(self):
|
|
self.check_output(check_pir=True)
|
|
|
|
|
|
class TestUnbindFP16Op(OpTest):
|
|
def setUp(self):
|
|
paddle.disable_static()
|
|
self.op_type = "unbind"
|
|
self.prim_op_type = "comp"
|
|
self.python_api = paddle.unbind
|
|
self.public_python_api = paddle.unbind
|
|
self.dtype = self.get_dtype()
|
|
self.axis = 0
|
|
self.num = 3
|
|
x = np.arange(12).reshape(3, 2, 2).astype(self.dtype)
|
|
self.out = np.split(x, self.num, self.axis)
|
|
self.outReshape()
|
|
self.inputs = {'X': x}
|
|
self.attrs = {'axis': self.axis}
|
|
self.outputs = {
|
|
'Out': [(f'out{i}', self.out[i]) for i in range(len(self.out))]
|
|
}
|
|
self.python_out_sig = [f'out{i}' for i in range(len(self.out))]
|
|
|
|
def outReshape(self):
|
|
self.out[0] = self.out[0].reshape((2, 2))
|
|
self.out[1] = self.out[1].reshape((2, 2))
|
|
self.out[2] = self.out[2].reshape((2, 2))
|
|
|
|
def get_dtype(self):
|
|
return np.float16
|
|
|
|
def test_check_output(self):
|
|
self.check_output(check_pir=True, check_prim_pir=True)
|
|
|
|
|
|
class TestUnbindBF16Op(OpTest):
|
|
def setUp(self):
|
|
paddle.disable_static()
|
|
self._set_op_type()
|
|
self.prim_op_type = "comp"
|
|
self.python_api = paddle.unbind
|
|
self.public_python_api = paddle.unbind
|
|
self.dtype = self.get_dtype()
|
|
self.axis = 0
|
|
self.num = 3
|
|
x = np.arange(12).reshape(3, 2, 2).astype(self.dtype)
|
|
self.out = np.split(x, self.num, self.axis)
|
|
self.outReshape()
|
|
self.inputs = {'X': convert_float_to_uint16(x)}
|
|
self.attrs = {'axis': self.axis}
|
|
self.outputs = {
|
|
'Out': [
|
|
(f'out{i}', convert_float_to_uint16(self.out[i]))
|
|
for i in range(len(self.out))
|
|
]
|
|
}
|
|
self.python_out_sig = [f'out{i}' for i in range(len(self.out))]
|
|
|
|
def outReshape(self):
|
|
self.out[0] = self.out[0].reshape((2, 2))
|
|
self.out[1] = self.out[1].reshape((2, 2))
|
|
self.out[2] = self.out[2].reshape((2, 2))
|
|
|
|
def get_dtype(self):
|
|
return np.uint16
|
|
|
|
def _set_op_type(self):
|
|
self.op_type = "unbind"
|
|
|
|
def test_check_output(self):
|
|
self.check_output(check_pir=True, check_prim_pir=True)
|
|
|
|
def test_check_grad(self):
|
|
pass
|
|
|
|
|
|
class TestUnbindAxisError(unittest.TestCase):
|
|
def setUp(self):
|
|
self.dtype = 'float32'
|
|
|
|
def test_errors(self):
|
|
paddle.enable_static()
|
|
|
|
with paddle.base.program_guard(
|
|
paddle.base.Program(), paddle.base.Program()
|
|
):
|
|
x = paddle.static.data(shape=[2, 3], dtype=self.dtype, name='x')
|
|
|
|
def test_table_Variable():
|
|
tensor.unbind(input=x, axis=2.0)
|
|
|
|
self.assertRaises(TypeError, test_table_Variable)
|
|
|
|
def test_invalid_axis():
|
|
tensor.unbind(input=x, axis=2)
|
|
|
|
self.assertRaises(ValueError, test_invalid_axis)
|
|
|
|
|
|
class TestUnbindAxisError_complex64(TestUnbindAxisError):
|
|
def setUp(self):
|
|
self.dtype = 'complex64'
|
|
|
|
|
|
class TestUnbindAxisError_complex128(TestUnbindAxisError):
|
|
def setUp(self):
|
|
self.dtype = 'complex128'
|
|
|
|
|
|
class TestUnbindBool(unittest.TestCase):
|
|
def test_bool(self):
|
|
x = paddle.to_tensor([[True, True], [False, False]])
|
|
xs = paddle.unbind(x, axis=0)
|
|
self.assertEqual(len(xs), 2)
|
|
np.testing.assert_array_equal(xs[0].numpy(False), [True, True])
|
|
|
|
|
|
class TestUnbindGradOptionalInput(unittest.TestCase):
|
|
def test_grad(self):
|
|
a = paddle.zeros([3, 2, 3])
|
|
a.stop_gradient = False
|
|
x, y = a.unbind(-2)
|
|
x.sum().backward() # y_grad is empty
|
|
|
|
a_grad = a.detach()
|
|
a_grad[:, 0, :] = 1
|
|
|
|
np.testing.assert_array_equal(a.grad.numpy(False), a_grad.numpy(False))
|
|
|
|
|
|
class TestUnbindAPI_Compatibility(unittest.TestCase):
|
|
def setUp(self):
|
|
np.random.seed(123)
|
|
self.shape = [3, 4, 5]
|
|
self.dtype = 'float32'
|
|
self.axis = 0
|
|
self.init_data()
|
|
|
|
def init_data(self):
|
|
self.np_input = np.random.rand(*self.shape).astype(self.dtype)
|
|
self.np_out = np.split(
|
|
self.np_input,
|
|
indices_or_sections=self.np_input.shape[self.axis],
|
|
axis=self.axis,
|
|
)
|
|
# Remove the extra dimension added by np.split
|
|
self.np_out = [np.squeeze(arr, axis=self.axis) for arr in self.np_out]
|
|
|
|
def test_dygraph_Compatibility(self):
|
|
paddle.disable_static()
|
|
x = paddle.to_tensor(self.np_input)
|
|
paddle_dygraph_out = []
|
|
|
|
# Positional args (args)
|
|
out1 = paddle.unbind(x, self.axis)
|
|
paddle_dygraph_out.append(out1)
|
|
|
|
# Keyword args (kwargs)
|
|
out2 = paddle.unbind(input=x, axis=self.axis)
|
|
paddle_dygraph_out.append(out2)
|
|
|
|
# Duplicate kwargs test (should be same as out2)
|
|
out3 = paddle.unbind(input=x, dim=self.axis)
|
|
paddle_dygraph_out.append(out3)
|
|
|
|
# Default axis (axis=0)
|
|
out4 = paddle.unbind(x)
|
|
paddle_dygraph_out.append(out4)
|
|
|
|
# Check all variants
|
|
for out in paddle_dygraph_out:
|
|
for i, array in enumerate(out):
|
|
np.testing.assert_allclose(self.np_out[i], array.numpy())
|
|
|
|
paddle.enable_static()
|
|
|
|
def test_static_Compatibility(self):
|
|
paddle.enable_static()
|
|
main = paddle.static.Program()
|
|
startup = paddle.static.Program()
|
|
with paddle.static.program_guard(main, startup):
|
|
x = paddle.static.data(name="x", shape=self.shape, dtype=self.dtype)
|
|
|
|
# Positional args
|
|
out1 = paddle.unbind(x, self.axis)
|
|
|
|
# Keyword args
|
|
out2 = paddle.unbind(input=x, axis=self.axis)
|
|
|
|
out3 = paddle.unbind(input=x, dim=self.axis)
|
|
|
|
# Default axis
|
|
out4 = paddle.unbind(x)
|
|
|
|
exe = paddle.static.Executor(paddle.CPUPlace())
|
|
fetches = exe.run(
|
|
main,
|
|
feed={"x": self.np_input},
|
|
fetch_list=[out1, out2, out3, out4],
|
|
)
|
|
|
|
paddle_static_out = [fetches[3 * i : 3 * (i + 1)] for i in range(4)]
|
|
for out in paddle_static_out:
|
|
for i, array in enumerate(out):
|
|
np.testing.assert_allclose(self.np_out[i], array)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|