# Copyright (c) 2020 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 get_device_place, is_custom_device import paddle from paddle import base class TestIncrement(unittest.TestCase): def test_api(self): paddle.enable_static() with base.program_guard(base.Program(), base.Program()): input = paddle.tensor.fill_constant( shape=[1], dtype='int64', value=5 ) expected_result = np.array([8], dtype='int64') output = paddle.tensor.math.increment(input, value=3) exe = base.Executor(base.CPUPlace()) result = exe.run(fetch_list=[output]) self.assertEqual((result == expected_result).all(), True) with base.dygraph.guard(): input = paddle.ones(shape=[1], dtype='int64') expected_result = np.array([2], dtype='int64') output = paddle.tensor.math.increment(input, value=1) self.assertEqual((output.numpy() == expected_result).all(), True) def test_no_inplace_increment(self): with ( paddle.pir_utils.IrGuard(), base.program_guard(base.Program(), base.Program()), ): x = paddle.tensor.fill_constant(shape=[1], dtype='int64', value=1) x.stop_gradient = False input = paddle._pir_ops.increment(x, 1.0) input = paddle._pir_ops.increment(input, 1.0) input = paddle._pir_ops.increment(input, 1.0) out = paddle._pir_ops.increment(input, 1.0) dx = paddle.base.gradients(out, x) exe = base.Executor(base.CPUPlace()) result = exe.run(fetch_list=[out, dx]) self.assertEqual(result[0], 5.0) self.assertEqual(result[1], 1.0) class TestInplaceApiWithDataTransform(unittest.TestCase): def test_increment(self): if base.core.is_compiled_with_cuda() or is_custom_device(): paddle.enable_static() with paddle.base.device_guard("gpu:0"): x = paddle.tensor.fill_constant([1], "float32", 0) with paddle.base.device_guard("cpu"): x = paddle.increment(x) exe = paddle.static.Executor(get_device_place()) (a,) = exe.run(paddle.static.default_main_program(), fetch_list=[x]) paddle.disable_static() self.assertEqual(a[0], 1) class TestIncrement_ZeroSize(unittest.TestCase): def test_api(self): with base.dygraph.guard(): input = paddle.randn(shape=[0]).astype('int64') expected_result = np.random.random([0]).astype('int64') output = paddle.tensor.math.increment(input, value=1) self.assertEqual((output.numpy() == expected_result).all(), True) if __name__ == "__main__": unittest.main()