172 lines
5.7 KiB
Python
172 lines
5.7 KiB
Python
# Copyright (c) 2023 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 sys
|
|
import unittest
|
|
from pathlib import Path
|
|
from site import getsitepackages
|
|
|
|
import numpy as np
|
|
from utils import check_output
|
|
|
|
import paddle
|
|
from paddle.utils.cpp_extension import load
|
|
from paddle.utils.cpp_extension.extension_utils import (
|
|
_get_all_paddle_includes_from_include_root,
|
|
)
|
|
|
|
if os.name == 'nt' or sys.platform.startswith('darwin'):
|
|
# only support Linux now
|
|
sys.exit()
|
|
|
|
# Compile and load cpp extension Just-In-Time.
|
|
sources = ["custom_extension.cc", "custom_sub.cc"]
|
|
if paddle.is_compiled_with_cuda():
|
|
sources.append("custom_relu_forward.cu")
|
|
|
|
paddle_includes = []
|
|
for site_packages_path in getsitepackages():
|
|
paddle_include_dir = Path(site_packages_path) / "paddle/include"
|
|
paddle_includes.extend(
|
|
_get_all_paddle_includes_from_include_root(str(paddle_include_dir))
|
|
)
|
|
|
|
# include "custom_power.h"
|
|
paddle_includes.append(os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
custom_cpp_extension = load(
|
|
name='custom_cpp_extension',
|
|
sources=sources,
|
|
extra_include_paths=paddle_includes, # add for Coverage CI
|
|
extra_cxx_cflags=['-w', '-g'],
|
|
verbose=True,
|
|
)
|
|
|
|
|
|
class TestCppExtensionJITInstall(unittest.TestCase):
|
|
"""
|
|
Tests setup install cpp extensions.
|
|
"""
|
|
|
|
def setUp(self):
|
|
# config seed
|
|
SEED = 2021
|
|
paddle.seed(SEED)
|
|
paddle.framework.random._manual_program_seed(SEED)
|
|
|
|
self.dtypes = ['float32', 'float64']
|
|
|
|
def tearDown(self):
|
|
pass
|
|
|
|
def test_cpp_extension(self):
|
|
self._test_extension_function()
|
|
self._test_extension_class()
|
|
self._test_vector_tensor()
|
|
self._test_nullable_tensor()
|
|
self._test_optional_tensor()
|
|
if paddle.is_compiled_with_cuda():
|
|
self._test_cuda_relu()
|
|
|
|
def _test_extension_function(self):
|
|
for dtype in self.dtypes:
|
|
np_x = np.random.uniform(-1, 1, [4, 8]).astype(dtype)
|
|
x = paddle.to_tensor(np_x, dtype=dtype)
|
|
np_y = np.random.uniform(-1, 1, [4, 8]).astype(dtype)
|
|
y = paddle.to_tensor(np_y, dtype=dtype)
|
|
|
|
out = custom_cpp_extension.custom_add(x, y)
|
|
target_out = np.exp(np_x) + np.exp(np_y)
|
|
np.testing.assert_allclose(out.numpy(), target_out, atol=1e-5)
|
|
|
|
out = custom_cpp_extension.custom_optional_add(x, None)
|
|
target_out = np.exp(np_x)
|
|
np.testing.assert_allclose(out.numpy(), target_out, atol=1e-5)
|
|
|
|
# Test we can call a method not defined in the main C++ file.
|
|
out = custom_cpp_extension.custom_sub(x, y)
|
|
target_out = np.exp(np_x) - np.exp(np_y)
|
|
np.testing.assert_allclose(out.numpy(), target_out, atol=1e-5)
|
|
|
|
def _test_extension_class(self):
|
|
for dtype in self.dtypes:
|
|
# Test we can use CppExtension class with C++ methods.
|
|
power = custom_cpp_extension.Power(3, 3)
|
|
self.assertEqual(power.get().sum(), 9)
|
|
self.assertEqual(power.forward().sum(), 9)
|
|
|
|
np_x = np.random.uniform(-1, 1, [4, 8]).astype(dtype)
|
|
x = paddle.to_tensor(np_x, dtype=dtype)
|
|
|
|
power = custom_cpp_extension.Power(x)
|
|
np.testing.assert_allclose(
|
|
power.get().sum().numpy(), np.sum(np_x), atol=1e-5
|
|
)
|
|
np.testing.assert_allclose(
|
|
power.forward().sum().numpy(),
|
|
np.sum(np.power(np_x, 2)),
|
|
atol=1e-5,
|
|
)
|
|
|
|
def _test_vector_tensor(self):
|
|
for dtype in self.dtypes:
|
|
np_inputs = [
|
|
np.random.uniform(-1, 1, [4, 8]).astype(dtype) for _ in range(3)
|
|
]
|
|
inputs = [paddle.to_tensor(np_x, dtype=dtype) for np_x in np_inputs]
|
|
|
|
out = custom_cpp_extension.custom_tensor(inputs)
|
|
target_out = [x + 1.0 for x in inputs]
|
|
for i in range(3):
|
|
np.testing.assert_allclose(
|
|
out[i].numpy(), target_out[i].numpy(), atol=1e-5
|
|
)
|
|
|
|
def _test_nullable_tensor(self):
|
|
x = custom_cpp_extension.nullable_tensor(True)
|
|
assert x is None, "Return None when input parameter return_none = True"
|
|
x = custom_cpp_extension.nullable_tensor(False).numpy()
|
|
x_np = np.ones(shape=[2, 2])
|
|
np.testing.assert_array_equal(
|
|
x,
|
|
x_np,
|
|
err_msg=f'extension out: {x},\n numpy out: {x_np}',
|
|
)
|
|
|
|
def _test_optional_tensor(self):
|
|
x = custom_cpp_extension.optional_tensor(True)
|
|
assert x is None, (
|
|
"Return None when input parameter return_option = True"
|
|
)
|
|
x = custom_cpp_extension.optional_tensor(False).numpy()
|
|
x_np = np.ones(shape=[2, 2])
|
|
np.testing.assert_array_equal(
|
|
x,
|
|
x_np,
|
|
err_msg=f'extension out: {x},\n numpy out: {x_np}',
|
|
)
|
|
|
|
def _test_cuda_relu(self):
|
|
paddle.set_device('gpu')
|
|
x = np.random.uniform(-1, 1, [4, 8]).astype('float32')
|
|
x = paddle.to_tensor(x, dtype='float32')
|
|
out = custom_cpp_extension.relu_cuda_forward(x)
|
|
pd_out = paddle.nn.functional.relu(x)
|
|
check_output(out, pd_out, "out")
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|