163 lines
5.4 KiB
Python
163 lines
5.4 KiB
Python
# Copyright (c) 2025 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
|
|
from itertools import product
|
|
|
|
import numpy as np
|
|
from utils import dygraph_guard
|
|
|
|
import paddle
|
|
|
|
|
|
class TestTensorCreation(unittest.TestCase):
|
|
def setUp(self):
|
|
self.devices = [paddle.CPUPlace(), "cpu"]
|
|
if paddle.device.is_compiled_with_cuda():
|
|
self.devices.append(paddle.CUDAPlace(0))
|
|
self.devices.append("gpu")
|
|
self.devices.append("gpu:0")
|
|
if paddle.device.is_compiled_with_xpu():
|
|
self.devices.append(paddle.XPUPlace(0))
|
|
if paddle.device.is_compiled_with_ipu():
|
|
self.devices.append(paddle.device.IPUPlace())
|
|
|
|
self.requires_grads = [True, False]
|
|
self.dtypes = [None, paddle.float32]
|
|
self.pin_memories = [False]
|
|
if (
|
|
paddle.device.is_compiled_with_cuda()
|
|
and not paddle.device.is_compiled_with_rocm()
|
|
):
|
|
self.pin_memories.append(True)
|
|
|
|
@unittest.skipIf(paddle.device.is_compiled_with_xpu(), "skip xpu")
|
|
def test_rand(self):
|
|
types = [
|
|
None,
|
|
"float32",
|
|
paddle.float32,
|
|
"float64",
|
|
paddle.float64,
|
|
]
|
|
for device, requires_grad, dtype, pin_memory in product(
|
|
self.devices, self.requires_grads, types, self.pin_memories
|
|
):
|
|
if (
|
|
device
|
|
not in [
|
|
"gpu",
|
|
"gpu:0",
|
|
paddle.CUDAPlace(0)
|
|
if paddle.device.is_compiled_with_cuda()
|
|
else None,
|
|
paddle.XPUPlace(0)
|
|
if paddle.device.is_compiled_with_xpu()
|
|
else None,
|
|
]
|
|
and pin_memory
|
|
):
|
|
continue # skip
|
|
|
|
with dygraph_guard():
|
|
x = paddle.rand(
|
|
[2],
|
|
dtype=dtype,
|
|
requires_grad=requires_grad,
|
|
device=device,
|
|
pin_memory=pin_memory,
|
|
)
|
|
if pin_memory:
|
|
self.assertTrue("pinned" in str(x.place))
|
|
|
|
self.assertEqual(x.stop_gradient, not requires_grad)
|
|
if isinstance(dtype, paddle.dtype):
|
|
self.assertEqual(x.dtype, dtype)
|
|
|
|
def wrapped_rand(
|
|
shape,
|
|
dtype=None,
|
|
name=None,
|
|
*,
|
|
out=None,
|
|
device=None,
|
|
requires_grad=False,
|
|
pin_memory=False,
|
|
):
|
|
return paddle.rand(
|
|
shape,
|
|
dtype,
|
|
name,
|
|
out=out,
|
|
device=device,
|
|
requires_grad=requires_grad,
|
|
pin_memory=pin_memory,
|
|
)
|
|
|
|
st_f = paddle.jit.to_static(
|
|
wrapped_rand, full_graph=True, backend=None
|
|
)
|
|
x = st_f(
|
|
[2],
|
|
out=None,
|
|
dtype=dtype,
|
|
requires_grad=requires_grad,
|
|
device=device,
|
|
pin_memory=pin_memory,
|
|
)
|
|
if (
|
|
isinstance(device, paddle.framework.core.Place)
|
|
and not pin_memory
|
|
):
|
|
self.assertEqual(x.place, device)
|
|
self.assertEqual(x.stop_gradient, not requires_grad)
|
|
if isinstance(dtype, paddle.dtype):
|
|
self.assertEqual(x.dtype, dtype)
|
|
|
|
y = paddle.empty_like(x)
|
|
x = paddle.rand(
|
|
[2],
|
|
dtype=dtype,
|
|
requires_grad=requires_grad,
|
|
device=device,
|
|
out=y,
|
|
)
|
|
self.assertEqual(x.data_ptr(), y.data_ptr())
|
|
|
|
def test_pin_memory_cpu_device(self):
|
|
"""``device='cpu', pin_memory=True`` is relaxed to the available
|
|
pinned allocator (matches torch's pin_memory contract)."""
|
|
if not paddle.device.is_compiled_with_cuda():
|
|
return
|
|
|
|
with dygraph_guard():
|
|
x = paddle.rand([2, 3], device=paddle.CPUPlace(), pin_memory=True)
|
|
self.assertIn("pinned", str(x.place).lower())
|
|
|
|
|
|
class TestCreationOut(unittest.TestCase):
|
|
def setUp(self):
|
|
self.x_np = np.random.rand(3, 4).astype(np.float32)
|
|
self.constant = 3.14
|
|
|
|
def test_rand(self):
|
|
x = paddle.rand([2, 2])
|
|
t = paddle.empty_like(x)
|
|
y = paddle.rand(x.shape, out=t)
|
|
self.assertEqual(t.data_ptr(), y.data_ptr())
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|