238 lines
8.3 KiB
Python
Executable File
238 lines
8.3 KiB
Python
Executable File
# 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 numpy as np
|
|
|
|
import paddle
|
|
from paddle import base
|
|
from paddle.base import Program, core, program_guard
|
|
|
|
|
|
class TestMemcpy_FillConstant(unittest.TestCase):
|
|
def get_prog(self):
|
|
paddle.enable_static()
|
|
main_program = Program()
|
|
with program_guard(main_program):
|
|
pinned_var_name = "tensor@Pinned"
|
|
gpu_var_name = "tensor@GPU"
|
|
pinned_var = main_program.global_block().create_var(
|
|
name=pinned_var_name,
|
|
shape=[10, 10],
|
|
dtype='float32',
|
|
persistable=False,
|
|
stop_gradient=True,
|
|
)
|
|
gpu_var = main_program.global_block().create_var(
|
|
name=gpu_var_name,
|
|
shape=[10, 10],
|
|
dtype='float32',
|
|
persistable=False,
|
|
stop_gradient=True,
|
|
)
|
|
main_program.global_block().append_op(
|
|
type="fill_constant",
|
|
outputs={"Out": gpu_var_name},
|
|
attrs={
|
|
"shape": [10, 10],
|
|
"dtype": gpu_var.dtype,
|
|
"value": 1.0,
|
|
"place_type": 1,
|
|
},
|
|
)
|
|
main_program.global_block().append_op(
|
|
type="fill_constant",
|
|
outputs={"Out": pinned_var_name},
|
|
attrs={
|
|
"shape": [10, 10],
|
|
"dtype": gpu_var.dtype,
|
|
"value": 0.0,
|
|
"place_type": 2,
|
|
},
|
|
)
|
|
return main_program, gpu_var, pinned_var
|
|
|
|
def test_gpu_copy_to_pinned(self):
|
|
main_program, gpu_var, pinned_var = self.get_prog()
|
|
main_program.global_block().append_op(
|
|
type='memcpy',
|
|
inputs={'X': gpu_var},
|
|
outputs={'Out': pinned_var},
|
|
attrs={'dst_place_type': 2},
|
|
)
|
|
place = base.CUDAPlace(0)
|
|
exe = base.Executor(place)
|
|
gpu_, pinned_ = exe.run(
|
|
main_program, feed={}, fetch_list=[gpu_var.name, pinned_var.name]
|
|
)
|
|
np.testing.assert_allclose(gpu_, pinned_, rtol=1e-05)
|
|
np.testing.assert_allclose(pinned_, np.ones((10, 10)), rtol=1e-05)
|
|
|
|
def test_pinned_copy_gpu(self):
|
|
main_program, gpu_var, pinned_var = self.get_prog()
|
|
main_program.global_block().append_op(
|
|
type='memcpy',
|
|
inputs={'X': pinned_var},
|
|
outputs={'Out': gpu_var},
|
|
attrs={'dst_place_type': 1},
|
|
)
|
|
place = base.CUDAPlace(0)
|
|
exe = base.Executor(place)
|
|
gpu_, pinned_ = exe.run(
|
|
main_program, feed={}, fetch_list=[gpu_var.name, pinned_var.name]
|
|
)
|
|
np.testing.assert_allclose(gpu_, pinned_, rtol=1e-05)
|
|
np.testing.assert_allclose(gpu_, np.zeros((10, 10)), rtol=1e-05)
|
|
|
|
def test_hip_copy_bool_value(self):
|
|
if core.is_compiled_with_rocm():
|
|
paddle.enable_static()
|
|
main_program = Program()
|
|
with program_guard(main_program):
|
|
pinned_var_name = "tensor@Pinned"
|
|
gpu_var_name = "tensor@GPU"
|
|
pinned_var = main_program.global_block().create_var(
|
|
name=pinned_var_name,
|
|
shape=[1],
|
|
dtype='bool',
|
|
persistable=False,
|
|
stop_gradient=True,
|
|
)
|
|
gpu_var = main_program.global_block().create_var(
|
|
name=gpu_var_name,
|
|
shape=[1],
|
|
dtype='bool',
|
|
persistable=False,
|
|
stop_gradient=True,
|
|
)
|
|
main_program.global_block().append_op(
|
|
type="fill_constant",
|
|
outputs={"Out": gpu_var_name},
|
|
attrs={
|
|
"shape": [1],
|
|
"dtype": gpu_var.dtype,
|
|
"value": False,
|
|
"place_type": 1,
|
|
},
|
|
)
|
|
main_program.global_block().append_op(
|
|
type="fill_constant",
|
|
outputs={"Out": pinned_var_name},
|
|
attrs={
|
|
"shape": [1],
|
|
"dtype": gpu_var.dtype,
|
|
"value": True,
|
|
"place_type": 2,
|
|
},
|
|
)
|
|
|
|
main_program.global_block().append_op(
|
|
type='memcpy',
|
|
inputs={'X': pinned_var},
|
|
outputs={'Out': gpu_var},
|
|
attrs={'dst_place_type': 1},
|
|
)
|
|
place = base.CUDAPlace(0)
|
|
exe = base.Executor(place)
|
|
gpu_, pinned_ = exe.run(
|
|
main_program,
|
|
feed={},
|
|
fetch_list=[gpu_var.name, pinned_var.name],
|
|
)
|
|
expect_value = np.array([1]).astype('bool')
|
|
np.testing.assert_array_equal(gpu_, expect_value)
|
|
else:
|
|
pass
|
|
|
|
|
|
class TestMemcpyOPError(unittest.TestCase):
|
|
def get_prog(self):
|
|
paddle.enable_static()
|
|
main_program = Program()
|
|
with program_guard(main_program):
|
|
pinned_var = main_program.global_block().create_var(
|
|
name="tensor@Pinned_0",
|
|
shape=[10, 10],
|
|
dtype='float32',
|
|
persistable=False,
|
|
stop_gradient=True,
|
|
)
|
|
main_program.global_block().append_op(
|
|
type="fill_constant",
|
|
outputs={"Out": "tensor@Pinned_0"},
|
|
attrs={
|
|
"shape": [10, 10],
|
|
"dtype": pinned_var.dtype,
|
|
"value": 0.0,
|
|
"place_type": 2,
|
|
},
|
|
)
|
|
return main_program, pinned_var
|
|
|
|
def test_SELECTED_ROWS(self):
|
|
main_program, pinned_var = self.get_prog()
|
|
selected_row_var = main_program.global_block().create_var(
|
|
name="selected_row_0",
|
|
dtype="float32",
|
|
persistable=False,
|
|
type=base.core.VarDesc.VarType.SELECTED_ROWS,
|
|
stop_gradient=True,
|
|
)
|
|
main_program.global_block().append_op(
|
|
type="fill_constant",
|
|
outputs={"Out": selected_row_var},
|
|
attrs={
|
|
"shape": selected_row_var.shape,
|
|
"dtype": selected_row_var.dtype,
|
|
"value": 1.0,
|
|
"place_type": 1,
|
|
},
|
|
)
|
|
with self.assertRaises(RuntimeError):
|
|
main_program.global_block().append_op(
|
|
type='memcpy',
|
|
inputs={'X': selected_row_var},
|
|
outputs={'Out': pinned_var},
|
|
attrs={'dst_place_type': 2},
|
|
)
|
|
place = base.CUDAPlace(0)
|
|
exe = base.Executor(place)
|
|
selected_row_var_, pinned_ = exe.run(
|
|
main_program,
|
|
feed={},
|
|
fetch_list=[selected_row_var.name, pinned_var.name],
|
|
)
|
|
|
|
|
|
class TestMemcpyApi(unittest.TestCase):
|
|
def test_api(self):
|
|
# Disable static graph mode for this test
|
|
paddle.disable_static()
|
|
try:
|
|
a = paddle.ones([1024, 1024])
|
|
b = paddle.tensor.creation._memcpy(a, paddle.CUDAPinnedPlace())
|
|
# Test that memcpy operation succeeded by checking data equality
|
|
np.testing.assert_array_equal(a.numpy(), b.numpy())
|
|
# Test that the tensor was created successfully
|
|
self.assertEqual(a.shape, b.shape)
|
|
self.assertEqual(a.dtype, b.dtype)
|
|
finally:
|
|
# Re-enable static graph mode
|
|
paddle.enable_static()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
paddle.enable_static()
|
|
unittest.main()
|