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

154 lines
4.4 KiB
Python

# Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import unittest
import numpy as np
from op_test import (
OpTest,
convert_float_to_uint16,
get_device_place,
is_custom_device,
)
import paddle
from paddle.base import core
paddle.enable_static()
class TestTruncOp(OpTest):
def setUp(self):
self.op_type = "trunc"
self.prim_op_type = "prim"
self.python_api = paddle.trunc
self.public_python_api = paddle.trunc
self.init_dtype_type()
self.init_shape()
np.random.seed(2021)
self.inputs = {'X': np.random.random(self.shape).astype(self.dtype)}
self.outputs = {'Out': (np.trunc(self.inputs['X']))}
def init_dtype_type(self):
self.dtype = np.float64
def init_shape(self):
self.shape = (20, 20)
def test_check_output(self):
self.check_output(
check_pir=True, check_prim_pir=True, check_symbol_infer=False
)
def test_check_grad(self):
self.check_grad(
['X'],
'Out',
numeric_grad_delta=1e-5,
check_pir=True,
check_prim_pir=True,
)
class TestFloatTruncOp(TestTruncOp):
def init_dtype_type(self):
self.dtype = np.float32
self.__class__.exist_fp64_check_grad = True
def test_check_grad(self):
pass
class TestIntTruncOp(TestTruncOp):
def init_dtype_type(self):
self.dtype = np.int32
self.__class__.exist_fp64_check_grad = True
def test_check_grad(self):
pass
class TestTruncOp_ZeroSize(TestTruncOp):
def init_shape(self):
self.shape = (20, 0)
class TestTruncAPI(unittest.TestCase):
def setUp(self):
self.shape = [20, 20]
self.x = np.random.random((20, 20)).astype(np.float32)
self.place = paddle.CPUPlace()
def test_api_static(self):
paddle.enable_static()
with paddle.static.program_guard(paddle.static.Program()):
x = paddle.static.data('X', self.shape)
out = paddle.trunc(x)
exe = paddle.static.Executor(self.place)
res = exe.run(feed={'X': self.x}, fetch_list=[out])
out_ref = np.trunc(self.x)
for out in res:
np.testing.assert_allclose(out, out_ref, rtol=1e-08)
def test_api_dygraph(self):
paddle.disable_static(self.place)
x_tensor = paddle.to_tensor(self.x)
out = paddle.trunc(x_tensor)
out_ref = np.trunc(self.x)
np.testing.assert_allclose(out.numpy(), out_ref, rtol=1e-08)
paddle.enable_static()
def test_errors(self):
with paddle.static.program_guard(paddle.static.Program()):
x = paddle.static.data('X', [20, 20], 'bool')
self.assertRaises(TypeError, paddle.trunc, x)
class TestTruncFP16OP(TestTruncOp):
def init_dtype_type(self):
self.dtype = np.float16
@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 and not support the bfloat16",
)
class TestTruncBF16OP(OpTest):
def setUp(self):
self.python_api = paddle.trunc
self.op_type = "trunc"
self.dtype = np.uint16
np.random.seed(2021)
x = np.random.random((20, 20)).astype("float32")
out = np.trunc(x)
self.inputs = {'X': convert_float_to_uint16(x)}
self.outputs = {'Out': convert_float_to_uint16(out)}
def test_check_output(self):
place = get_device_place()
self.check_output_with_place(
place, check_pir=True, check_symbol_infer=False
)
def test_check_grad(self):
place = get_device_place()
self.check_grad_with_place(
place, ['X'], 'Out', numeric_grad_delta=1e-5, check_pir=True
)
if __name__ == "__main__":
unittest.main()