From d2369dd91fc3daa3cef32a08d6e99b91910a2479 Mon Sep 17 00:00:00 2001 From: Zhang Ting Date: Tue, 29 Sep 2020 23:04:39 +0800 Subject: [PATCH] modify docs of CPUPlace and CUDAPinnedPlace, test=document_fix (#27587) --- paddle/fluid/pybind/pybind.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/paddle/fluid/pybind/pybind.cc b/paddle/fluid/pybind/pybind.cc index fc5b0774667..0929febc4d4 100644 --- a/paddle/fluid/pybind/pybind.cc +++ b/paddle/fluid/pybind/pybind.cc @@ -1438,13 +1438,13 @@ All parameter, weight, gradient are variables in Paddle. py::class_(m, "CPUPlace", R"DOC( CPUPlace is a descriptor of a device. - It represents a CPU device allocated or to be allocated with Tensor or LoDTensor. + It represents a CPU device on which a tensor will be allocated and a model will run. Examples: .. code-block:: python - import paddle.fluid as fluid - cpu_place = fluid.CPUPlace() + import paddle + cpu_place = paddle.CPUPlace() )DOC") .def(py::init<>()) @@ -1468,8 +1468,8 @@ All parameter, weight, gradient are variables in Paddle. Examples: .. code-block:: python - import paddle.fluid as fluid - place = fluid.CUDAPinnedPlace() + import paddle + place = paddle.CUDAPinnedPlace() )DOC") .def("__init__", -- GitLab