# 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 eager_op_test import numpy as np import paddle from paddle import fluid from paddle.fluid import framework def assign_value_wrapper( shape=[], dtype=fluid.core.VarDesc.VarType.FP32, values=0.0 ): tensor = paddle.Tensor() return paddle._C_ops.assign_value_( tensor, shape, dtype, values, framework._current_expected_place() ) class TestAssignValueOp(eager_op_test.OpTest): def setUp(self): self.op_type = "assign_value" self.python_api = assign_value_wrapper self.inputs = {} self.attrs = {} self.init_data() self.attrs["shape"] = self.value.shape self.attrs["dtype"] = framework.convert_np_dtype_to_dtype_( self.value.dtype ) self.outputs = {"Out": self.value} def init_data(self): self.value = np.random.random(size=(2, 5)).astype(np.float32) self.attrs["fp32_values"] = [float(v) for v in self.value.flat] def test_forward(self): self.check_output() class TestAssignValueOp2(TestAssignValueOp): def init_data(self): self.value = np.random.random(size=(2, 5)).astype(np.int32) self.attrs["int32_values"] = [int(v) for v in self.value.flat] class TestAssignValueOp3(TestAssignValueOp): def init_data(self): self.value = np.random.random(size=(2, 5)).astype(np.int64) self.attrs["int64_values"] = [int(v) for v in self.value.flat] class TestAssignValueOp4(TestAssignValueOp): def init_data(self): self.value = np.random.choice(a=[False, True], size=(2, 5)).astype( np.bool_ ) self.attrs["bool_values"] = [int(v) for v in self.value.flat] class TestAssignApi(unittest.TestCase): def setUp(self): with eager_op_test.paddle_static_guard(): self.init_dtype() self.value = (-100 + 200 * np.random.random(size=(2, 5))).astype( self.dtype ) self.place = ( fluid.CUDAPlace(0) if fluid.is_compiled_with_cuda() else fluid.CPUPlace() ) def init_dtype(self): self.dtype = "float32" def test_assign(self): with eager_op_test.paddle_static_guard(): main_program = fluid.Program() with fluid.program_guard(main_program): x = paddle.tensor.create_tensor(dtype=self.dtype) paddle.assign(self.value, output=x) exe = fluid.Executor(self.place) [fetched_x] = exe.run(main_program, feed={}, fetch_list=[x]) np.testing.assert_array_equal(fetched_x, self.value) self.assertEqual(fetched_x.dtype, self.value.dtype) class TestAssignApi2(TestAssignApi): def init_dtype(self): self.dtype = "int32" class TestAssignApi3(TestAssignApi): def init_dtype(self): self.dtype = "int64" class TestAssignApi4(TestAssignApi): def setUp(self): with eager_op_test.paddle_static_guard(): self.init_dtype() self.value = np.random.choice(a=[False, True], size=(2, 5)).astype( np.bool_ ) self.place = ( fluid.CUDAPlace(0) if fluid.is_compiled_with_cuda() else fluid.CPUPlace() ) def init_dtype(self): self.dtype = "bool" if __name__ == '__main__': unittest.main()