# 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 os import subprocess import unittest import numpy as np import paddle from paddle.utils.cpp_extension import load from paddle.utils.cpp_extension import load, get_build_directory from paddle.utils.cpp_extension.extension_utils import run_cmd from utils import paddle_includes, extra_compile_args # Because Windows don't use docker, the shared lib already exists in the # cache dir, it will not be compiled again unless the shared lib is removed. file = '{}\\multi_out_jit\\multi_out_jit.pyd'.format(get_build_directory()) if os.name == 'nt' and os.path.isfile(file): cmd = 'del {}'.format(file) run_cmd(cmd, True) # Compile and load custom op Just-In-Time. multi_out_module = load( name='multi_out_jit', sources=['multi_out_test_op.cc'], extra_include_paths=paddle_includes, # add for Coverage CI extra_cflags=extra_compile_args, # add for Coverage CI verbose=True) class TestMultiOutputDtypes(unittest.TestCase): def setUp(self): self.custom_op = multi_out_module.multi_out self.dtypes = ['float32', 'float64'] self.devices = ['cpu'] def run_static(self, device, dtype): paddle.set_device(device) x_data = np.random.uniform(-1, 1, [4, 8]).astype(dtype) with paddle.static.scope_guard(paddle.static.Scope()): with paddle.static.program_guard(paddle.static.Program()): x = paddle.static.data(name='X', shape=[None, 8], dtype=dtype) outs = self.custom_op(x) exe = paddle.static.Executor() exe.run(paddle.static.default_startup_program()) res = exe.run(paddle.static.default_main_program(), feed={'X': x_data}, fetch_list=outs) return res def check_multi_outputs(self, outs, is_dynamic=False): out, zero_float64, one_int32 = outs if is_dynamic: zero_float64 = zero_float64.numpy() one_int32 = one_int32.numpy() # Fake_float64 self.assertTrue('float64' in str(zero_float64.dtype)) self.assertTrue( np.array_equal(zero_float64, np.zeros([4, 8]).astype('float64'))) # ZFake_int32 self.assertTrue('int32' in str(one_int32.dtype)) self.assertTrue( np.array_equal(one_int32, np.ones([4, 8]).astype('int32'))) def test_static(self): paddle.enable_static() for device in self.devices: for dtype in self.dtypes: res = self.run_static(device, dtype) self.check_multi_outputs(res) paddle.disable_static() def test_dynamic(self): for device in self.devices: for dtype in self.dtypes: paddle.set_device(device) x_data = np.random.uniform(-1, 1, [4, 8]).astype(dtype) x = paddle.to_tensor(x_data) outs = self.custom_op(x) self.assertTrue(len(outs) == 3) self.check_multi_outputs(outs, True) if __name__ == '__main__': unittest.main()