Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
机器未来
Paddle
提交
d4b0d03b
P
Paddle
项目概览
机器未来
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
d4b0d03b
编写于
10月 28, 2021
作者:
L
Ligoml
提交者:
GitHub
10月 28, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix device docs;test=document_fix (#36784)
* fix device docs;test=document_fix * update __init__.py
上级
6edbdbfa
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
9 addition
and
8 deletion
+9
-8
python/paddle/device/__init__.py
python/paddle/device/__init__.py
+7
-6
python/paddle/fluid/framework.py
python/paddle/fluid/framework.py
+2
-2
未找到文件。
python/paddle/device/__init__.py
浏览文件 @
d4b0d03b
...
...
@@ -48,7 +48,7 @@ def is_compiled_with_npu():
.. code-block:: python
import paddle
support_npu = paddle.is_compiled_with_npu()
support_npu = paddle.
device.
is_compiled_with_npu()
"""
return
core
.
is_compiled_with_npu
()
...
...
@@ -63,7 +63,7 @@ def is_compiled_with_xpu():
.. code-block:: python
import paddle
support_xpu = paddle.is_compiled_with_xpu()
support_xpu = paddle.
device.
is_compiled_with_xpu()
"""
return
core
.
is_compiled_with_xpu
()
...
...
@@ -77,10 +77,11 @@ def XPUPlace(dev_id):
Examples:
.. code-block:: python
# required: xpu
import paddle
place = paddle.XPUPlace(0)
place = paddle.
device.
XPUPlace(0)
"""
return
core
.
XPUPlace
(
dev_id
)
...
...
@@ -98,7 +99,7 @@ def get_cudnn_version():
import paddle
cudnn_version = paddle.get_cudnn_version()
cudnn_version = paddle.
device.
get_cudnn_version()
...
...
@@ -195,7 +196,7 @@ def set_device(device):
import paddle
paddle.set_device("cpu")
paddle.
device.
set_device("cpu")
x1 = paddle.ones(name='x1', shape=[1, 2], dtype='int32')
x2 = paddle.zeros(name='x2', shape=[1, 2], dtype='int32')
data = paddle.stack([x1,x2], axis=1)
...
...
@@ -217,7 +218,7 @@ def get_device():
.. code-block:: python
import paddle
device = paddle.get_device()
device = paddle.
device.
get_device()
"""
device
=
''
...
...
python/paddle/fluid/framework.py
浏览文件 @
d4b0d03b
...
...
@@ -467,7 +467,7 @@ def is_compiled_with_cuda():
.. code-block:: python
import paddle
support_gpu = paddle.is_compiled_with_cuda()
support_gpu = paddle.
device.
is_compiled_with_cuda()
"""
return
core
.
is_compiled_with_cuda
()
...
...
@@ -482,7 +482,7 @@ def is_compiled_with_rocm():
.. code-block:: python
import paddle
support_gpu = paddle.is_compiled_with_rocm()
support_gpu = paddle.
device.
is_compiled_with_rocm()
"""
return
core
.
is_compiled_with_rocm
()
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录