1419 lines
51 KiB
Python
1419 lines
51 KiB
Python
# Copyright (c) 2023 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 convert_float_to_uint16, convert_uint16_to_float
|
|
|
|
import paddle
|
|
from paddle.base import core
|
|
from paddle.base.variable_index import _getitem_static
|
|
|
|
|
|
class TestGetitemInDygraph(unittest.TestCase):
|
|
def setUp(self):
|
|
paddle.disable_static()
|
|
self.ndtype = np.float64
|
|
self.dtype = 'float64'
|
|
|
|
def test_combined_index_1(self):
|
|
# int tensor + slice (without decreasing axes)
|
|
np_data = np.random.randn(3, 4, 5, 6).astype(self.ndtype)
|
|
|
|
if self.dtype == 'bfloat16':
|
|
np_data = convert_uint16_to_float(convert_float_to_uint16(np_data))
|
|
if self.dtype == 'complex64' or self.dtype == 'complex128':
|
|
np_data = np_data + 1j * np_data
|
|
|
|
np_res = np_data[[0, 1], :, [1, 2]]
|
|
x = paddle.to_tensor(np_data, dtype=self.dtype)
|
|
y = x[[0, 1], :, [1, 2]]
|
|
|
|
if self.dtype == 'bfloat16':
|
|
y = paddle.cast(y, dtype='float32')
|
|
|
|
np.testing.assert_allclose(y.numpy(), np_res)
|
|
|
|
def test_combined_index_2(self):
|
|
# int tensor + slice (with decreasing axes)
|
|
np_data = np.random.randn(3, 4, 5, 6).astype(self.ndtype)
|
|
|
|
if self.dtype == 'bfloat16':
|
|
np_data = convert_uint16_to_float(convert_float_to_uint16(np_data))
|
|
if self.dtype == 'complex64' or self.dtype == 'complex128':
|
|
np_data = np_data + 1j * np_data
|
|
|
|
x = paddle.to_tensor(np_data, dtype=self.dtype)
|
|
np_res = np_data[:, 1, [1, 2], 0]
|
|
y = x[:, 1, [1, 2], 0]
|
|
|
|
if self.dtype == 'bfloat16':
|
|
y = paddle.cast(y, dtype='float32')
|
|
|
|
np.testing.assert_allclose(y.numpy(), np_res)
|
|
|
|
def test_combined_index_3(self):
|
|
# multiple int tensors, with one int tensor at first axis
|
|
np_data = np.random.randn(3, 4, 5, 6, 7).astype(self.ndtype)
|
|
|
|
if self.dtype == 'bfloat16':
|
|
np_data = convert_uint16_to_float(convert_float_to_uint16(np_data))
|
|
if self.dtype == 'complex64' or self.dtype == 'complex128':
|
|
np_data = np_data + 1j * np_data
|
|
|
|
np_res = np_data[[1, 0], :, [1, 4], 1:5:2, 4]
|
|
|
|
x = paddle.to_tensor(np_data, dtype=self.dtype)
|
|
y = x[[1, 0], :, [1, 4], 1:5:2, 4]
|
|
|
|
if self.dtype == 'bfloat16':
|
|
y = paddle.cast(y, dtype='float32')
|
|
|
|
np.testing.assert_allclose(y.numpy(), np_res)
|
|
|
|
def test_combined_index_4(self):
|
|
# multiple not adjacent int tensors, with no int tensor at first axis
|
|
np_data = np.random.randn(3, 4, 5, 6, 7).astype(self.ndtype)
|
|
|
|
if self.dtype == 'bfloat16':
|
|
np_data = convert_uint16_to_float(convert_float_to_uint16(np_data))
|
|
if self.dtype == 'complex64' or self.dtype == 'complex128':
|
|
np_data = np_data + 1j * np_data
|
|
|
|
np_res = np_data[:, [1, 0], 0:4:2, [2, 3], 4]
|
|
x = paddle.to_tensor(np_data, dtype=self.dtype)
|
|
y = x[:, [1, 0], 0:4:2, [2, 3], 4]
|
|
|
|
if self.dtype == 'bfloat16':
|
|
y = paddle.cast(y, dtype='float32')
|
|
|
|
np.testing.assert_allclose(y.numpy(), np_res)
|
|
|
|
def test_combined_index_5(self):
|
|
# multiple adjacent int tensors, with no int tensor at first axis
|
|
np_data = np.random.randn(3, 4, 5, 6, 7).astype(self.ndtype)
|
|
|
|
if self.dtype == 'bfloat16':
|
|
np_data = convert_uint16_to_float(convert_float_to_uint16(np_data))
|
|
if self.dtype == 'complex64' or self.dtype == 'complex128':
|
|
np_data = np_data + 1j * np_data
|
|
|
|
np_res = np_data[::2, [1, 0], [2, 3], 0:4:2]
|
|
x = paddle.to_tensor(np_data, dtype=self.dtype)
|
|
y = x[::2, [1, 0], [2, 3], 0:4:2]
|
|
|
|
if self.dtype == 'bfloat16':
|
|
y = paddle.cast(y, dtype='float32')
|
|
|
|
np.testing.assert_allclose(y.numpy(), np_res)
|
|
|
|
def test_combined_index_6(self):
|
|
# multiple adjacent and not adjacent int tensors, with no int tensor at first axis
|
|
np_data = np.random.randn(3, 4, 5, 6, 7).astype(self.ndtype)
|
|
|
|
if self.dtype == 'bfloat16':
|
|
np_data = convert_uint16_to_float(convert_float_to_uint16(np_data))
|
|
if self.dtype == 'complex64' or self.dtype == 'complex128':
|
|
np_data = np_data + 1j * np_data
|
|
|
|
np_res = np_data[::2, [1, 0], [2, 3], 0:4:2, [4, 6]]
|
|
x = paddle.to_tensor(np_data, dtype=self.dtype)
|
|
y = x[::2, [1, 0], [2, 3], 0:4:2, [4, 6]]
|
|
|
|
if self.dtype == 'bfloat16':
|
|
y = paddle.cast(y, dtype='float32')
|
|
|
|
np.testing.assert_allclose(y.numpy(), np_res)
|
|
|
|
def test_combined_index_7(self):
|
|
# multiple adjacent and not adjacent int tensors (rank > 1d), with no int tensor at first axis
|
|
np_data = np.random.randn(3, 4, 5, 6, 7).astype(self.ndtype)
|
|
|
|
if self.dtype == 'bfloat16':
|
|
np_data = convert_uint16_to_float(convert_float_to_uint16(np_data))
|
|
if self.dtype == 'complex64' or self.dtype == 'complex128':
|
|
np_data = np_data + 1j * np_data
|
|
|
|
np_res = np_data[::2, [[1, 0]], [[2, 3]], 0:4:2, [[4, 6]]]
|
|
x = paddle.to_tensor(np_data, dtype=self.dtype)
|
|
y = x[::2, [[1, 0]], [[2, 3]], 0:4:2, [[4, 6]]]
|
|
|
|
if self.dtype == 'bfloat16':
|
|
y = paddle.cast(y, dtype='float32')
|
|
|
|
np.testing.assert_allclose(y.numpy(), np_res)
|
|
|
|
def test_combined_index_8(self):
|
|
# multiple adjacent and not adjacent int tensors (rank > 1d), with int tensor at first axis
|
|
np_data = np.random.randn(3, 4, 5, 6, 7).astype(self.ndtype)
|
|
|
|
if self.dtype == 'bfloat16':
|
|
np_data = convert_uint16_to_float(convert_float_to_uint16(np_data))
|
|
if self.dtype == 'complex64' or self.dtype == 'complex128':
|
|
np_data = np_data + 1j * np_data
|
|
|
|
np_res = np_data[
|
|
[[1, 0], [0, 1]], [[2, 3], [1, 0]], 0:4:2, [[3, 5], [4, 2]]
|
|
]
|
|
x = paddle.to_tensor(np_data, dtype=self.dtype)
|
|
y = x[[[1, 0], [0, 1]], [[2, 3], [1, 0]], 0:4:2, [[3, 5], [4, 2]]]
|
|
|
|
if self.dtype == 'bfloat16':
|
|
y = paddle.cast(y, dtype='float32')
|
|
|
|
np.testing.assert_allclose(y.numpy(), np_res)
|
|
|
|
def test_combined_index_9(self):
|
|
# multiple int tensors, with broadcast.
|
|
np_data = np.random.randn(3, 4, 5, 6, 7).astype(self.ndtype)
|
|
|
|
if self.dtype == 'bfloat16':
|
|
np_data = convert_uint16_to_float(convert_float_to_uint16(np_data))
|
|
if self.dtype == 'complex64' or self.dtype == 'complex128':
|
|
np_data = np_data + 1j * np_data
|
|
|
|
np_res = np_data[[[1, 0]], [1, 0], 0:4:2, [[3, 5], [4, 2]]]
|
|
x = paddle.to_tensor(np_data, dtype=self.dtype)
|
|
y = x[[[1, 0]], [1, 0], 0:4:2, [[3, 5], [4, 2]]]
|
|
|
|
if self.dtype == 'bfloat16':
|
|
y = paddle.cast(y, dtype='float32')
|
|
|
|
np.testing.assert_allclose(y.numpy(), np_res)
|
|
|
|
def test_combined_index_10(self):
|
|
# only one bool tensor with basic-index
|
|
np_data = np.random.randn(3, 4, 5, 6).astype(self.ndtype)
|
|
|
|
if self.dtype == 'bfloat16':
|
|
np_data = convert_uint16_to_float(convert_float_to_uint16(np_data))
|
|
if self.dtype == 'complex64' or self.dtype == 'complex128':
|
|
np_data = np_data + 1j * np_data
|
|
|
|
np_res = np_data[:, [True, False, True, False], 4]
|
|
|
|
x = paddle.to_tensor(np_data, dtype=self.dtype)
|
|
y = x[:, [True, False, True, False], 4]
|
|
|
|
if self.dtype == 'bfloat16':
|
|
y = paddle.cast(y, dtype='float32')
|
|
|
|
np.testing.assert_allclose(y.numpy(), np_res)
|
|
|
|
def test_combined_index_11(self):
|
|
# only one bool tensor with all False
|
|
np_data = (
|
|
np.arange(3 * 4 * 5 * 6).reshape((3, 4, 5, 6)).astype(self.ndtype)
|
|
)
|
|
|
|
if self.dtype == 'bfloat16':
|
|
np_data = convert_uint16_to_float(convert_float_to_uint16(np_data))
|
|
if self.dtype == 'complex64' or self.dtype == 'complex128':
|
|
np_data = np_data + 1j * np_data
|
|
|
|
np_res = np_data[:, [False, False, False, False], 4]
|
|
|
|
x = paddle.to_tensor(np_data, dtype=self.dtype)
|
|
y = x[:, [False, False, False, False], 4]
|
|
|
|
if self.dtype == 'bfloat16':
|
|
y = paddle.cast(y, dtype='float32')
|
|
|
|
np.testing.assert_allclose(y.numpy(), np_res)
|
|
|
|
def test_combined_index_12(self):
|
|
np_data = (
|
|
np.arange(3 * 4 * 5 * 6).reshape((3, 4, 5, 6)).astype(self.ndtype)
|
|
)
|
|
|
|
if self.dtype == 'bfloat16':
|
|
np_data = convert_uint16_to_float(convert_float_to_uint16(np_data))
|
|
if self.dtype == 'complex64' or self.dtype == 'complex128':
|
|
np_data = np_data + 1j * np_data
|
|
|
|
np_res = np_data[:, :, [2, 4], :]
|
|
|
|
x = paddle.to_tensor(np_data, dtype=self.dtype)
|
|
y = x[:, :, [2, 4], :]
|
|
|
|
if self.dtype == 'bfloat16':
|
|
y = paddle.cast(y, dtype='float32')
|
|
|
|
np.testing.assert_allclose(y.numpy(), np_res)
|
|
|
|
def test_index_has_range(self):
|
|
np_data = (
|
|
np.arange(3 * 4 * 5 * 6).reshape((3, 4, 5, 6)).astype(self.ndtype)
|
|
)
|
|
|
|
if self.dtype == 'bfloat16':
|
|
np_data = convert_uint16_to_float(convert_float_to_uint16(np_data))
|
|
if self.dtype == 'complex64' or self.dtype == 'complex128':
|
|
np_data = np_data + 1j * np_data
|
|
|
|
np_res = np_data[:, range(3), 4]
|
|
|
|
x = paddle.to_tensor(np_data, dtype=self.dtype)
|
|
y = x[:, range(3), 4]
|
|
|
|
if self.dtype == 'bfloat16':
|
|
y = paddle.cast(y, dtype='float32')
|
|
|
|
np.testing.assert_allclose(y.numpy(), np_res)
|
|
|
|
def test_indexing_with_bool_list1(self):
|
|
# test bool-list indexing when axes num less than x.rank
|
|
np_data = (
|
|
np.arange(3 * 4 * 5 * 6).reshape((3, 4, 5, 6)).astype(self.ndtype)
|
|
)
|
|
|
|
if self.dtype == 'bfloat16':
|
|
np_data = convert_uint16_to_float(convert_float_to_uint16(np_data))
|
|
if self.dtype == 'complex64' or self.dtype == 'complex128':
|
|
np_data = np_data + 1j * np_data
|
|
|
|
np_res = np_data[[True, False, True], [False, False, False, True]]
|
|
|
|
x = paddle.to_tensor(np_data, dtype=self.dtype)
|
|
y = x[[True, False, True], [False, False, False, True]]
|
|
|
|
if self.dtype == 'bfloat16':
|
|
y = paddle.cast(y, dtype='float32')
|
|
|
|
np.testing.assert_allclose(y.numpy(), np_res)
|
|
|
|
def test_indexing_with_bool_list2(self):
|
|
# test bool-list indexing when axes num less than x.rank
|
|
np_data = (
|
|
np.arange(3 * 4 * 5 * 6).reshape((3, 4, 5, 6)).astype(self.ndtype)
|
|
)
|
|
|
|
if self.dtype == 'bfloat16':
|
|
np_data = convert_uint16_to_float(convert_float_to_uint16(np_data))
|
|
if self.dtype == 'complex64' or self.dtype == 'complex128':
|
|
np_data = np_data + 1j * np_data
|
|
|
|
np_res = np_data[
|
|
[True, False, True],
|
|
[False, False, True, False],
|
|
[True, False, False, True, False],
|
|
]
|
|
|
|
x = paddle.to_tensor(np_data, dtype=self.dtype)
|
|
y = x[
|
|
[True, False, True],
|
|
[False, False, True, False],
|
|
[True, False, False, True, False],
|
|
]
|
|
|
|
if self.dtype == 'bfloat16':
|
|
y = paddle.cast(y, dtype='float32')
|
|
|
|
np.testing.assert_allclose(y.numpy(), np_res)
|
|
|
|
def test_indexing_is_multi_dim_list(self):
|
|
# indexing is multi-dim int list, should be treat as one index, like numpy>=1.23
|
|
np_data = (
|
|
np.arange(3 * 4 * 5 * 6).reshape((6, 5, 4, 3)).astype(self.ndtype)
|
|
)
|
|
|
|
if self.dtype == 'bfloat16':
|
|
np_data = convert_uint16_to_float(convert_float_to_uint16(np_data))
|
|
if self.dtype == 'complex64' or self.dtype == 'complex128':
|
|
np_data = np_data + 1j * np_data
|
|
|
|
np_res = np_data[np.array([[2, 3, 4], [1, 2, 5]])]
|
|
|
|
x = paddle.to_tensor(np_data, dtype=self.dtype)
|
|
y = x[[[2, 3, 4], [1, 2, 5]]]
|
|
y_index_tensor = x[paddle.to_tensor([[2, 3, 4], [1, 2, 5]])]
|
|
|
|
if self.dtype == 'bfloat16':
|
|
y = paddle.cast(y, dtype='float32')
|
|
y_index_tensor = paddle.cast(y_index_tensor, dtype='float32')
|
|
np.testing.assert_allclose(y.numpy(), np_res)
|
|
np.testing.assert_allclose(y.numpy(), y_index_tensor.numpy())
|
|
|
|
def test_indexing_is_multi_negative_dim_list(self):
|
|
# indexing is multi-dim int list contains negative value.
|
|
np_data = (
|
|
np.arange(3 * 4 * 5 * 6).reshape((6, 5, 4, 3)).astype(self.ndtype)
|
|
)
|
|
|
|
if self.dtype == 'bfloat16':
|
|
np_data = convert_uint16_to_float(convert_float_to_uint16(np_data))
|
|
if self.dtype == 'complex64' or self.dtype == 'complex128':
|
|
np_data = np_data + 1j * np_data
|
|
|
|
index = [[2, -3, -4], [-1, 2, 5]]
|
|
np_res = np_data[np.array(index)]
|
|
|
|
x = paddle.to_tensor(np_data, dtype=self.dtype)
|
|
y = x[index]
|
|
y_index_tensor = x[paddle.to_tensor(index)]
|
|
|
|
if self.dtype == 'bfloat16':
|
|
y = paddle.cast(y, dtype='float32')
|
|
y_index_tensor = paddle.cast(y_index_tensor, dtype='float32')
|
|
np.testing.assert_allclose(y.numpy(), np_res)
|
|
np.testing.assert_allclose(y.numpy(), y_index_tensor.numpy())
|
|
|
|
def test_indexing_is_boolean_true(self):
|
|
# indexing is boolean, should improve rank of tensor and then treat it as advanced indexing.
|
|
np_data = (
|
|
np.arange(3 * 4 * 5 * 6).reshape((6, 5, 4, 3)).astype(self.ndtype)
|
|
)
|
|
|
|
if self.dtype == 'bfloat16':
|
|
np_data = convert_uint16_to_float(convert_float_to_uint16(np_data))
|
|
if self.dtype == 'complex64' or self.dtype == 'complex128':
|
|
np_data = np_data + 1j * np_data
|
|
|
|
np_res = np_data[True]
|
|
|
|
x = paddle.to_tensor(np_data, dtype=self.dtype)
|
|
y = x[True]
|
|
|
|
if self.dtype == 'bfloat16':
|
|
y = paddle.cast(y, dtype='float32')
|
|
|
|
np.testing.assert_allclose(y.numpy(), np_res)
|
|
|
|
def test_indexing_is_boolean_false(self):
|
|
# indexing is boolean, should improve rank of tensor and then treat it as advanced indexing.
|
|
np_data = (
|
|
np.arange(3 * 4 * 5 * 6).reshape((6, 5, 4, 3)).astype(self.ndtype)
|
|
)
|
|
|
|
if self.dtype == 'bfloat16':
|
|
np_data = convert_uint16_to_float(convert_float_to_uint16(np_data))
|
|
if self.dtype == 'complex64' or self.dtype == 'complex128':
|
|
np_data = np_data + 1j * np_data
|
|
|
|
np_res = np_data[1, False, 0]
|
|
|
|
x = paddle.to_tensor(np_data, dtype=self.dtype)
|
|
y = x[1, False, 0]
|
|
|
|
np.testing.assert_allclose(y.numpy(), np_res)
|
|
|
|
def test_input_strided_tensor(self):
|
|
base = paddle.to_tensor(
|
|
[5.0, 5.0, 6.0, 5.0, 5.0, 6.0], dtype=paddle.float64
|
|
)
|
|
foo_strided = paddle.as_strided(base, shape=(2, 1), stride=(2, 1))
|
|
|
|
base2 = paddle.to_tensor(
|
|
[0, 0, 1, 0, 1, 0, 0, 5, 5, 5, 5], dtype=paddle.int64
|
|
)
|
|
atype = paddle.as_strided(base2, shape=(2, 3), stride=(4, 1))
|
|
|
|
result = foo_strided[atype]
|
|
expected_result = paddle.to_tensor(
|
|
[[[5.0], [5.0], [6.0]], [[6.0], [5.0], [5.0]]], dtype=paddle.float64
|
|
)
|
|
|
|
np.testing.assert_allclose(result.numpy(), expected_result.numpy())
|
|
|
|
|
|
class TestMultipleIndexing(TestGetitemInDygraph):
|
|
def test_indexing_with_all_possible_start_end_step_dygraph(self):
|
|
np_data = np.arange(5 * 4 * 3 * 2).reshape((5, 4, 3, 2))
|
|
dim_size = np_data.shape[3]
|
|
for st in [*list(range(-dim_size - 1, dim_size + 2)), None]:
|
|
for ed in [*list(range(-dim_size - 1, dim_size + 2)), None]:
|
|
for step in list(range(-dim_size - 1, dim_size + 2)):
|
|
if step == 0:
|
|
continue
|
|
try:
|
|
np_res = np_data[:, :, st:ed:step, :]
|
|
except Exception as e:
|
|
# skip the invalid case use try-except strategy
|
|
continue
|
|
pd_data = paddle.to_tensor(np_data)
|
|
pd_res_out = pd_data[:, :, st:ed:step, :]
|
|
self.assertEqual(
|
|
pd_res_out.shape,
|
|
list(np_res.shape),
|
|
f"Failed indexing test in case: x.shape={np_data.shape}, slice=({st},{ed},{step})",
|
|
)
|
|
np.testing.assert_allclose(pd_res_out.numpy(), np_res)
|
|
|
|
def test_indexing_with_all_possible_start_end_step_dygraph_0_size(self):
|
|
np_data = np.arange(0 * 4 * 3 * 2).reshape((0, 4, 3, 2))
|
|
dim_size = np_data.shape[3]
|
|
for st in [*list(range(-dim_size - 1, dim_size + 2)), None]:
|
|
for ed in [*list(range(-dim_size - 1, dim_size + 2)), None]:
|
|
for step in list(range(-dim_size - 1, dim_size + 2)):
|
|
if step == 0:
|
|
continue
|
|
try:
|
|
np_res = np_data[:, :, st:ed:step, :]
|
|
except Exception as e:
|
|
# skip the invalid case use try-except strategy
|
|
continue
|
|
pd_data = paddle.to_tensor(np_data)
|
|
pd_res_out = pd_data[:, :, st:ed:step, :]
|
|
self.assertEqual(
|
|
pd_res_out.shape,
|
|
list(np_res.shape),
|
|
f"Failed indexing test in case: x.shape={np_data.shape}, slice=({st},{ed},{step})",
|
|
)
|
|
np.testing.assert_allclose(pd_res_out.numpy(), np_res)
|
|
|
|
def test_indexing_with_all_possible_start_end_step_dygraph_0_size_self(
|
|
self,
|
|
):
|
|
np_data = np.arange(5 * 4 * 0 * 2).reshape((5, 4, 0, 2))
|
|
dim_size = np_data.shape[3]
|
|
for st in [*list(range(-dim_size - 1, dim_size + 2)), None]:
|
|
for ed in [*list(range(-dim_size - 1, dim_size + 2)), None]:
|
|
for step in list(range(-dim_size - 1, dim_size + 2)):
|
|
if step == 0:
|
|
continue
|
|
try:
|
|
np_res = np_data[:, :, st:ed:step, :]
|
|
except Exception as e:
|
|
# skip the invalid case use try-except strategy
|
|
continue
|
|
pd_data = paddle.to_tensor(np_data)
|
|
pd_res_out = pd_data[:, :, st:ed:step, :]
|
|
self.assertEqual(
|
|
pd_res_out.shape,
|
|
list(np_res.shape),
|
|
f"Failed indexing test in case: x.shape={np_data.shape}, slice=({st},{ed},{step})",
|
|
)
|
|
np.testing.assert_allclose(pd_res_out.numpy(), np_res)
|
|
|
|
|
|
@unittest.skipIf(
|
|
not core.is_compiled_with_cuda()
|
|
or not core.is_float16_supported(core.CUDAPlace(0)),
|
|
"core is not compiled with CUDA and do not support bfloat16",
|
|
)
|
|
class TestFP16GetitemInDygraph(TestGetitemInDygraph):
|
|
def setUp(self):
|
|
paddle.disable_static()
|
|
self.ndtype = np.float16
|
|
self.dtype = 'float16'
|
|
|
|
|
|
@unittest.skipIf(
|
|
not core.is_compiled_with_cuda()
|
|
or not core.is_bfloat16_supported(core.CUDAPlace(0)),
|
|
"core is not compiled with CUDA and do not support bfloat16",
|
|
)
|
|
class TestBF16GetitemInDygraph(TestGetitemInDygraph):
|
|
def setUp(self):
|
|
paddle.disable_static()
|
|
self.ndtype = np.float32
|
|
self.dtype = 'bfloat16'
|
|
|
|
|
|
class TestFP32GetitemInDygraph(TestGetitemInDygraph):
|
|
def setUp(self):
|
|
paddle.disable_static()
|
|
self.ndtype = np.float32
|
|
self.dtype = 'float32'
|
|
|
|
|
|
class TestUINT8GetitemInDygraph(TestGetitemInDygraph):
|
|
def setUp(self):
|
|
paddle.disable_static()
|
|
self.ndtype = np.uint8
|
|
self.dtype = 'uint8'
|
|
|
|
|
|
class TestINT8GetitemInDygraph(TestGetitemInDygraph):
|
|
def setUp(self):
|
|
paddle.disable_static()
|
|
self.ndtype = np.int8
|
|
self.dtype = 'int8'
|
|
|
|
|
|
class TestINT16GetitemInDygraph(TestGetitemInDygraph):
|
|
def setUp(self):
|
|
paddle.disable_static()
|
|
self.ndtype = np.int16
|
|
self.dtype = 'int16'
|
|
|
|
|
|
class TestINT32GetitemInDygraph(TestGetitemInDygraph):
|
|
def setUp(self):
|
|
paddle.disable_static()
|
|
self.ndtype = np.int32
|
|
self.dtype = 'int32'
|
|
|
|
|
|
class TestINT64GetitemInDygraph(TestGetitemInDygraph):
|
|
def setUp(self):
|
|
paddle.disable_static()
|
|
self.ndtype = np.int64
|
|
self.dtype = 'int64'
|
|
|
|
|
|
class TestBOOLGetitemInDygraph(TestGetitemInDygraph):
|
|
def setUp(self):
|
|
paddle.disable_static()
|
|
self.ndtype = np.bool_
|
|
self.dtype = 'bool'
|
|
|
|
|
|
class TestComplex64GetitemInDygraph(TestGetitemInDygraph):
|
|
def setUp(self):
|
|
paddle.disable_static()
|
|
self.ndtype = np.float32
|
|
self.dtype = 'complex64'
|
|
|
|
|
|
class TestComplex128GetitemInDygraph(TestGetitemInDygraph):
|
|
def setUp(self):
|
|
paddle.disable_static()
|
|
self.ndtype = np.float64
|
|
self.dtype = 'complex128'
|
|
|
|
|
|
class TestGetitemGrad(unittest.TestCase):
|
|
def setUp(self):
|
|
paddle.disable_static()
|
|
self.ndtype = np.float64
|
|
self.dtype = 'float64'
|
|
|
|
def test_combined_index_1(self):
|
|
np_data = np.random.randn(3, 4, 5, 6).astype(self.ndtype)
|
|
res = np.zeros(np_data.shape)
|
|
res[[0, 1], :, [1, 2]] = 1
|
|
x = paddle.to_tensor(np_data, dtype=self.dtype, stop_gradient=False)
|
|
if self.dtype == 'bool':
|
|
x = x.astype('int')
|
|
y = x[[0, 1], :, [1, 2]]
|
|
z = y + 1
|
|
z.backward()
|
|
if self.dtype == 'bfloat16':
|
|
np.testing.assert_allclose(x.grad.cast('float32').numpy(), res)
|
|
elif self.dtype == 'bool':
|
|
self.assertIsNone(x.grad)
|
|
else:
|
|
np.testing.assert_allclose(x.grad.numpy(), res)
|
|
|
|
def test_combined_index_2(self):
|
|
np_data = np.random.randn(3, 4, 5, 6).astype(self.ndtype)
|
|
res = np.zeros(np_data.shape)
|
|
res[:, 1, [1, 2], 0] = 1
|
|
|
|
x = paddle.to_tensor(np_data, dtype=self.dtype, stop_gradient=False)
|
|
if self.dtype == 'bool':
|
|
x = x.astype('int')
|
|
np_res = np_data[:, 1, [1, 2], 0]
|
|
y = x[:, 1, [1, 2], 0]
|
|
z = y + 1
|
|
z.backward()
|
|
if self.dtype == 'bfloat16':
|
|
np.testing.assert_allclose(x.grad.cast('float32').numpy(), res)
|
|
elif self.dtype == 'bool':
|
|
self.assertIsNone(x.grad)
|
|
else:
|
|
np.testing.assert_allclose(x.grad.numpy(), res)
|
|
|
|
def test_combined_index_3(self):
|
|
np_data = np.random.randn(3, 4, 5, 6, 7).astype(self.ndtype)
|
|
res = np.zeros(np_data.shape)
|
|
res[[1, 0], :, [1, 4], 1:5:2, 4] = 1
|
|
|
|
x = paddle.to_tensor(np_data, dtype=self.dtype, stop_gradient=False)
|
|
if self.dtype == 'bool':
|
|
x = x.astype('int')
|
|
y = x[[1, 0], :, [1, 4], 1:5:2, 4]
|
|
z = y + 1
|
|
z.backward()
|
|
if self.dtype == 'bfloat16':
|
|
np.testing.assert_allclose(x.grad.cast('float32').numpy(), res)
|
|
elif self.dtype == 'bool':
|
|
self.assertIsNone(x.grad)
|
|
else:
|
|
np.testing.assert_allclose(x.grad.numpy(), res)
|
|
|
|
def test_combined_index_4(self):
|
|
np_data = np.random.randn(3, 4, 5, 6, 7).astype(self.ndtype)
|
|
res = np.zeros(np_data.shape)
|
|
res[:, [1, 0], 0:4:2, [2, 3], 4] = 1
|
|
|
|
x = paddle.to_tensor(np_data, dtype=self.dtype, stop_gradient=False)
|
|
if self.dtype == 'bool':
|
|
x = x.astype('int')
|
|
y = x[:, [1, 0], 0:4:2, [2, 3], 4]
|
|
z = y + 1
|
|
z.backward()
|
|
if self.dtype == 'bfloat16':
|
|
np.testing.assert_allclose(x.grad.cast('float32').numpy(), res)
|
|
elif self.dtype == 'bool':
|
|
self.assertIsNone(x.grad)
|
|
else:
|
|
np.testing.assert_allclose(x.grad.numpy(), res)
|
|
|
|
def test_combined_index_5(self):
|
|
np_data = np.random.randn(3, 4, 5, 6, 7).astype(self.ndtype)
|
|
res = np.zeros(np_data.shape)
|
|
res[::2, [1, 0], [2, 3], 0:4:2] = 1
|
|
|
|
x = paddle.to_tensor(np_data, dtype=self.dtype, stop_gradient=False)
|
|
if self.dtype == 'bool':
|
|
x = x.astype('int')
|
|
y = x[::2, [1, 0], [2, 3], 0:4:2]
|
|
z = y + 1
|
|
z.backward()
|
|
if self.dtype == 'bfloat16':
|
|
np.testing.assert_allclose(x.grad.cast('float32').numpy(), res)
|
|
elif self.dtype == 'bool':
|
|
self.assertIsNone(x.grad)
|
|
else:
|
|
np.testing.assert_allclose(x.grad.numpy(), res)
|
|
|
|
def test_combined_index_6(self):
|
|
np_data = np.random.randn(3, 4, 5, 6, 7).astype(self.ndtype)
|
|
res = np.zeros(np_data.shape)
|
|
res[::2, [1, 0], [2, 3], 0:4:2, [4, 6]] = 1
|
|
|
|
x = paddle.to_tensor(np_data, dtype=self.dtype, stop_gradient=False)
|
|
if self.dtype == 'bool':
|
|
x = x.astype('int')
|
|
y = x[::2, [1, 0], [2, 3], 0:4:2, [4, 6]]
|
|
z = y + 1
|
|
z.backward()
|
|
if self.dtype == 'bfloat16':
|
|
np.testing.assert_allclose(x.grad.cast('float32').numpy(), res)
|
|
elif self.dtype == 'bool':
|
|
self.assertIsNone(x.grad)
|
|
else:
|
|
np.testing.assert_allclose(x.grad.numpy(), res)
|
|
|
|
def test_combined_index_7(self):
|
|
np_data = np.random.randn(3, 4, 5, 6, 7).astype(self.ndtype)
|
|
res = np.zeros(np_data.shape)
|
|
res[::2, [[1, 0]], [[2, 3]], 0:4:2, [[4, 6]]] = 1
|
|
|
|
x = paddle.to_tensor(np_data, dtype=self.dtype, stop_gradient=False)
|
|
if self.dtype == 'bool':
|
|
x = x.astype('int')
|
|
y = x[::2, [[1, 0]], [[2, 3]], 0:4:2, [[4, 6]]]
|
|
z = y + 1
|
|
z.backward()
|
|
if self.dtype == 'bfloat16':
|
|
np.testing.assert_allclose(x.grad.cast('float32').numpy(), res)
|
|
elif self.dtype == 'bool':
|
|
self.assertIsNone(x.grad)
|
|
else:
|
|
np.testing.assert_allclose(x.grad.numpy(), res)
|
|
|
|
def test_combined_index_8(self):
|
|
np_data = np.random.randn(3, 4, 5, 6, 7).astype(self.ndtype)
|
|
res = np.zeros(np_data.shape)
|
|
res[[[1, 0], [0, 1]], [[2, 3], [1, 0]], 0:4:2, [[3, 5], [4, 2]]] = 1
|
|
|
|
x = paddle.to_tensor(np_data, dtype=self.dtype, stop_gradient=False)
|
|
if self.dtype == 'bool':
|
|
x = x.astype('int')
|
|
y = x[[[1, 0], [0, 1]], [[2, 3], [1, 0]], 0:4:2, [[3, 5], [4, 2]]]
|
|
z = y + 1
|
|
z.backward()
|
|
if self.dtype == 'bfloat16':
|
|
np.testing.assert_allclose(x.grad.cast('float32').numpy(), res)
|
|
elif self.dtype == 'bool':
|
|
self.assertIsNone(x.grad)
|
|
else:
|
|
np.testing.assert_allclose(x.grad.numpy(), res)
|
|
|
|
def test_combined_index_9(self):
|
|
np_data = np.random.randn(3, 4, 5, 6, 7).astype(self.ndtype)
|
|
res = np.zeros(np_data.shape)
|
|
res[[[1, 0]], [1, 0], 0:4:2, [[3, 5], [4, 2]]] = 1
|
|
|
|
x = paddle.to_tensor(np_data, dtype=self.dtype, stop_gradient=False)
|
|
if self.dtype == 'bool':
|
|
x = x.astype('int')
|
|
y = x[[[1, 0]], [1, 0], 0:4:2, [[3, 5], [4, 2]]]
|
|
z = y + 1
|
|
z.backward()
|
|
if self.dtype == 'bfloat16':
|
|
np.testing.assert_allclose(x.grad.cast('float32').numpy(), res)
|
|
elif self.dtype == 'bool':
|
|
self.assertIsNone(x.grad)
|
|
else:
|
|
np.testing.assert_allclose(x.grad.numpy(), res)
|
|
|
|
def test_combined_index_10(self):
|
|
np_data = np.random.randn(3, 4, 5, 6).astype(self.ndtype)
|
|
res = np.zeros(np_data.shape)
|
|
res[:, [True, False, True, False], 4] = 1
|
|
|
|
x = paddle.to_tensor(np_data, dtype=self.dtype, stop_gradient=False)
|
|
if self.dtype == 'bool':
|
|
x = x.astype('int')
|
|
y = x[:, [True, False, True, False], 4]
|
|
z = y + 1
|
|
z.backward()
|
|
if self.dtype == 'bfloat16':
|
|
np.testing.assert_allclose(x.grad.cast('float32').numpy(), res)
|
|
elif self.dtype == 'bool':
|
|
self.assertIsNone(x.grad)
|
|
else:
|
|
np.testing.assert_allclose(x.grad.numpy(), res)
|
|
|
|
def test_index_has_range(self):
|
|
np_data = (
|
|
np.arange(3 * 4 * 5 * 6).reshape((3, 4, 5, 6)).astype(self.ndtype)
|
|
)
|
|
res = np.zeros(np_data.shape)
|
|
res[:, range(3), 4] = 1
|
|
|
|
x = paddle.to_tensor(np_data, dtype=self.dtype, stop_gradient=False)
|
|
if self.dtype == 'bool':
|
|
x = x.astype('int')
|
|
y = x[:, range(3), 4]
|
|
z = y + 1
|
|
z.backward()
|
|
if self.dtype == 'bfloat16':
|
|
np.testing.assert_allclose(x.grad.cast('float32').numpy(), res)
|
|
elif self.dtype == 'bool':
|
|
self.assertIsNone(x.grad)
|
|
else:
|
|
np.testing.assert_allclose(x.grad.numpy(), res)
|
|
|
|
def test_indexing_with_bool_list1(self):
|
|
np_data = (
|
|
np.arange(3 * 4 * 5 * 6).reshape((3, 4, 5, 6)).astype(self.ndtype)
|
|
)
|
|
res = np.zeros(np_data.shape)
|
|
res[[True, False, True], [False, False, False, True]] = 1
|
|
|
|
x = paddle.to_tensor(np_data, dtype=self.dtype, stop_gradient=False)
|
|
if self.dtype == 'bool':
|
|
x = x.astype('int')
|
|
y = x[[True, False, True], [False, False, False, True]]
|
|
z = y + 1
|
|
z.backward()
|
|
if self.dtype == 'bfloat16':
|
|
np.testing.assert_allclose(x.grad.cast('float32').numpy(), res)
|
|
elif self.dtype == 'bool':
|
|
self.assertIsNone(x.grad)
|
|
else:
|
|
np.testing.assert_allclose(x.grad.numpy(), res)
|
|
|
|
def test_indexing_with_bool_list2(self):
|
|
np_data = (
|
|
np.arange(3 * 4 * 5 * 6).reshape((3, 4, 5, 6)).astype(self.ndtype)
|
|
)
|
|
res = np.zeros(np_data.shape)
|
|
res[
|
|
[True, False, True],
|
|
[False, False, True, False],
|
|
[True, False, False, True, False],
|
|
] = 1
|
|
|
|
x = paddle.to_tensor(np_data, dtype=self.dtype, stop_gradient=False)
|
|
if self.dtype == 'bool':
|
|
x = x.astype('int')
|
|
y = x[
|
|
[True, False, True],
|
|
[False, False, True, False],
|
|
[True, False, False, True, False],
|
|
]
|
|
z = y + 1
|
|
z.backward()
|
|
if self.dtype == 'bfloat16':
|
|
np.testing.assert_allclose(x.grad.cast('float32').numpy(), res)
|
|
elif self.dtype == 'bool':
|
|
self.assertIsNone(x.grad)
|
|
else:
|
|
np.testing.assert_allclose(x.grad.numpy(), res)
|
|
|
|
|
|
@unittest.skipIf(
|
|
not core.is_compiled_with_cuda()
|
|
or not core.is_float16_supported(core.CUDAPlace(0)),
|
|
"core is not compiled with CUDA and do not support bfloat16",
|
|
)
|
|
class TestFP16GetitemGradInDygraph(TestGetitemGrad):
|
|
def setUp(self):
|
|
paddle.disable_static()
|
|
self.ndtype = np.float16
|
|
self.dtype = 'float16'
|
|
|
|
|
|
@unittest.skipIf(
|
|
not core.is_compiled_with_cuda()
|
|
or not core.is_bfloat16_supported(core.CUDAPlace(0)),
|
|
"core is not compiled with CUDA and do not support bfloat16",
|
|
)
|
|
class TestBF16GetitemGradInDygraph(TestGetitemGrad):
|
|
def setUp(self):
|
|
paddle.disable_static()
|
|
self.ndtype = np.float32
|
|
self.dtype = 'bfloat16'
|
|
|
|
|
|
class TestFP32GetitemGradInDygraph(TestGetitemGrad):
|
|
def setUp(self):
|
|
paddle.disable_static()
|
|
self.ndtype = np.float32
|
|
self.dtype = 'float32'
|
|
|
|
|
|
class TestBOOLGetitemGradInDygraph(TestGetitemGrad):
|
|
def setUp(self):
|
|
paddle.disable_static()
|
|
self.ndtype = np.bool_
|
|
self.dtype = 'bool'
|
|
|
|
|
|
class TestINT8GetitemGradInDygraph(TestGetitemGrad):
|
|
def setUp(self):
|
|
paddle.disable_static()
|
|
self.ndtype = np.int8
|
|
self.dtype = 'int8'
|
|
|
|
|
|
class TestINT16GetitemGradInDygraph(TestGetitemGrad):
|
|
def setUp(self):
|
|
paddle.disable_static()
|
|
self.ndtype = np.int16
|
|
self.dtype = 'int16'
|
|
|
|
|
|
class TestINT32GetitemGradInDygraph(TestGetitemGrad):
|
|
def setUp(self):
|
|
paddle.disable_static()
|
|
self.ndtype = np.int32
|
|
self.dtype = 'int32'
|
|
|
|
|
|
class TestINT64GetitemGradInDygraph(TestGetitemGrad):
|
|
def setUp(self):
|
|
paddle.disable_static()
|
|
self.ndtype = np.int64
|
|
self.dtype = 'int64'
|
|
|
|
|
|
class TestComplex64GetitemGradInDygraph(TestGetitemGrad):
|
|
def setUp(self):
|
|
paddle.disable_static()
|
|
self.ndtype = np.float32
|
|
self.dtype = 'complex64'
|
|
|
|
|
|
class TestComplex128GetitemGradInDygraph(TestGetitemGrad):
|
|
def setUp(self):
|
|
paddle.disable_static()
|
|
self.ndtype = np.float64
|
|
self.dtype = 'complex128'
|
|
|
|
|
|
class TestGetitemInStatic(unittest.TestCase):
|
|
def setUp(self):
|
|
paddle.enable_static()
|
|
self.exe = paddle.static.Executor()
|
|
|
|
def test_combined_index_1(self):
|
|
# int tensor + slice (without decreasing axes)
|
|
np_data = np.random.randn(3, 4, 5, 6)
|
|
np_res = np_data[[0, 1], :, [1, 2]]
|
|
with paddle.static.program_guard(
|
|
paddle.static.Program(), paddle.static.Program()
|
|
):
|
|
x = paddle.to_tensor(np_data)
|
|
y = _getitem_static(x, ([0, 1], slice(None, None, None), [1, 2]))
|
|
res = self.exe.run(fetch_list=[y])
|
|
|
|
np.testing.assert_allclose(res[0], np_res)
|
|
|
|
def test_combined_index_2(self):
|
|
# int tensor + slice (with decreasing axes)
|
|
np_data = np.random.randn(3, 4, 5, 6)
|
|
np_res = np_data[:, 1, [1, 2], 0]
|
|
with paddle.static.program_guard(
|
|
paddle.static.Program(), paddle.static.Program()
|
|
):
|
|
x = paddle.to_tensor(np_data)
|
|
y = _getitem_static(x, (slice(None, None, None), 1, [1, 2], 0))
|
|
res = self.exe.run(fetch_list=[y])
|
|
|
|
np.testing.assert_allclose(res[0], np_res)
|
|
|
|
def test_combined_index_3(self):
|
|
# multiple int tensors, with one int tensor at first axis
|
|
np_data = np.random.randn(3, 4, 5, 6, 7)
|
|
np_res = np_data[[1, 0], :, [1, 4], 1:5:2, 4]
|
|
with paddle.static.program_guard(
|
|
paddle.static.Program(), paddle.static.Program()
|
|
):
|
|
x = paddle.to_tensor(np_data)
|
|
y = _getitem_static(
|
|
x, ([1, 0], slice(None, None, None), [1, 4], slice(1, 5, 2), 4)
|
|
)
|
|
res = self.exe.run(fetch_list=[y])
|
|
|
|
np.testing.assert_allclose(res[0], np_res)
|
|
|
|
def test_combined_index_4(self):
|
|
# multiple not adjacent int tensors, with no int tensor at first axis
|
|
np_data = np.random.randn(3, 4, 5, 6, 7)
|
|
np_res = np_data[:, [1, 0], 0:4:2, [2, 3], 4]
|
|
with paddle.static.program_guard(
|
|
paddle.static.Program(), paddle.static.Program()
|
|
):
|
|
x = paddle.to_tensor(np_data)
|
|
y = _getitem_static(
|
|
x, (slice(None, None, None), [1, 0], slice(0, 4, 2), [2, 3], 4)
|
|
)
|
|
res = self.exe.run(fetch_list=[y])
|
|
|
|
np.testing.assert_allclose(res[0], np_res)
|
|
|
|
def test_combined_index_5(self):
|
|
# multiple adjacent int tensors, with no int tensor at first axis
|
|
np_data = np.random.randn(3, 4, 5, 6, 7)
|
|
np_res = np_data[::2, [1, 0], [2, 3], 0:4:2]
|
|
with paddle.static.program_guard(
|
|
paddle.static.Program(), paddle.static.Program()
|
|
):
|
|
x = paddle.to_tensor(np_data)
|
|
y = _getitem_static(
|
|
x, (slice(None, None, 2), [1, 0], [2, 3], slice(0, 4, 2))
|
|
)
|
|
res = self.exe.run(fetch_list=[y])
|
|
|
|
np.testing.assert_allclose(res[0], np_res)
|
|
|
|
def test_combined_index_6(self):
|
|
# multiple adjacent and not adjacent int tensors, with no int tensor at first axis
|
|
np_data = np.random.randn(3, 4, 5, 6, 7)
|
|
np_res = np_data[::2, [1, 0], [2, 3], 0:4:2, [4, 6]]
|
|
with paddle.static.program_guard(
|
|
paddle.static.Program(), paddle.static.Program()
|
|
):
|
|
x = paddle.to_tensor(np_data)
|
|
y = _getitem_static(
|
|
x,
|
|
(slice(None, None, 2), [1, 0], [2, 3], slice(0, 4, 2), [4, 6]),
|
|
)
|
|
res = self.exe.run(fetch_list=[y])
|
|
|
|
np.testing.assert_allclose(res[0], np_res)
|
|
|
|
def test_combined_index_7(self):
|
|
# multiple adjacent and not adjacent int tensors (rank > 1d), with no int tensor at first axis
|
|
np_data = np.random.randn(3, 4, 5, 6, 7)
|
|
np_res = np_data[::2, [[1, 0]], [[2, 3]], 0:4:2, [[4, 6]]]
|
|
with paddle.static.program_guard(
|
|
paddle.static.Program(), paddle.static.Program()
|
|
):
|
|
x = paddle.to_tensor(np_data)
|
|
y = _getitem_static(
|
|
x,
|
|
(
|
|
slice(None, None, 2),
|
|
[[1, 0]],
|
|
[[2, 3]],
|
|
slice(0, 4, 2),
|
|
[[4, 6]],
|
|
),
|
|
)
|
|
res = self.exe.run(fetch_list=[y])
|
|
|
|
np.testing.assert_allclose(res[0], np_res)
|
|
|
|
def test_combined_index_8(self):
|
|
# multiple adjacent and not adjacent int tensors (rank > 1d), with int tensor at first axis
|
|
np_data = np.random.randn(3, 4, 5, 6, 7)
|
|
np_res = np_data[
|
|
[[1, 0], [0, 1]], [[2, 3], [1, 0]], 0:4:2, [[3, 5], [4, 2]]
|
|
]
|
|
with paddle.static.program_guard(
|
|
paddle.static.Program(), paddle.static.Program()
|
|
):
|
|
x = paddle.to_tensor(np_data)
|
|
y = _getitem_static(
|
|
x,
|
|
(
|
|
[[1, 0], [0, 1]],
|
|
[[2, 3], [1, 0]],
|
|
slice(0, 4, 2),
|
|
[[3, 5], [4, 2]],
|
|
),
|
|
)
|
|
res = self.exe.run(fetch_list=[y])
|
|
|
|
np.testing.assert_allclose(res[0], np_res)
|
|
|
|
def test_combined_index_9(self):
|
|
# multiple int tensors, with broadcast.
|
|
np_data = np.random.randn(3, 4, 5, 6, 7)
|
|
np_res = np_data[[[1, 0]], [1, 0], 0:4:2, [[3, 5], [4, 2]]]
|
|
with paddle.static.program_guard(
|
|
paddle.static.Program(), paddle.static.Program()
|
|
):
|
|
x = paddle.to_tensor(np_data)
|
|
y = _getitem_static(
|
|
x, ([[1, 0]], [1, 0], slice(0, 4, 2), [[3, 5], [4, 2]])
|
|
)
|
|
res = self.exe.run(fetch_list=[y])
|
|
|
|
np.testing.assert_allclose(res[0], np_res)
|
|
|
|
def test_combined_index_10(self):
|
|
# only one bool tensor with basic-index
|
|
np_data = np.random.randn(3, 4, 5, 6)
|
|
np_res = np_data[:, [True, False, True, False], 4]
|
|
with paddle.static.program_guard(
|
|
paddle.static.Program(), paddle.static.Program()
|
|
):
|
|
x = paddle.to_tensor(np_data)
|
|
y = _getitem_static(
|
|
x, (slice(None, None, None), [True, False, True, False], 4)
|
|
)
|
|
res = self.exe.run(fetch_list=[y])
|
|
|
|
np.testing.assert_allclose(res[0], np_res)
|
|
|
|
def test_combined_index_11(self):
|
|
# only one bool tensor with all False
|
|
np_data = np.arange(3 * 4 * 5 * 6).reshape((3, 4, 5, 6))
|
|
np_res = np_data[:, [False, False, False, False], 4]
|
|
with paddle.static.program_guard(
|
|
paddle.static.Program(), paddle.static.Program()
|
|
):
|
|
x = paddle.to_tensor(np_data)
|
|
y = _getitem_static(
|
|
x, (slice(None, None, None), [False, False, False, False], 4)
|
|
)
|
|
res = self.exe.run(fetch_list=[y])
|
|
|
|
np.testing.assert_allclose(res[0], np_res)
|
|
|
|
def test_combined_index_12(self):
|
|
np_data = np.arange(3 * 4 * 5 * 6).reshape((3, 4, 5, 6))
|
|
np_res = np_data[:, :, [2, 4], :]
|
|
with paddle.static.program_guard(
|
|
paddle.static.Program(), paddle.static.Program()
|
|
):
|
|
x = paddle.to_tensor(np_data)
|
|
y = _getitem_static(
|
|
x, (slice(None), slice(None), [2, 4], slice(None))
|
|
)
|
|
res = self.exe.run(fetch_list=[y])
|
|
|
|
np.testing.assert_allclose(res[0], np_res)
|
|
|
|
def test_indexing_with_all_possible_start_end_step(self):
|
|
np_data = np.arange(5 * 4 * 3 * 2).reshape((5, 4, 3, 2))
|
|
dim_size = np_data.shape[3]
|
|
with paddle.static.program_guard(
|
|
paddle.static.Program(), paddle.static.Program()
|
|
):
|
|
for st in [-dim_size - 1, dim_size + 1, 0, None]:
|
|
for ed in [-dim_size - 1, dim_size + 1, 0, None]:
|
|
for step in [-dim_size - 1, dim_size + 1, 0]:
|
|
if step == 0:
|
|
continue
|
|
try:
|
|
np_res = np_data[:, :, st:ed:step, :]
|
|
except Exception as e:
|
|
# skip the invalid case use try-except strategy
|
|
continue
|
|
pd_data = paddle.to_tensor(np_data)
|
|
pd_res = _getitem_static(
|
|
pd_data,
|
|
(
|
|
slice(None),
|
|
slice(None),
|
|
slice(st, ed, step),
|
|
slice(None),
|
|
),
|
|
)
|
|
(pd_res_out,) = self.exe.run(fetch_list=[pd_res])
|
|
|
|
np.testing.assert_allclose(
|
|
pd_res_out,
|
|
np_res,
|
|
err_msg=f"Failed indexing test in case: x.shape={np_data.shape}, slice=({st},{ed},{step})",
|
|
)
|
|
|
|
def test_indexing_with_all_possible_start_end_step_0_size(self):
|
|
np_data = np.arange(0 * 4 * 3 * 2).reshape((0, 4, 3, 2))
|
|
dim_size = np_data.shape[3]
|
|
with paddle.static.program_guard(
|
|
paddle.static.Program(), paddle.static.Program()
|
|
):
|
|
for st in [-dim_size - 1, dim_size + 1, 0, None]:
|
|
for ed in [-dim_size - 1, dim_size + 1, 0, None]:
|
|
for step in [-dim_size - 1, dim_size + 1, 0]:
|
|
if step == 0:
|
|
continue
|
|
try:
|
|
np_res = np_data[:, :, st:ed:step, :]
|
|
except Exception as e:
|
|
# skip the invalid case use try-except strategy
|
|
continue
|
|
pd_data = paddle.to_tensor(np_data)
|
|
pd_res = _getitem_static(
|
|
pd_data,
|
|
(
|
|
slice(None),
|
|
slice(None),
|
|
slice(st, ed, step),
|
|
slice(None),
|
|
),
|
|
)
|
|
(pd_res_out,) = self.exe.run(fetch_list=[pd_res])
|
|
|
|
np.testing.assert_allclose(
|
|
pd_res_out,
|
|
np_res,
|
|
err_msg=f"Failed indexing test in case: x.shape={np_data.shape}, slice=({st},{ed},{step})",
|
|
)
|
|
|
|
def test_indexing_with_all_possible_start_end_step_0_size_self(self):
|
|
np_data = np.arange(5 * 4 * 0 * 2).reshape((5, 4, 0, 2))
|
|
dim_size = np_data.shape[3]
|
|
with paddle.static.program_guard(
|
|
paddle.static.Program(), paddle.static.Program()
|
|
):
|
|
for st in [-dim_size - 1, dim_size + 1, 0, None]:
|
|
for ed in [-dim_size - 1, dim_size + 1, 0, None]:
|
|
for step in [-dim_size - 1, dim_size + 1, 0]:
|
|
if step == 0:
|
|
continue
|
|
try:
|
|
np_res = np_data[:, :, st:ed:step, :]
|
|
except Exception as e:
|
|
# skip the invalid case use try-except strategy
|
|
continue
|
|
pd_data = paddle.to_tensor(np_data)
|
|
pd_res = _getitem_static(
|
|
pd_data,
|
|
(
|
|
slice(None),
|
|
slice(None),
|
|
slice(st, ed, step),
|
|
slice(None),
|
|
),
|
|
)
|
|
(pd_res_out,) = self.exe.run(fetch_list=[pd_res])
|
|
|
|
np.testing.assert_allclose(
|
|
pd_res_out,
|
|
np_res,
|
|
err_msg=f"Failed indexing test in case: x.shape={np_data.shape}, slice=({st},{ed},{step})",
|
|
)
|
|
|
|
def test_index_has_range(self):
|
|
# only one bool tensor with all False
|
|
np_data = np.arange(3 * 4 * 5 * 6).reshape((3, 4, 5, 6))
|
|
np_res = np_data[:, range(3), 4]
|
|
with paddle.static.program_guard(
|
|
paddle.static.Program(), paddle.static.Program()
|
|
):
|
|
x = paddle.to_tensor(np_data)
|
|
y = _getitem_static(x, (slice(None, None, None), range(3), 4))
|
|
res = self.exe.run(fetch_list=[y])
|
|
|
|
np.testing.assert_allclose(res[0], np_res)
|
|
|
|
def test_indexing_with_bool_list1(self):
|
|
# test bool-list indexing when axes num less than x.rank
|
|
np_data = np.arange(3 * 4 * 5 * 6).reshape((3, 4, 5, 6))
|
|
np_res = np_data[[True, False, True], [False, False, False, True]]
|
|
|
|
with paddle.static.program_guard(
|
|
paddle.static.Program(), paddle.static.Program()
|
|
):
|
|
x = paddle.to_tensor(np_data)
|
|
y = _getitem_static(
|
|
x, ([True, False, True], [False, False, False, True])
|
|
)
|
|
res = self.exe.run(fetch_list=[y])
|
|
|
|
np.testing.assert_allclose(res[0], np_res)
|
|
|
|
def test_indexing_with_bool_list2(self):
|
|
# test bool-list indexing when axes num less than x.rank
|
|
np_data = np.arange(3 * 4 * 5 * 6).reshape((3, 4, 5, 6))
|
|
np_res = np_data[
|
|
[True, False, True],
|
|
[False, False, True, False],
|
|
[True, False, False, True, False],
|
|
]
|
|
with paddle.static.program_guard(
|
|
paddle.static.Program(), paddle.static.Program()
|
|
):
|
|
x = paddle.to_tensor(np_data)
|
|
y = _getitem_static(
|
|
x,
|
|
(
|
|
[True, False, True],
|
|
[False, False, True, False],
|
|
[True, False, False, True, False],
|
|
),
|
|
)
|
|
res = self.exe.run(fetch_list=[y])
|
|
|
|
np.testing.assert_allclose(res[0], np_res)
|
|
|
|
def test_indexing_is_multi_dim_list(self):
|
|
# indexing is multi-dim int list, should be treat as one index, like numpy>=1.23
|
|
np_data = np.arange(3 * 4 * 5 * 6).reshape((6, 5, 4, 3))
|
|
np_res = np_data[np.array([[2, 3, 4], [1, 2, 5]])]
|
|
with paddle.static.program_guard(
|
|
paddle.static.Program(), paddle.static.Program()
|
|
):
|
|
x = paddle.to_tensor(np_data)
|
|
y = _getitem_static(x, ([[2, 3, 4], [1, 2, 5]]))
|
|
y_index_tensor = _getitem_static(
|
|
x, paddle.to_tensor([[2, 3, 4], [1, 2, 5]])
|
|
)
|
|
|
|
res = self.exe.run(fetch_list=[y, y_index_tensor])
|
|
|
|
np.testing.assert_allclose(res[0], np_res)
|
|
np.testing.assert_allclose(res[1], np_res)
|
|
|
|
def test_indexing_is_multi_negative_dim_list(self):
|
|
# indexing is multi-dim int list contains negative value,
|
|
# should be treat as one index, like numpy>=1.23
|
|
np_data = np.arange(3 * 4 * 5 * 6).reshape((6, 5, 4, 3))
|
|
index = [[2, -3, -4], [-1, 2, 5]]
|
|
np_res = np_data[np.array(index)]
|
|
with paddle.static.program_guard(
|
|
paddle.static.Program(), paddle.static.Program()
|
|
):
|
|
x = paddle.to_tensor(np_data)
|
|
y = _getitem_static(x, (index))
|
|
y_index_tensor = _getitem_static(x, paddle.to_tensor(index))
|
|
|
|
res = self.exe.run(fetch_list=[y, y_index_tensor])
|
|
|
|
np.testing.assert_allclose(res[0], np_res)
|
|
np.testing.assert_allclose(res[1], np_res)
|
|
|
|
def test_indexing_is_boolean_true(self):
|
|
# indexing is boolean, should improve rank of tensor and then treat it as advanced indexing.
|
|
np_data = np.arange(3 * 4 * 5 * 6).reshape((6, 5, 4, 3))
|
|
np_res = np_data[True]
|
|
|
|
with paddle.static.program_guard(
|
|
paddle.static.Program(), paddle.static.Program()
|
|
):
|
|
x = paddle.to_tensor(np_data)
|
|
y = _getitem_static(x, True)
|
|
|
|
res = self.exe.run(fetch_list=[y])
|
|
|
|
np.testing.assert_allclose(res[0], np_res)
|
|
|
|
def test_indexing_is_boolean_false(self):
|
|
# indexing is boolean, should improve rank of tensor and then treat it as advanced indexing.
|
|
np_data = np.arange(3 * 4 * 5 * 6).reshape((6, 5, 4, 3))
|
|
np_res = np_data[1, False, 0]
|
|
|
|
with paddle.static.program_guard(
|
|
paddle.static.Program(), paddle.static.Program()
|
|
):
|
|
x = paddle.to_tensor(np_data)
|
|
y = _getitem_static(x, (1, False, 0))
|
|
|
|
res = self.exe.run(fetch_list=[y])
|
|
|
|
np.testing.assert_allclose(res[0], np_res)
|
|
|
|
|
|
class TestGetitemBasicIndexOutputView(unittest.TestCase):
|
|
def setUp(self):
|
|
# Stride now only supports in dygraph mode
|
|
paddle.disable_static()
|
|
|
|
def test_index_is_int(self):
|
|
np_data = np.ones((5, 5, 5), dtype='float32')
|
|
np_tmp = np_data[3, 2]
|
|
np_tmp[2] = 20
|
|
|
|
x = paddle.ones((5, 5, 5), dtype='float32')
|
|
x_tmp = x[3, 2]
|
|
x_tmp[2] = 20
|
|
|
|
np.testing.assert_allclose(x.numpy(), np_data)
|
|
|
|
def test_index_is_0dTensor(self):
|
|
np_data = np.ones((5, 5, 5), dtype='float32')
|
|
np_tmp = np_data[3, 2]
|
|
np_tmp[2] = 20
|
|
|
|
x = paddle.ones((5, 5, 5), dtype='float32')
|
|
x_tmp = x[paddle.to_tensor(3), paddle.to_tensor(2)]
|
|
x_tmp[2] = 20
|
|
|
|
np.testing.assert_allclose(x.numpy(), np_data)
|
|
|
|
def test_index_is_slice(self):
|
|
np_data = np.ones((5, 5, 5), dtype='float32')
|
|
np_tmp = np_data[::2, :, 0:4]
|
|
np_tmp[2] = 20
|
|
|
|
x = paddle.ones((5, 5, 5), dtype='float32')
|
|
x_tmp = x[::2, :, 0:4]
|
|
x_tmp[2] = 20
|
|
|
|
np.testing.assert_allclose(x.numpy(), np_data)
|
|
|
|
def test_index_is_None(self):
|
|
np_data = np.ones((5, 5, 5), dtype='float32')
|
|
np_tmp = np_data[None]
|
|
np_tmp[:, 2] = 20
|
|
|
|
x = paddle.ones((5, 5, 5), dtype='float32')
|
|
x_tmp = x[None]
|
|
x_tmp[:, 2] = 20
|
|
|
|
np.testing.assert_allclose(x.numpy(), np_data)
|
|
|
|
def test_index_is_ellipsis(self):
|
|
np_data = np.ones((5, 5, 5), dtype='float32')
|
|
np_tmp = np_data[...]
|
|
np_tmp[2] = 20
|
|
|
|
x = paddle.ones((5, 5, 5), dtype='float32')
|
|
x_tmp = x[...]
|
|
x_tmp[2] = 20
|
|
|
|
np.testing.assert_allclose(x.numpy(), np_data)
|
|
|
|
|
|
class TestGetItemErrorCase(unittest.TestCase):
|
|
def setUp(self):
|
|
paddle.disable_static()
|
|
|
|
def test_bool_shape_error1(self):
|
|
x = paddle.randn((4, 3, 2))
|
|
with self.assertRaises(IndexError):
|
|
y = _getitem_static(x, ([True, False]))
|
|
|
|
def test_bool_shape_error2(self):
|
|
x = paddle.randn((4, 3, 2))
|
|
with self.assertRaises(IndexError):
|
|
y = _getitem_static(x, (1, paddle.to_tensor([True, False]), [0, 1]))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|