1070 lines
36 KiB
Python
1070 lines
36 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,
|
|
)
|
|
from utils import dygraph_guard, static_guard
|
|
|
|
import paddle
|
|
from paddle import base
|
|
from paddle.base import core
|
|
|
|
|
|
class TestClipOp(OpTest):
|
|
def setUp(self):
|
|
self.max_relative_error = 0.006
|
|
self.python_api = paddle.clip
|
|
self.public_python_api = paddle.clip
|
|
|
|
self.inputs = {}
|
|
self.initTestCase()
|
|
|
|
self.op_type = "clip"
|
|
self.prim_op_type = "comp"
|
|
self.attrs = {}
|
|
self.attrs['min'] = self.min
|
|
self.attrs['max'] = self.max
|
|
if 'Min' in self.inputs:
|
|
min_v = self.inputs['Min']
|
|
else:
|
|
min_v = self.attrs['min']
|
|
|
|
if 'Max' in self.inputs:
|
|
max_v = self.inputs['Max']
|
|
else:
|
|
max_v = self.attrs['max']
|
|
|
|
input = self.generate_input()
|
|
input[np.abs(input - min_v) < self.max_relative_error] = 0.5
|
|
input[np.abs(input - max_v) < self.max_relative_error] = 0.5
|
|
self.inputs['X'] = input
|
|
self.outputs = {'Out': np.clip(self.inputs['X'], min_v, max_v)}
|
|
self.check_cinn = ('Min' not in self.inputs) and (
|
|
'Max' not in self.inputs
|
|
)
|
|
|
|
def test_check_output(self):
|
|
paddle.enable_static()
|
|
self.check_output(
|
|
check_cinn=self.check_cinn,
|
|
check_pir=True,
|
|
check_prim_pir=True,
|
|
check_symbol_infer=False,
|
|
)
|
|
paddle.disable_static()
|
|
|
|
def test_check_grad_normal(self):
|
|
paddle.enable_static()
|
|
self.check_grad(['X'], 'Out', check_pir=True, check_prim_pir=True)
|
|
paddle.disable_static()
|
|
|
|
def initTestCase(self):
|
|
self.dtype = np.float32
|
|
self.shape = (4, 10, 10)
|
|
self.max = 0.8
|
|
self.min = 0.3
|
|
self.inputs['Max'] = np.array([0.8]).astype(self.dtype)
|
|
self.inputs['Min'] = np.array([0.1]).astype(self.dtype)
|
|
|
|
def generate_input(self):
|
|
return np.random.random(self.shape).astype(self.dtype)
|
|
|
|
|
|
class TestCase1(TestClipOp):
|
|
def initTestCase(self):
|
|
self.dtype = np.float32
|
|
self.shape = (8, 16, 8)
|
|
self.max = 0.7
|
|
self.min = 0.0
|
|
|
|
|
|
class TestCase2(TestClipOp):
|
|
def initTestCase(self):
|
|
self.dtype = np.float32
|
|
self.shape = (8, 16)
|
|
self.max = 1.0
|
|
self.min = 0.0
|
|
|
|
|
|
class TestCase3(TestClipOp):
|
|
def initTestCase(self):
|
|
self.dtype = np.float32
|
|
self.shape = (4, 8, 16)
|
|
self.max = 0.7
|
|
self.min = 0.2
|
|
|
|
|
|
class TestCase4(TestClipOp):
|
|
def initTestCase(self):
|
|
self.dtype = np.float32
|
|
self.shape = (4, 8, 8)
|
|
self.max = 0.7
|
|
self.min = 0.2
|
|
self.inputs['Max'] = np.array([0.8]).astype(self.dtype)
|
|
self.inputs['Min'] = np.array([0.3]).astype(self.dtype)
|
|
|
|
|
|
class TestCase5(TestClipOp):
|
|
def initTestCase(self):
|
|
self.dtype = np.float32
|
|
self.shape = (4, 8, 16)
|
|
self.max = 0.5
|
|
self.min = 0.5
|
|
|
|
|
|
class TestCase6(TestClipOp):
|
|
def initTestCase(self):
|
|
self.dtype = np.float32
|
|
self.shape = (4, 8, 16)
|
|
self.max = 1.0
|
|
self.min = 0.5
|
|
|
|
def generate_input(self):
|
|
return np.random.choice([self.min, self.max], self.shape).astype(
|
|
self.dtype
|
|
)
|
|
|
|
|
|
class TestFP16Case1(TestClipOp):
|
|
def initTestCase(self):
|
|
self.dtype = np.float16
|
|
self.shape = (8, 16, 8)
|
|
self.max = 0.7
|
|
self.min = 0.0
|
|
|
|
|
|
class TestFP16Case2(TestClipOp):
|
|
def initTestCase(self):
|
|
self.dtype = np.float16
|
|
self.shape = (8, 16)
|
|
self.max = 1.0
|
|
self.min = 0.0
|
|
|
|
|
|
class TestFP16Case3(TestClipOp):
|
|
def initTestCase(self):
|
|
self.dtype = np.float16
|
|
self.shape = (4, 8, 16)
|
|
self.max = 0.7
|
|
self.min = 0.2
|
|
|
|
|
|
class TestFP16Case4(TestClipOp):
|
|
def initTestCase(self):
|
|
self.dtype = np.float16
|
|
self.shape = (4, 8, 8)
|
|
self.max = 0.7
|
|
self.min = 0.2
|
|
self.inputs['Max'] = np.array([0.8]).astype(self.dtype)
|
|
self.inputs['Min'] = np.array([0.3]).astype(self.dtype)
|
|
|
|
|
|
class TestFP16Case5(TestClipOp):
|
|
def initTestCase(self):
|
|
self.dtype = np.float16
|
|
self.shape = (4, 8, 16)
|
|
self.max = 0.5
|
|
self.min = 0.5
|
|
|
|
|
|
class TestFP16Case6(TestClipOp):
|
|
def initTestCase(self):
|
|
self.dtype = np.float16
|
|
self.shape = (4, 8, 16)
|
|
self.max = 1.0
|
|
self.min = 0.5
|
|
|
|
def generate_input(self):
|
|
return np.random.choice([self.min, self.max], self.shape).astype(
|
|
self.dtype
|
|
)
|
|
|
|
|
|
class TestCase_ZeroSize(TestClipOp):
|
|
def initTestCase(self):
|
|
self.dtype = np.float32
|
|
self.shape = (4, 0, 16)
|
|
self.max = 0.5
|
|
self.min = 0.5
|
|
|
|
|
|
@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 the bfloat16",
|
|
)
|
|
class TestClipBF16Op(OpTest):
|
|
def setUp(self):
|
|
self.max_relative_error = 0.006
|
|
self.python_api = paddle.clip
|
|
self.public_python_api = paddle.clip
|
|
|
|
self.inputs = {}
|
|
self.initTestCase()
|
|
|
|
self.op_type = "clip"
|
|
self.prim_op_type = "comp"
|
|
self.attrs = {}
|
|
self.attrs['min'] = self.min
|
|
self.attrs['max'] = self.max
|
|
if 'Min' in self.inputs:
|
|
min_v = self.inputs['Min']
|
|
else:
|
|
min_v = self.attrs['min']
|
|
|
|
if 'Max' in self.inputs:
|
|
max_v = self.inputs['Max']
|
|
else:
|
|
max_v = self.attrs['max']
|
|
|
|
input = np.random.random(self.shape).astype(np.float32)
|
|
input[np.abs(input - min_v) < self.max_relative_error] = 0.5
|
|
input[np.abs(input - max_v) < self.max_relative_error] = 0.5
|
|
self.inputs['X'] = convert_float_to_uint16(input)
|
|
out = np.clip(input, min_v, max_v)
|
|
self.outputs = {'Out': convert_float_to_uint16(out)}
|
|
|
|
def test_check_output(self):
|
|
if paddle.is_compiled_with_cuda() or is_custom_device():
|
|
place = get_device_place()
|
|
paddle.enable_static()
|
|
self.check_output_with_place(
|
|
place,
|
|
check_pir=True,
|
|
check_prim_pir=True,
|
|
check_symbol_infer=False,
|
|
)
|
|
paddle.disable_static()
|
|
|
|
def test_check_grad_normal(self):
|
|
if paddle.is_compiled_with_cuda() or is_custom_device():
|
|
place = get_device_place()
|
|
paddle.enable_static()
|
|
self.check_grad_with_place(place, ['X'], 'Out', check_pir=True)
|
|
paddle.disable_static()
|
|
|
|
def initTestCase(self):
|
|
self.shape = (4, 10, 10)
|
|
self.max = 0.8
|
|
self.min = 0.3
|
|
self.inputs['Max'] = np.array([0.8]).astype(np.float32)
|
|
self.inputs['Min'] = np.array([0.1]).astype(np.float32)
|
|
|
|
|
|
class TestBF16Case1(TestClipBF16Op):
|
|
def initTestCase(self):
|
|
self.shape = (8, 16, 8)
|
|
self.max = 0.7
|
|
self.min = 0.0
|
|
|
|
|
|
class TestBF16Case2(TestClipBF16Op):
|
|
def initTestCase(self):
|
|
self.shape = (8, 16)
|
|
self.max = 1.0
|
|
self.min = 0.0
|
|
|
|
|
|
class TestBF16Case3(TestClipBF16Op):
|
|
def initTestCase(self):
|
|
self.shape = (4, 8, 16)
|
|
self.max = 0.7
|
|
self.min = 0.2
|
|
|
|
|
|
class TestBF16Case4(TestClipBF16Op):
|
|
def initTestCase(self):
|
|
self.shape = (4, 8, 8)
|
|
self.max = 0.7
|
|
self.min = 0.2
|
|
self.inputs['Max'] = np.array([0.8]).astype(np.float32)
|
|
self.inputs['Min'] = np.array([0.3]).astype(np.float32)
|
|
|
|
|
|
class TestBF16Case5(TestClipBF16Op):
|
|
def initTestCase(self):
|
|
self.shape = (4, 8, 16)
|
|
self.max = 0.5
|
|
self.min = 0.5
|
|
|
|
|
|
class TestClipOpError(unittest.TestCase):
|
|
def test_errors(self):
|
|
paddle.enable_static()
|
|
with paddle.static.program_guard(
|
|
paddle.static.Program(), paddle.static.Program()
|
|
):
|
|
input_data = np.random.random((2, 4)).astype("float32")
|
|
|
|
def test_Variable():
|
|
paddle.clip(x=input_data, min=-1.0, max=1.0)
|
|
|
|
self.assertRaises(TypeError, test_Variable)
|
|
paddle.disable_static()
|
|
|
|
|
|
class TestClipAPI(unittest.TestCase):
|
|
def _executed_api(self, x, min=None, max=None):
|
|
return paddle.clip(x, min, max)
|
|
|
|
def test_clip(self):
|
|
paddle.enable_static()
|
|
data_shape = [1, 9, 9, 4]
|
|
data = np.random.random(data_shape).astype('float32')
|
|
place = (
|
|
get_device_place()
|
|
if (base.core.is_compiled_with_cuda() or is_custom_device())
|
|
else base.CPUPlace()
|
|
)
|
|
exe = base.Executor(place)
|
|
|
|
main = paddle.static.Program()
|
|
startup = paddle.static.Program()
|
|
with paddle.static.program_guard(main, startup):
|
|
images = paddle.static.data(
|
|
name='image', shape=data_shape, dtype='float32'
|
|
)
|
|
min = paddle.static.data(name='min', shape=[1], dtype='float32')
|
|
max = paddle.static.data(name='max', shape=[1], dtype='float32')
|
|
out_1 = self._executed_api(images, min=min, max=max)
|
|
out_2 = self._executed_api(images, min=0.2, max=0.9)
|
|
out_3 = self._executed_api(images, min=0.3)
|
|
out_4 = self._executed_api(images, max=0.7)
|
|
out_5 = self._executed_api(images, min=min)
|
|
out_6 = self._executed_api(images, max=max)
|
|
out_7 = self._executed_api(images, max=-1.0)
|
|
out_8 = self._executed_api(images)
|
|
out_9 = self._executed_api(
|
|
paddle.cast(images, 'float64'), min=0.2, max=0.9
|
|
)
|
|
out_10 = self._executed_api(
|
|
paddle.cast(images * 10, 'int32'), min=2, max=8
|
|
)
|
|
out_11 = self._executed_api(
|
|
paddle.cast(images * 10, 'int64'), min=2, max=8
|
|
)
|
|
|
|
(
|
|
res1,
|
|
res2,
|
|
res3,
|
|
res4,
|
|
res5,
|
|
res6,
|
|
res7,
|
|
res8,
|
|
res9,
|
|
res10,
|
|
res11,
|
|
) = exe.run(
|
|
main,
|
|
feed={
|
|
"image": data,
|
|
"min": np.array([0.2]).astype('float32'),
|
|
"max": np.array([0.8]).astype('float32'),
|
|
},
|
|
fetch_list=[
|
|
out_1,
|
|
out_2,
|
|
out_3,
|
|
out_4,
|
|
out_5,
|
|
out_6,
|
|
out_7,
|
|
out_8,
|
|
out_9,
|
|
out_10,
|
|
out_11,
|
|
],
|
|
)
|
|
|
|
np.testing.assert_allclose(res1, data.clip(0.2, 0.8), rtol=1e-05)
|
|
np.testing.assert_allclose(res2, data.clip(0.2, 0.9), rtol=1e-05)
|
|
np.testing.assert_allclose(res3, data.clip(min=0.3), rtol=1e-05)
|
|
np.testing.assert_allclose(res4, data.clip(max=0.7), rtol=1e-05)
|
|
np.testing.assert_allclose(res5, data.clip(min=0.2), rtol=1e-05)
|
|
np.testing.assert_allclose(res6, data.clip(max=0.8), rtol=1e-05)
|
|
np.testing.assert_allclose(res7, data.clip(max=-1), rtol=1e-05)
|
|
np.testing.assert_allclose(res8, data, rtol=1e-05)
|
|
np.testing.assert_allclose(
|
|
res9, data.astype(np.float64).clip(0.2, 0.9), rtol=1e-05
|
|
)
|
|
np.testing.assert_allclose(
|
|
res10, (data * 10).astype(np.int32).clip(2, 8), rtol=1e-05
|
|
)
|
|
np.testing.assert_allclose(
|
|
res11, (data * 10).astype(np.int64).clip(2, 8), rtol=1e-05
|
|
)
|
|
paddle.disable_static()
|
|
|
|
def test_clip_dygraph(self):
|
|
paddle.disable_static()
|
|
place = (
|
|
get_device_place()
|
|
if (base.core.is_compiled_with_cuda() or is_custom_device())
|
|
else base.CPUPlace()
|
|
)
|
|
paddle.disable_static(place)
|
|
data_shape = [1, 9, 9, 4]
|
|
data = np.random.random(data_shape).astype('float32')
|
|
images = paddle.to_tensor(data, dtype='float32')
|
|
v_min = paddle.to_tensor(np.array([0.2], dtype=np.float32))
|
|
v_max = paddle.to_tensor(np.array([0.8], dtype=np.float32))
|
|
|
|
out_1 = self._executed_api(images, min=0.2, max=0.8)
|
|
images = paddle.to_tensor(data, dtype='float32')
|
|
out_2 = self._executed_api(images, min=0.2, max=0.9)
|
|
images = paddle.to_tensor(data, dtype='float32')
|
|
out_3 = self._executed_api(images, min=v_min, max=v_max)
|
|
|
|
out_4 = self._executed_api(
|
|
paddle.cast(images * 10, 'int32'), min=2, max=8
|
|
)
|
|
out_5 = self._executed_api(
|
|
paddle.cast(images * 10, 'int64'), min=2, max=8
|
|
)
|
|
# test with numpy.generic
|
|
out_6 = self._executed_api(images, min=np.abs(0.2), max=np.abs(0.8))
|
|
|
|
np.testing.assert_allclose(
|
|
out_1.numpy(), data.clip(0.2, 0.8), rtol=1e-05
|
|
)
|
|
np.testing.assert_allclose(
|
|
out_2.numpy(), data.clip(0.2, 0.9), rtol=1e-05
|
|
)
|
|
np.testing.assert_allclose(
|
|
out_3.numpy(), data.clip(0.2, 0.8), rtol=1e-05
|
|
)
|
|
np.testing.assert_allclose(
|
|
out_4.numpy(), (data * 10).astype(np.int32).clip(2, 8), rtol=1e-05
|
|
)
|
|
np.testing.assert_allclose(
|
|
out_5.numpy(), (data * 10).astype(np.int64).clip(2, 8), rtol=1e-05
|
|
)
|
|
np.testing.assert_allclose(
|
|
out_6.numpy(), data.clip(0.2, 0.8), rtol=1e-05
|
|
)
|
|
|
|
def test_clip_dygraph_default_max(self):
|
|
paddle.disable_static()
|
|
x_int32 = paddle.to_tensor([1, 2, 3], dtype="int32")
|
|
x_int64 = paddle.to_tensor([1, 2, 3], dtype="int64")
|
|
x_f32 = paddle.to_tensor([1, 2, 3], dtype="float32")
|
|
egr_out1 = paddle.clip(x_int32, min=1)
|
|
egr_out2 = paddle.clip(x_int64, min=1)
|
|
egr_out3 = paddle.clip(x_f32, min=1)
|
|
x_int32 = paddle.to_tensor([1, 2, 3], dtype="int32")
|
|
x_int64 = paddle.to_tensor([1, 2, 3], dtype="int64")
|
|
x_f32 = paddle.to_tensor([1, 2, 3], dtype="float32")
|
|
out1 = paddle.clip(x_int32, min=1)
|
|
out2 = paddle.clip(x_int64, min=1)
|
|
out3 = paddle.clip(x_f32, min=1)
|
|
np.testing.assert_allclose(out1.numpy(), egr_out1.numpy(), rtol=1e-05)
|
|
np.testing.assert_allclose(out2.numpy(), egr_out2.numpy(), rtol=1e-05)
|
|
np.testing.assert_allclose(out3.numpy(), egr_out3.numpy(), rtol=1e-05)
|
|
|
|
def test_errors(self):
|
|
paddle.enable_static()
|
|
with paddle.static.program_guard(
|
|
paddle.static.Program(), paddle.static.Program()
|
|
):
|
|
x1 = paddle.static.data(name='x1', shape=[1], dtype="int16")
|
|
x2 = paddle.static.data(name='x2', shape=[1], dtype="int8")
|
|
self.assertRaises(TypeError, paddle.clip, x=x1, min=0.2, max=0.8)
|
|
self.assertRaises(TypeError, paddle.clip, x=x2, min=0.2, max=0.8)
|
|
paddle.disable_static()
|
|
|
|
|
|
class TestClipAPI_Int(unittest.TestCase):
|
|
def _executed_api(self, x, min=None, max=None):
|
|
return paddle.clip(x, min, max)
|
|
|
|
def test_clip(self):
|
|
paddle.enable_static()
|
|
data_shape = [1, 9, 9, 4]
|
|
data = np.random.random(data_shape).astype('int32')
|
|
place = (
|
|
get_device_place()
|
|
if (base.core.is_compiled_with_cuda() or is_custom_device())
|
|
else base.CPUPlace()
|
|
)
|
|
exe = base.Executor(place)
|
|
|
|
main = paddle.static.Program()
|
|
startup = paddle.static.Program()
|
|
with paddle.static.program_guard(main, startup):
|
|
images = paddle.static.data(
|
|
name='image', shape=data_shape, dtype='int32'
|
|
)
|
|
min = paddle.static.data(name='min', shape=[1], dtype='float32')
|
|
max = paddle.static.data(name='max', shape=[1], dtype='float32')
|
|
out_1 = self._executed_api(images, min=min, max=max)
|
|
out_2 = self._executed_api(images, min=2.2, max=8.9)
|
|
out_3 = self._executed_api(images, min=3.3)
|
|
out_4 = self._executed_api(images, max=4.7)
|
|
out_5 = self._executed_api(images, min=min)
|
|
out_6 = self._executed_api(images, max=max)
|
|
out_7 = self._executed_api(images, max=-1.0)
|
|
out_8 = self._executed_api(images)
|
|
out_9 = self._executed_api(
|
|
paddle.cast(images, 'int32'), min=2.2, max=8.9
|
|
)
|
|
out_10 = self._executed_api(
|
|
paddle.cast(images * 10, 'int32'), min=2.8, max=8.8
|
|
)
|
|
out_11 = self._executed_api(
|
|
paddle.cast(images * 10, 'int64'), min=2.8, max=8.8
|
|
)
|
|
|
|
(
|
|
res1,
|
|
res2,
|
|
res3,
|
|
res4,
|
|
res5,
|
|
res6,
|
|
res7,
|
|
res8,
|
|
res9,
|
|
res10,
|
|
res11,
|
|
) = exe.run(
|
|
main,
|
|
feed={
|
|
"image": data,
|
|
"min": np.array([2.2]).astype('float32'),
|
|
"max": np.array([8.8]).astype('float32'),
|
|
},
|
|
fetch_list=[
|
|
out_1,
|
|
out_2,
|
|
out_3,
|
|
out_4,
|
|
out_5,
|
|
out_6,
|
|
out_7,
|
|
out_8,
|
|
out_9,
|
|
out_10,
|
|
out_11,
|
|
],
|
|
)
|
|
|
|
np.testing.assert_allclose(res1, data.clip(2.2, 8.8), rtol=1e-05)
|
|
np.testing.assert_allclose(res2, data.clip(2.2, 8.9), rtol=1e-05)
|
|
np.testing.assert_allclose(res3, data.clip(min=3.3), rtol=1e-05)
|
|
np.testing.assert_allclose(res4, data.clip(max=4.7), rtol=1e-05)
|
|
np.testing.assert_allclose(res5, data.clip(min=2.2), rtol=1e-05)
|
|
np.testing.assert_allclose(res6, data.clip(max=8.8), rtol=1e-05)
|
|
np.testing.assert_allclose(res7, data.clip(max=-1.0), rtol=1e-05)
|
|
np.testing.assert_allclose(res8, data, rtol=1e-05)
|
|
np.testing.assert_allclose(
|
|
res9, data.astype(np.int32).clip(2.2, 8.9), rtol=1e-05
|
|
)
|
|
np.testing.assert_allclose(
|
|
res10, (data * 10).astype(np.int32).clip(2.8, 8.8), rtol=1e-05
|
|
)
|
|
np.testing.assert_allclose(
|
|
res11, (data * 10).astype(np.int64).clip(2.8, 8.8), rtol=1e-05
|
|
)
|
|
paddle.disable_static()
|
|
|
|
def test_clip_dygraph(self):
|
|
paddle.disable_static()
|
|
place = (
|
|
get_device_place()
|
|
if (base.core.is_compiled_with_cuda() or is_custom_device())
|
|
else base.CPUPlace()
|
|
)
|
|
paddle.disable_static(place)
|
|
data_shape = [1, 9, 9, 4]
|
|
data = np.random.random(data_shape).astype('int32')
|
|
images = paddle.to_tensor(data, dtype='int32')
|
|
v_min = paddle.to_tensor(np.array([2.2], dtype=np.float32))
|
|
v_max = paddle.to_tensor(np.array([8.8], dtype=np.float32))
|
|
|
|
out_1 = self._executed_api(images, min=2.2, max=8.8)
|
|
images = paddle.to_tensor(data, dtype='int32')
|
|
out_2 = self._executed_api(images, min=2.2, max=8.9)
|
|
images = paddle.to_tensor(data, dtype='int32')
|
|
out_3 = self._executed_api(images, min=v_min, max=v_max)
|
|
|
|
out_4 = self._executed_api(
|
|
paddle.cast(images * 10, 'int32'), min=2.2, max=8.8
|
|
)
|
|
out_5 = self._executed_api(
|
|
paddle.cast(images * 10, 'int64'), min=2.2, max=8.8
|
|
)
|
|
# test with numpy.generic
|
|
out_6 = self._executed_api(images, min=np.abs(2.2), max=np.abs(8.8))
|
|
|
|
np.testing.assert_allclose(
|
|
out_1.numpy(), data.clip(2.2, 8.8), rtol=1e-05
|
|
)
|
|
np.testing.assert_allclose(
|
|
out_2.numpy(), data.clip(2.2, 8.9), rtol=1e-05
|
|
)
|
|
np.testing.assert_allclose(
|
|
out_3.numpy(), data.clip(2.2, 8.8), rtol=1e-05
|
|
)
|
|
np.testing.assert_allclose(
|
|
out_4.numpy(),
|
|
(data * 10).astype(np.int32).clip(2.2, 8.8),
|
|
rtol=1e-05,
|
|
)
|
|
np.testing.assert_allclose(
|
|
out_5.numpy(),
|
|
(data * 10).astype(np.int64).clip(2.2, 8.8),
|
|
rtol=1e-05,
|
|
)
|
|
np.testing.assert_allclose(
|
|
out_6.numpy(), data.clip(2.2, 8.8), rtol=1e-05
|
|
)
|
|
|
|
|
|
class TestClipOpFp16(unittest.TestCase):
|
|
def test_fp16(self):
|
|
if base.core.is_compiled_with_cuda() or is_custom_device():
|
|
paddle.enable_static()
|
|
data_shape = [1, 9, 9, 4]
|
|
data = np.random.random(data_shape).astype('float16')
|
|
|
|
with paddle.static.program_guard(paddle.static.Program()):
|
|
images = paddle.static.data(
|
|
name='image1', shape=data_shape, dtype='float16'
|
|
)
|
|
min = paddle.static.data(
|
|
name='min1', shape=[1], dtype='float16'
|
|
)
|
|
max = paddle.static.data(
|
|
name='max1', shape=[1], dtype='float16'
|
|
)
|
|
out = paddle.clip(images, min, max)
|
|
place = get_device_place()
|
|
exe = paddle.static.Executor(place)
|
|
res1 = exe.run(
|
|
feed={
|
|
"image1": data,
|
|
"min1": np.array([0.2]).astype('float16'),
|
|
"max1": np.array([0.8]).astype('float16'),
|
|
},
|
|
fetch_list=[out],
|
|
)
|
|
paddle.disable_static()
|
|
|
|
|
|
class TestInplaceClipAPI(TestClipAPI):
|
|
def _executed_api(self, x, min=None, max=None):
|
|
return x.clip_(min, max)
|
|
|
|
|
|
class TestClipOp_FP64(OpTest):
|
|
def setUp(self):
|
|
self.python_api = paddle.clip
|
|
self.public_python_api = paddle.clip
|
|
|
|
self.inputs = {}
|
|
self.dtype = np.float64
|
|
self.shape = (8, 16, 8)
|
|
self.max = float(np.finfo(np.float64).max)
|
|
self.min = float(np.finfo(np.float64).min)
|
|
|
|
self.op_type = "clip"
|
|
self.attrs = {}
|
|
self.attrs['min'] = self.min
|
|
self.attrs['max'] = self.max
|
|
|
|
self.inputs['X'] = np.random.random(self.shape).astype(self.dtype)
|
|
self.outputs = {'Out': np.clip(self.inputs['X'], self.min, self.max)}
|
|
|
|
def test_check_output(self):
|
|
self.check_output(
|
|
check_pir=True,
|
|
)
|
|
|
|
def test_check_grad_normal(self):
|
|
self.check_grad(['X'], 'Out', check_pir=True)
|
|
|
|
|
|
class TestClipOutAndParaDecorator(unittest.TestCase):
|
|
def setUp(self) -> None:
|
|
paddle.disable_static()
|
|
self.apis = [
|
|
paddle.clip,
|
|
paddle.clamp,
|
|
]
|
|
self.shape = [3, 4, 5]
|
|
self.input_np = np.random.random(self.shape).astype('float32')
|
|
self.test_types = [
|
|
"decorator1",
|
|
"decorator2",
|
|
"out",
|
|
"out_decorator",
|
|
]
|
|
self.min, self.max = -0.5, 0.5
|
|
|
|
def do_test(self, api, test_type):
|
|
self.test_types = [
|
|
"decorator1",
|
|
"out",
|
|
"out_decorator",
|
|
]
|
|
x = paddle.to_tensor(self.input_np, stop_gradient=False)
|
|
out = paddle.zeros(self.shape, dtype='float32')
|
|
out.stop_gradient = False
|
|
if test_type == "raw":
|
|
out = paddle.clip(x, min=self.min, max=self.max)
|
|
out.mean().backward()
|
|
return out, x.grad
|
|
elif test_type == "decorator1":
|
|
res = api(input=x, min=self.min, max=self.max)
|
|
loss = res.mean()
|
|
loss.backward()
|
|
x_grad = x.grad
|
|
return res, x_grad
|
|
elif test_type == "out":
|
|
res = api(x, min=self.min, max=self.max, out=out)
|
|
loss = out.mean()
|
|
loss.backward()
|
|
x_grad = x.grad
|
|
return out, x_grad
|
|
elif test_type == "out_decorator":
|
|
res = api(out=out, input=x, min=self.min, max=self.max)
|
|
loss = out.mean()
|
|
loss.backward()
|
|
x_grad = x.grad
|
|
return out, x_grad
|
|
else:
|
|
raise NotImplementedError(
|
|
f"Test type {test_type} is not implemented."
|
|
)
|
|
|
|
def test_api(self):
|
|
out_std, x_grad_std = self.do_test(paddle.clip, "raw")
|
|
for api in self.apis:
|
|
for test_type in self.test_types:
|
|
out, x_grad = self.do_test(api, test_type)
|
|
np.testing.assert_allclose(
|
|
out.numpy(), out_std.numpy(), rtol=1e-20
|
|
)
|
|
np.testing.assert_allclose(
|
|
x_grad.numpy(), x_grad_std.numpy(), rtol=1e-20
|
|
)
|
|
|
|
|
|
class TestClipCompatibility(unittest.TestCase):
|
|
def setUp(self):
|
|
self.places = [paddle.CPUPlace()]
|
|
if paddle.base.core.is_compiled_with_cuda() or is_custom_device():
|
|
self.places.append(get_device_place())
|
|
self.func = paddle.clip
|
|
self.init_data()
|
|
self.init_case()
|
|
|
|
def init_data(self):
|
|
self.shape = [5, 6]
|
|
self.dtype = 'float32'
|
|
self.min_val = 0.3
|
|
self.max_val = 0.7
|
|
self.np_input = np.random.rand(*self.shape).astype(self.dtype)
|
|
self.np_out = np.clip(self.np_input, self.min_val, self.max_val)
|
|
|
|
def init_case(self):
|
|
params = [['x', 'input'], ['min'], ['max']]
|
|
|
|
# Generate all valid combinations
|
|
def generate_cases(param_groups, case_list):
|
|
from itertools import product
|
|
|
|
for combo in product(*[[None, *names] for names in param_groups]):
|
|
args = ['pos' if p is None else 'kw' for p in combo]
|
|
if args == sorted(args, key=lambda x: x != 'pos'):
|
|
case_list.append(combo)
|
|
|
|
# paddle.clip()
|
|
self.test_cases = []
|
|
generate_cases(params, self.test_cases)
|
|
# x.clip()
|
|
self.tensor_test_cases = []
|
|
generate_cases(params[1:], self.tensor_test_cases)
|
|
|
|
def _build_args_kwargs(self, param_names, params):
|
|
args = []
|
|
kwargs = {}
|
|
for name, param in zip(param_names, params):
|
|
if name is None:
|
|
args.append(param)
|
|
else:
|
|
kwargs[name] = param
|
|
return args, kwargs
|
|
|
|
def test_dygraph_compatibility(self):
|
|
with dygraph_guard():
|
|
for place in self.places:
|
|
paddle.device.set_device(place)
|
|
x = paddle.to_tensor(self.np_input)
|
|
# paddle.
|
|
for param_names in self.test_cases:
|
|
args, kwargs = self._build_args_kwargs(
|
|
param_names, (x, self.min_val, self.max_val)
|
|
)
|
|
for out_flag in [False, True]:
|
|
if out_flag:
|
|
kwargs['out'] = paddle.empty([])
|
|
self.func(*args, **kwargs)
|
|
out = kwargs["out"]
|
|
else:
|
|
out = self.func(*args, **kwargs)
|
|
np.testing.assert_array_equal(self.np_out, out.numpy())
|
|
# paddle.Tensor.
|
|
for param_names in self.tensor_test_cases:
|
|
args, kwargs = self._build_args_kwargs(
|
|
param_names, (self.min_val, self.max_val)
|
|
)
|
|
out = x.clip(*args, **kwargs)
|
|
np.testing.assert_array_equal(self.np_out, out.numpy())
|
|
|
|
def test_dygraph_out(self):
|
|
def run_clip(test_type):
|
|
x = paddle.to_tensor(self.np_input)
|
|
x.stop_gradient = False
|
|
out = (
|
|
paddle.zeros(self.np_out.shape)
|
|
if test_type in ["with_out", "both"]
|
|
else None
|
|
)
|
|
if test_type == "return":
|
|
out = paddle.clip(x, self.min_val, self.max_val)
|
|
elif test_type == "with_out":
|
|
paddle.clip(x, self.min_val, self.max_val, out=out)
|
|
elif test_type == "both":
|
|
out = paddle.clip(x, self.min_val, self.max_val, out=out)
|
|
else:
|
|
raise ValueError(f"Invalid test_mode: {test_type}")
|
|
|
|
expected = paddle._C_ops.clip(x, self.min_val, self.max_val)
|
|
np.testing.assert_array_equal(out.numpy(), expected.numpy())
|
|
loss = out.sum().astype('float32')
|
|
loss.backward()
|
|
return out, x.grad
|
|
|
|
def assert_outputs_equal(outputs, rtol: float = 1e-10):
|
|
for out in outputs[1:]:
|
|
np.testing.assert_allclose(
|
|
outputs[0].numpy(), out.numpy(), rtol=rtol
|
|
)
|
|
|
|
with dygraph_guard():
|
|
for place in self.places:
|
|
paddle.device.set_device(place)
|
|
out1, grad1 = run_clip("return")
|
|
out2, grad2 = run_clip("with_out")
|
|
out3, grad3 = run_clip("both")
|
|
|
|
assert_outputs_equal([out1, out2, out3])
|
|
if (
|
|
grad1 is not None
|
|
and grad2 is not None
|
|
and grad3 is not None
|
|
):
|
|
assert_outputs_equal([grad1, grad2, grad3])
|
|
|
|
def test_static_compatibility(self):
|
|
with static_guard():
|
|
for place in self.places:
|
|
main = paddle.static.Program()
|
|
startup = paddle.static.Program()
|
|
with paddle.base.program_guard(main, startup):
|
|
x = paddle.static.data(
|
|
name="x", shape=self.shape, dtype=self.dtype
|
|
)
|
|
# paddle.
|
|
for param_names in self.test_cases:
|
|
args, kwargs = self._build_args_kwargs(
|
|
param_names, (x, self.min_val, self.max_val)
|
|
)
|
|
out = self.func(*args, **kwargs)
|
|
|
|
exe = paddle.base.Executor(place)
|
|
fetches = exe.run(
|
|
main,
|
|
feed={"x": self.np_input},
|
|
fetch_list=[out],
|
|
)
|
|
np.testing.assert_array_equal(self.np_out, fetches[0])
|
|
# paddle.Tensor.
|
|
for param_names in self.tensor_test_cases:
|
|
args, kwargs = self._build_args_kwargs(
|
|
param_names, (self.min_val, self.max_val)
|
|
)
|
|
|
|
out = x.clip(*args, **kwargs)
|
|
|
|
exe = paddle.base.Executor(place)
|
|
fetches = exe.run(
|
|
main,
|
|
feed={"x": self.np_input},
|
|
fetch_list=[out],
|
|
)
|
|
np.testing.assert_array_equal(self.np_out, fetches[0])
|
|
|
|
|
|
class TestClampAliasForClip(unittest.TestCase):
|
|
def setUp(self):
|
|
self.places = [paddle.CPUPlace()]
|
|
if paddle.base.core.is_compiled_with_cuda() or is_custom_device():
|
|
self.places.append(get_device_place())
|
|
self.func = paddle.clamp
|
|
self.init_data()
|
|
self.init_case()
|
|
|
|
def init_data(self):
|
|
self.shape = [5, 6]
|
|
self.dtype = 'float32'
|
|
self.min_val = 0.3
|
|
self.max_val = 0.7
|
|
self.np_input = np.random.rand(*self.shape).astype(self.dtype)
|
|
self.np_out = np.clip(self.np_input, self.min_val, self.max_val)
|
|
|
|
def init_case(self):
|
|
params = [['x', 'input'], ['min'], ['max']]
|
|
|
|
# Generate all valid combinations
|
|
def generate_cases(param_groups, case_list):
|
|
from itertools import product
|
|
|
|
for combo in product(*[[None, *names] for names in param_groups]):
|
|
args = ['pos' if p is None else 'kw' for p in combo]
|
|
if args == sorted(args, key=lambda x: x != 'pos'):
|
|
case_list.append(combo)
|
|
|
|
# paddle.clamp()
|
|
self.test_cases = []
|
|
generate_cases(params, self.test_cases)
|
|
# x.clamp()
|
|
self.tensor_test_cases = []
|
|
generate_cases(params[1:], self.tensor_test_cases)
|
|
|
|
def _build_args_kwargs(self, param_names, params):
|
|
args = []
|
|
kwargs = {}
|
|
for name, param in zip(param_names, params):
|
|
if name is None:
|
|
args.append(param)
|
|
else:
|
|
kwargs[name] = param
|
|
return args, kwargs
|
|
|
|
def test_dygraph_compatibility(self):
|
|
with dygraph_guard():
|
|
for place in self.places:
|
|
paddle.device.set_device(place)
|
|
x = paddle.to_tensor(self.np_input)
|
|
# paddle.
|
|
for param_names in self.test_cases:
|
|
args, kwargs = self._build_args_kwargs(
|
|
param_names, (x, self.min_val, self.max_val)
|
|
)
|
|
out = self.func(*args, **kwargs)
|
|
np.testing.assert_array_equal(self.np_out, out.numpy())
|
|
# paddle.Tensor.
|
|
for param_names in self.tensor_test_cases:
|
|
args, kwargs = self._build_args_kwargs(
|
|
param_names, (self.min_val, self.max_val)
|
|
)
|
|
out = x.clamp(*args, **kwargs)
|
|
np.testing.assert_array_equal(self.np_out, out.numpy())
|
|
|
|
def test_static_compatibility(self):
|
|
with static_guard():
|
|
for place in self.places:
|
|
main = paddle.static.Program()
|
|
startup = paddle.static.Program()
|
|
with paddle.base.program_guard(main, startup):
|
|
x = paddle.static.data(
|
|
name="x", shape=self.shape, dtype=self.dtype
|
|
)
|
|
# paddle.
|
|
for param_names in self.test_cases:
|
|
args, kwargs = self._build_args_kwargs(
|
|
param_names, (x, self.min_val, self.max_val)
|
|
)
|
|
out = self.func(*args, **kwargs)
|
|
|
|
exe = paddle.base.Executor(place)
|
|
fetches = exe.run(
|
|
main,
|
|
feed={"x": self.np_input},
|
|
fetch_list=[out],
|
|
)
|
|
np.testing.assert_array_equal(self.np_out, fetches[0])
|
|
# paddle.Tensor.
|
|
for param_names in self.tensor_test_cases:
|
|
args, kwargs = self._build_args_kwargs(
|
|
param_names, (self.min_val, self.max_val)
|
|
)
|
|
|
|
out = x.clamp(*args, **kwargs)
|
|
|
|
exe = paddle.base.Executor(place)
|
|
fetches = exe.run(
|
|
main,
|
|
feed={"x": self.np_input},
|
|
fetch_list=[out],
|
|
)
|
|
np.testing.assert_array_equal(self.np_out, fetches[0])
|
|
|
|
|
|
class TestClamp_AndClip_(unittest.TestCase):
|
|
def setUp(self) -> None:
|
|
paddle.disable_static()
|
|
self.shape = [3, 4, 5]
|
|
self.input_np = np.random.random(self.shape).astype('float32')
|
|
self.a = np.random.random(self.shape).astype('float32')
|
|
self.b = np.random.random(self.shape).astype('float32')
|
|
self.min, self.max = -0.5, 0.5
|
|
|
|
def test_clip_and_clamp(self):
|
|
clip_a = paddle.to_tensor(self.a, stop_gradient=False)
|
|
clip_b = paddle.to_tensor(self.b, stop_gradient=False)
|
|
|
|
clamp_a = paddle.to_tensor(self.a, stop_gradient=False)
|
|
clamp_b = paddle.to_tensor(self.b, stop_gradient=False)
|
|
|
|
clip_x = clip_a + clip_b
|
|
clip_x.clip_(min=self.min, max=self.max)
|
|
clip_x.retain_grads()
|
|
clip_x.mean().backward()
|
|
|
|
clamp_x = clamp_a + clamp_b
|
|
clamp_x.clamp_(min=self.min, max=self.max)
|
|
clamp_x.retain_grads()
|
|
clamp_x.mean().backward()
|
|
|
|
np.testing.assert_allclose(clip_x.numpy(), clamp_x.numpy(), rtol=1e-20)
|
|
np.testing.assert_allclose(
|
|
clip_x.grad.numpy(), clamp_x.grad.numpy(), rtol=1e-20
|
|
)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|