Files
2026-07-13 12:40:42 +08:00

868 lines
28 KiB
Python

# Copyright (c) 2022 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 functools
import unittest
import numpy as np
from op_test import get_device_place, is_custom_device
import paddle
from paddle.base import core
RTOL = 1e-5
ATOL = 1e-8
DTYPE_ALL_CPU = {
'float64',
'float16',
'float32',
'bool',
'uint8',
'int32',
'int64',
}
# add `bfloat16` if core is compiled with CUDA and support the bfloat16
DTYPE_ALL_GPU = DTYPE_ALL_CPU | (
{'bfloat16'}
if (core.is_compiled_with_cuda() or is_custom_device())
and core.is_bfloat16_supported(get_device_place())
else set()
)
PLACES = [paddle.CPUPlace()] + (
[get_device_place()]
if (core.is_compiled_with_cuda() or is_custom_device())
else []
)
def generate_data(shape, dtype='int64'):
"""generate test data
Args:
shape(list of int): shape of inputs
dtype(str): dtype
Returns:
x, dtype, shape, name
"""
return {
# bfloat16 convert to uint16 for numpy
'x': np.random.randint(0, 255, size=shape).astype(
dtype if dtype != 'bfloat16' else 'uint16'
),
'dtype': dtype,
'shape': shape,
'name': f'{shape}_{dtype}',
}
class BaseTest(unittest.TestCase):
"""Test in each `PLACES` and in `static/dygraph`"""
def _test_static_api(
self,
func_paddle,
func_numpy,
x,
dtype,
shape,
name,
split_paddle,
split_numpy,
places=None,
):
"""Test `static`
Args:
func_paddle: `hsplit`, `vsplit`, `dsplit`, `tensor_split`
func_numpy: `hsplit`, `vsplit`, `dsplit`, `array_split`
x: input tensor
dtype: input tensor's dtype
shape: input tensor's shape
name: input tensor's name
split_paddle: num_or_sections or indices_or_sections in paddle
split_numpy: `hsplit`, `vsplit`, `dsplit` should convert num_or_sections in paddle to indices_or_sections in numpy. For test error, `split_numpy` is None and skip compare result, ensure the error only raised from paddle.
places: exec place, default to PLACES
"""
paddle.enable_static()
places = PLACES if places is None else places
for place in places:
program = paddle.static.Program()
exe = paddle.static.Executor(place)
with paddle.static.program_guard(program):
input = paddle.static.data(name, shape, dtype)
input.stop_gradient = False
feed = {name: x}
out = func_paddle(input, split_paddle)
if paddle.framework.in_pir_mode():
fetch_list = [out]
grads = paddle.autograd.ir_backward.grad(out, [input])
out_grad = grads[0]
fetch_list.append(out_grad)
*res, res_grad = exe.run(feed=feed, fetch_list=fetch_list)
self.assertEqual(list(res_grad.shape), list(input.shape))
else:
res = exe.run(feed=feed, fetch_list=[out])
if split_numpy is not None:
out_ref = func_numpy(x, split_numpy)
for n, p in zip(out_ref, res):
np.testing.assert_allclose(n, p, rtol=RTOL, atol=ATOL)
def _test_dygraph_api(
self,
func_paddle,
func_numpy,
x,
dtype,
shape,
name,
split_paddle,
split_numpy,
places=None,
):
"""Test `dygraph`, and check grads"""
paddle.disable_static()
places = PLACES if places is None else places
for place in places:
out = func_paddle(paddle.to_tensor(x).astype(dtype), split_paddle)
if split_numpy is not None:
out_ref = func_numpy(x, split_numpy)
for n, p in zip(out_ref, out):
np.testing.assert_allclose(
n, p.numpy(), rtol=RTOL, atol=ATOL
)
# check grads for the first tensor
out = out[0]
for y in out:
y.stop_gradient = False
z = y * 123
grads = paddle.grad(z, y)
self.assertTrue(len(grads), 1)
self.assertEqual(grads[0].dtype, y.dtype)
self.assertEqual(grads[0].shape, y.shape)
def _test_all(
self,
kwargs,
):
self._test_dygraph_api(self.func_paddle, self.func_numpy, **kwargs)
self._test_static_api(self.func_paddle, self.func_numpy, **kwargs)
class TestHSplit(BaseTest):
def setUp(self):
self.func_paddle = paddle.hsplit
self.func_numpy = np.hsplit
def test_split_dim(self):
x = generate_data([6])
self._test_all({**x, 'split_paddle': 3, 'split_numpy': 3})
self._test_all({**x, 'split_paddle': 2, 'split_numpy': 2})
self._test_all(
{
**x,
'split_paddle': [2, 4],
'split_numpy': [2, 4],
}
)
self._test_all(
{
**x,
'split_paddle': (2, 1, 3),
'split_numpy': (2, 1, 3),
}
)
self._test_all(
{**x, 'split_paddle': [-1, 1, 3], 'split_numpy': [-1, 1, 3]}
)
self._test_all({**x, 'split_paddle': [-1], 'split_numpy': [-1]})
x = generate_data([4, 6])
self._test_all({**x, 'split_paddle': 3, 'split_numpy': 3})
self._test_all({**x, 'split_paddle': 2, 'split_numpy': 2})
self._test_all(
{
**x,
'split_paddle': [2, 4],
'split_numpy': [2, 4],
}
)
self._test_all(
{
**x,
'split_paddle': (2, 1, 3),
'split_numpy': (2, 1, 3),
}
)
self._test_all(
{**x, 'split_paddle': [-1, 1, 3], 'split_numpy': [-1, 1, 3]}
)
self._test_all({**x, 'split_paddle': [-1], 'split_numpy': [-1]})
x = generate_data([4, 6, 3])
self._test_all({**x, 'split_paddle': 3, 'split_numpy': 3})
self._test_all({**x, 'split_paddle': 2, 'split_numpy': 2})
self._test_all(
{
**x,
'split_paddle': [2, 4],
'split_numpy': [2, 4],
}
)
self._test_all(
{
**x,
'split_paddle': (2, 1, 3),
'split_numpy': (2, 1, 3),
}
)
self._test_all(
{**x, 'split_paddle': [-1, 1, 3], 'split_numpy': [-1, 1, 3]}
)
self._test_all({**x, 'split_paddle': [-1], 'split_numpy': [-1]})
def test_dtype(self):
for dtype in DTYPE_ALL_CPU:
self._test_all(
{
**generate_data([6], dtype=dtype),
'split_paddle': 3,
'split_numpy': 3,
'places': [paddle.CPUPlace()],
},
)
if core.is_compiled_with_cuda() or is_custom_device():
for dtype in DTYPE_ALL_GPU:
self._test_all(
{
**generate_data([6], dtype=dtype),
'split_paddle': 3,
'split_numpy': 3,
'places': [get_device_place()],
},
)
def test_error_dim(self):
# test 0-d
x = generate_data([])
with self.assertRaises(ValueError):
self._test_all({**x, 'split_paddle': 3, 'split_numpy': None})
def test_error_split(self):
x = generate_data([5])
with self.assertRaises(ValueError):
self._test_all({**x, 'split_paddle': 0, 'split_numpy': None})
class TestVSplit(BaseTest):
def setUp(self):
self.func_paddle = paddle.vsplit
self.func_numpy = np.vsplit
def test_split_dim(self):
x = generate_data([6, 4])
self._test_all({**x, 'split_paddle': 3, 'split_numpy': 3})
self._test_all({**x, 'split_paddle': 2, 'split_numpy': 2})
self._test_all(
{
**x,
'split_paddle': [2, 4],
'split_numpy': [2, 4],
}
)
self._test_all(
{
**x,
'split_paddle': (2, 1, 3),
'split_numpy': (2, 1, 3),
}
)
self._test_all(
{**x, 'split_paddle': [-1, 1, 3], 'split_numpy': [-1, 1, 3]}
)
self._test_all({**x, 'split_paddle': [-1], 'split_numpy': [-1]})
x = generate_data([6, 4, 3])
self._test_all({**x, 'split_paddle': 3, 'split_numpy': 3})
self._test_all({**x, 'split_paddle': 2, 'split_numpy': 2})
self._test_all(
{
**x,
'split_paddle': [2, 4],
'split_numpy': [2, 4],
}
)
self._test_all(
{
**x,
'split_paddle': (2, 1, 3),
'split_numpy': (2, 1, 3),
}
)
self._test_all(
{**x, 'split_paddle': [-1, 1, 3], 'split_numpy': [-1, 1, 3]}
)
self._test_all({**x, 'split_paddle': [-1], 'split_numpy': [-1]})
def test_dtype(self):
for dtype in DTYPE_ALL_CPU:
self._test_all(
{
**generate_data([6, 4], dtype=dtype),
'split_paddle': 3,
'split_numpy': 3,
'places': [paddle.CPUPlace()],
},
)
if core.is_compiled_with_cuda() or is_custom_device():
for dtype in DTYPE_ALL_GPU:
self._test_all(
{
**generate_data([6, 4], dtype=dtype),
'split_paddle': 3,
'split_numpy': 3,
'places': [get_device_place()],
},
)
def test_error_dim(self):
# test 0-d
x = generate_data([])
with self.assertRaises(ValueError):
self._test_all({**x, 'split_paddle': 3, 'split_numpy': None})
# test 1-d
x = generate_data([6])
with self.assertRaises(ValueError):
self._test_all({**x, 'split_paddle': 3, 'split_numpy': None})
def test_error_split(self):
x = generate_data([5, 4])
with self.assertRaises(ValueError):
self._test_all({**x, 'split_paddle': 0, 'split_numpy': None})
class TestDSplit(BaseTest):
def setUp(self):
self.func_paddle = paddle.dsplit
self.func_numpy = np.dsplit
def test_split_dim(self):
x = generate_data([4, 3, 6])
self._test_all({**x, 'split_paddle': 3, 'split_numpy': 3})
self._test_all({**x, 'split_paddle': 2, 'split_numpy': 2})
self._test_all(
{
**x,
'split_paddle': [2, 4],
'split_numpy': [2, 4],
}
)
self._test_all(
{
**x,
'split_paddle': (2, 1, 3),
'split_numpy': (2, 1, 3),
}
)
self._test_all(
{**x, 'split_paddle': [-1, 1, 3], 'split_numpy': [-1, 1, 3]}
)
self._test_all({**x, 'split_paddle': [-1], 'split_numpy': [-1]})
def test_dtype(self):
for dtype in DTYPE_ALL_CPU:
self._test_all(
{
**generate_data([4, 2, 6], dtype=dtype),
'split_paddle': 3,
'split_numpy': 3,
'places': [paddle.CPUPlace()],
},
)
if core.is_compiled_with_cuda() or is_custom_device():
for dtype in DTYPE_ALL_GPU:
self._test_all(
{
**generate_data([4, 2, 6], dtype=dtype),
'split_paddle': 3,
'split_numpy': 3,
'places': [get_device_place()],
},
)
def test_error_dim(self):
# test 0-d
x = generate_data([])
with self.assertRaises(ValueError):
self._test_all({**x, 'split_paddle': 3, 'split_numpy': None})
# test 1-d
x = generate_data([6])
with self.assertRaises(ValueError):
self._test_all({**x, 'split_paddle': 3, 'split_numpy': None})
# test 2-d
x = generate_data([4, 6])
with self.assertRaises(ValueError):
self._test_all({**x, 'split_paddle': 3, 'split_numpy': None})
def test_error_split(self):
x = generate_data([3, 6, 5])
with self.assertRaises(ValueError):
self._test_all({**x, 'split_paddle': 0, 'split_numpy': None})
class TestTensorSplit(BaseTest):
def setUp(self):
self.func_paddle = paddle.tensor_split
self.func_numpy = np.array_split
def test_split_dim(self):
x = generate_data([6])
self._test_all({**x, 'split_paddle': 3, 'split_numpy': 3})
self._test_all({**x, 'split_paddle': 2, 'split_numpy': 2})
self._test_all({**x, 'split_paddle': [2, 4], 'split_numpy': [2, 4]})
self._test_all({**x, 'split_paddle': [2, 3], 'split_numpy': [2, 3]})
self._test_all({**x, 'split_paddle': (2, 5), 'split_numpy': (2, 5)})
self._test_all(
{**x, 'split_paddle': [2, 4, 5], 'split_numpy': [2, 4, 5]}
)
# not evenly split
x = generate_data([7])
self._test_all({**x, 'split_paddle': 3, 'split_numpy': 3})
self._test_all({**x, 'split_paddle': 2, 'split_numpy': 2})
self._test_all({**x, 'split_paddle': [2, 4], 'split_numpy': [2, 4]})
self._test_all({**x, 'split_paddle': [2, 3], 'split_numpy': [2, 3]})
self._test_all({**x, 'split_paddle': (2, 6), 'split_numpy': (2, 6)})
self._test_all(
{**x, 'split_paddle': [2, 4, 6], 'split_numpy': [2, 4, 6]}
)
x = generate_data([7, 4])
self._test_all({**x, 'split_paddle': 3, 'split_numpy': 3})
self._test_all({**x, 'split_paddle': 2, 'split_numpy': 2})
self._test_all({**x, 'split_paddle': [2, 4], 'split_numpy': [2, 4]})
self._test_all({**x, 'split_paddle': [2, 3], 'split_numpy': [2, 3]})
self._test_all({**x, 'split_paddle': (2, 6), 'split_numpy': (2, 6)})
self._test_all(
{**x, 'split_paddle': [2, 4, 6], 'split_numpy': [2, 4, 6]}
)
x = generate_data([7, 4, 3])
self._test_all({**x, 'split_paddle': 3, 'split_numpy': 3})
self._test_all({**x, 'split_paddle': 2, 'split_numpy': 2})
self._test_all({**x, 'split_paddle': [2, 4], 'split_numpy': [2, 4]})
self._test_all({**x, 'split_paddle': [2, 3], 'split_numpy': [2, 3]})
self._test_all({**x, 'split_paddle': (2, 6), 'split_numpy': (2, 6)})
self._test_all(
{**x, 'split_paddle': [2, 4, 6], 'split_numpy': [2, 4, 6]}
)
def test_split_axis(self):
# 1-d
self.func_paddle = functools.partial(paddle.tensor_split, axis=0)
self.func_numpy = functools.partial(np.array_split, axis=0)
x = generate_data([7])
self._test_all({**x, 'split_paddle': 3, 'split_numpy': 3})
self._test_all({**x, 'split_paddle': 2, 'split_numpy': 2})
self._test_all({**x, 'split_paddle': [2, 3], 'split_numpy': [2, 3]})
self._test_all({**x, 'split_paddle': (2, 6), 'split_numpy': (2, 6)})
self._test_all(
{**x, 'split_paddle': [2, 4, 6], 'split_numpy': [2, 4, 6]}
)
# 2-d
self.func_paddle = functools.partial(paddle.tensor_split, axis=1)
self.func_numpy = functools.partial(np.array_split, axis=1)
x = generate_data([4, 7])
self._test_all({**x, 'split_paddle': 3, 'split_numpy': 3})
self._test_all({**x, 'split_paddle': 2, 'split_numpy': 2})
self._test_all({**x, 'split_paddle': [2, 3], 'split_numpy': [2, 3]})
self._test_all({**x, 'split_paddle': (2, 6), 'split_numpy': (2, 6)})
self._test_all(
{**x, 'split_paddle': [2, 4, 6], 'split_numpy': [2, 4, 6]}
)
# 3-d
self.func_paddle = functools.partial(paddle.tensor_split, axis=2)
self.func_numpy = functools.partial(np.array_split, axis=2)
x = generate_data([4, 4, 7])
self._test_all({**x, 'split_paddle': 3, 'split_numpy': 3})
self._test_all({**x, 'split_paddle': 2, 'split_numpy': 2})
self._test_all({**x, 'split_paddle': [2, 3], 'split_numpy': [2, 3]})
self._test_all({**x, 'split_paddle': (2, 6), 'split_numpy': (2, 6)})
self._test_all(
{**x, 'split_paddle': [2, 4, 6], 'split_numpy': [2, 4, 6]}
)
# n-d
self.func_paddle = functools.partial(paddle.tensor_split, axis=3)
self.func_numpy = functools.partial(np.array_split, axis=3)
x = generate_data([4, 4, 4, 7])
self._test_all({**x, 'split_paddle': 3, 'split_numpy': 3})
self._test_all({**x, 'split_paddle': 2, 'split_numpy': 2})
self._test_all({**x, 'split_paddle': [2, 3], 'split_numpy': [2, 3]})
self._test_all({**x, 'split_paddle': (2, 6), 'split_numpy': (2, 6)})
self._test_all(
{**x, 'split_paddle': [2, 4, 6], 'split_numpy': [2, 4, 6]}
)
# axis -2
self.func_paddle = functools.partial(paddle.tensor_split, axis=-2)
self.func_numpy = functools.partial(np.array_split, axis=-2)
x = generate_data([4, 4, 7, 4])
self._test_all({**x, 'split_paddle': 3, 'split_numpy': 3})
self._test_all({**x, 'split_paddle': 2, 'split_numpy': 2})
self._test_all({**x, 'split_paddle': [2, 3], 'split_numpy': [2, 3]})
self._test_all({**x, 'split_paddle': (2, 6), 'split_numpy': (2, 6)})
self._test_all(
{**x, 'split_paddle': [2, 4, 6], 'split_numpy': [2, 4, 6]}
)
def test_special_indices(self):
"""indices in a mess, negative index, index out of range"""
self.func_paddle = functools.partial(paddle.tensor_split, axis=0)
self.func_numpy = functools.partial(np.array_split, axis=0)
x = generate_data([7])
# indices' order in a mess
self._test_all(
{**x, 'split_paddle': [2, 1, 3], 'split_numpy': [2, 1, 3]}
)
# index out of range
self._test_all(
{**x, 'split_paddle': [2, 3, 16], 'split_numpy': [2, 3, 16]}
)
# index with -1
self._test_all(
{**x, 'split_paddle': [3, -1, 16], 'split_numpy': [3, -1, 16]}
)
# mix index
self._test_all(
{
**x,
'split_paddle': [3, -1, 5, 2, 16],
'split_numpy': [3, -1, 5, 2, 16],
}
)
def test_dtype(self):
self.func_paddle = functools.partial(paddle.tensor_split, axis=0)
self.func_numpy = functools.partial(np.array_split, axis=0)
for dtype in DTYPE_ALL_CPU:
self._test_all(
{
**generate_data([6], dtype=dtype),
'split_paddle': 3,
'split_numpy': 3,
'places': [paddle.CPUPlace()],
},
)
if core.is_compiled_with_cuda() or is_custom_device():
for dtype in DTYPE_ALL_GPU:
self._test_all(
{
**generate_data([6], dtype=dtype),
'split_paddle': 3,
'split_numpy': 3,
'places': [get_device_place()],
},
)
self.func_paddle = functools.partial(paddle.tensor_split, axis=1)
self.func_numpy = functools.partial(np.array_split, axis=1)
for dtype in DTYPE_ALL_CPU:
self._test_all(
{
**generate_data([4, 6], dtype=dtype),
'split_paddle': 3,
'split_numpy': 3,
'places': [paddle.CPUPlace()],
},
)
if core.is_compiled_with_cuda() or is_custom_device():
for dtype in DTYPE_ALL_GPU:
self._test_all(
{
**generate_data([4, 6], dtype=dtype),
'split_paddle': 3,
'split_numpy': 3,
'places': [get_device_place()],
},
)
self.func_paddle = functools.partial(paddle.tensor_split, axis=2)
self.func_numpy = functools.partial(np.array_split, axis=2)
for dtype in DTYPE_ALL_CPU:
self._test_all(
{
**generate_data([4, 4, 6], dtype=dtype),
'split_paddle': 3,
'split_numpy': 3,
'places': [paddle.CPUPlace()],
},
)
if core.is_compiled_with_cuda() or is_custom_device():
for dtype in DTYPE_ALL_GPU:
self._test_all(
{
**generate_data([4, 4, 6], dtype=dtype),
'split_paddle': 3,
'split_numpy': 3,
'places': [get_device_place()],
},
)
def test_error_dim(self):
# axis 0
self.func_paddle = functools.partial(paddle.tensor_split, axis=0)
self.func_numpy = functools.partial(np.array_split, axis=0)
# test 0-d
x = generate_data([])
with self.assertRaises(ValueError):
self._test_all({**x, 'split_paddle': 3, 'split_numpy': None})
# axis 1
self.func_paddle = functools.partial(paddle.tensor_split, axis=1)
self.func_numpy = functools.partial(np.array_split, axis=1)
# test 0-d
x = generate_data([])
with self.assertRaises(ValueError):
self._test_all({**x, 'split_paddle': 3, 'split_numpy': None})
# test 1-d
x = generate_data([6])
with self.assertRaises(ValueError):
self._test_all({**x, 'split_paddle': 3, 'split_numpy': None})
# axis 2
self.func_paddle = functools.partial(paddle.tensor_split, axis=2)
self.func_numpy = functools.partial(np.array_split, axis=2)
# test 0-d
x = generate_data([])
with self.assertRaises(ValueError):
self._test_all({**x, 'split_paddle': 3, 'split_numpy': None})
# test 1-d
x = generate_data([6])
with self.assertRaises(ValueError):
self._test_all({**x, 'split_paddle': 3, 'split_numpy': None})
# test 2-d
x = generate_data([4, 6])
with self.assertRaises(ValueError):
self._test_all({**x, 'split_paddle': 3, 'split_numpy': None})
def test_error_split(self):
x = generate_data([6])
with self.assertRaises(ValueError):
self._test_all({**x, 'split_paddle': 0, 'split_numpy': None})
class SplitCompatibilityTest(unittest.TestCase):
def test_a(
self,
):
"""Test `dygraph`, and check grads"""
paddle.disable_static()
x = generate_data([4, 6, 3])["x"]
places = PLACES
for place in places:
out = paddle.tensor_split(
input=paddle.to_tensor(x).astype("float32"),
dim=1,
indices_or_sections=[2, 4],
)
out_ref = np.array_split(x, [2, 4], 1)
for n, p in zip(out_ref, out):
np.testing.assert_allclose(n, p.numpy(), rtol=RTOL, atol=ATOL)
# check grads for the first tensor
out = out[0]
for y in out:
y.stop_gradient = False
z = y * 123
grads = paddle.grad(z, y)
self.assertTrue(len(grads), 1)
self.assertEqual(grads[0].dtype, y.dtype)
self.assertEqual(grads[0].shape, y.shape)
def test_b(
self,
):
"""Test `dygraph`, and check grads"""
paddle.disable_static()
x = generate_data([4, 6, 3])["x"]
places = PLACES
for place in places:
out = paddle.tensor_split(
paddle.to_tensor(x).astype("float32"),
indices_or_sections=2,
axis=2,
)
out_ref = np.array_split(x, 2, 2)
for n, p in zip(out_ref, out):
np.testing.assert_allclose(n, p.numpy(), rtol=RTOL, atol=ATOL)
# check grads for the first tensor
out = out[0]
for y in out:
y.stop_gradient = False
z = y * 123
grads = paddle.grad(z, y)
self.assertTrue(len(grads), 1)
self.assertEqual(grads[0].dtype, y.dtype)
self.assertEqual(grads[0].shape, y.shape)
def test_c(
self,
):
"""Test `dygraph`, and check grads"""
paddle.disable_static()
x = generate_data([4, 6, 3])["x"]
places = PLACES
for place in places:
out = paddle.tensor_split(
paddle.to_tensor(x).astype("float32"),
sections=2,
dim=2,
)
out_ref = np.array_split(x, 2, 2)
for n, p in zip(out_ref, out):
np.testing.assert_allclose(n, p.numpy(), rtol=RTOL, atol=ATOL)
# check grads for the first tensor
out = out[0]
for y in out:
y.stop_gradient = False
z = y * 123
grads = paddle.grad(z, y)
self.assertTrue(len(grads), 1)
self.assertEqual(grads[0].dtype, y.dtype)
self.assertEqual(grads[0].shape, y.shape)
def test_d(
self,
):
"""Test `dygraph`, and check grads"""
paddle.disable_static()
x = generate_data([4, 6, 3])["x"]
places = PLACES
for place in places:
out = paddle.tensor_split(
input=paddle.to_tensor(x).astype("float32"),
dim=1,
indices=[2, 4],
)
out_ref = np.array_split(x, [2, 4], 1)
for n, p in zip(out_ref, out):
np.testing.assert_allclose(n, p.numpy(), rtol=RTOL, atol=ATOL)
# check grads for the first tensor
out = out[0]
for y in out:
y.stop_gradient = False
z = y * 123
grads = paddle.grad(z, y)
self.assertTrue(len(grads), 1)
self.assertEqual(grads[0].dtype, y.dtype)
self.assertEqual(grads[0].shape, y.shape)
def test_e(
self,
):
"""Test `dygraph`, and check grads"""
paddle.disable_static()
x = generate_data([4, 6, 3])["x"]
places = PLACES
for place in places:
out = paddle.tensor_split(
indices=[2, 4],
dim=1,
input=paddle.to_tensor(x).astype("float32"),
)
out_ref = np.array_split(x, [2, 4], 1)
for n, p in zip(out_ref, out):
np.testing.assert_allclose(n, p.numpy(), rtol=RTOL, atol=ATOL)
# check grads for the first tensor
out = out[0]
for y in out:
y.stop_gradient = False
z = y * 123
grads = paddle.grad(z, y)
self.assertTrue(len(grads), 1)
self.assertEqual(grads[0].dtype, y.dtype)
self.assertEqual(grads[0].shape, y.shape)
if __name__ == '__main__':
unittest.main()