Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
ae360000
P
Paddle
项目概览
PaddlePaddle
/
Paddle
1 年多 前同步成功
通知
2302
Star
20931
Fork
5422
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1423
列表
看板
标记
里程碑
合并请求
543
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1,423
Issue
1,423
列表
看板
标记
里程碑
合并请求
543
合并请求
543
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
ae360000
编写于
5月 25, 2023
作者:
张
张春乔
提交者:
GitHub
5月 25, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix return bool (#54096)
上级
43d6bdca
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
13 addition
and
26 deletion
+13
-26
paddle/phi/api/include/tensor.h
paddle/phi/api/include/tensor.h
+13
-26
未找到文件。
paddle/phi/api/include/tensor.h
浏览文件 @
ae360000
...
@@ -219,40 +219,35 @@ class PADDLE_API Tensor final {
...
@@ -219,40 +219,35 @@ class PADDLE_API Tensor final {
/**
/**
* @brief Determine whether tensor is DenseTensor
* @brief Determine whether tensor is DenseTensor
*
*
* @return true
* @return bool
* @return false
*/
*/
bool
is_dense_tensor
()
const
;
bool
is_dense_tensor
()
const
;
/**
/**
* @brief Determine whether tensor is SelectedRows
* @brief Determine whether tensor is SelectedRows
*
*
* @return true
* @return bool
* @return false
*/
*/
bool
is_selected_rows
()
const
;
bool
is_selected_rows
()
const
;
/**
/**
* @brief Determine whether tensor is SparseCooTensor
* @brief Determine whether tensor is SparseCooTensor
*
*
* @return true
* @return bool
* @return false
*/
*/
bool
is_sparse_coo_tensor
()
const
;
bool
is_sparse_coo_tensor
()
const
;
/**
/**
* @brief Determine whether tensor is SparseCsrTensor
* @brief Determine whether tensor is SparseCsrTensor
*
*
* @return true
* @return bool
* @return false
*/
*/
bool
is_sparse_csr_tensor
()
const
;
bool
is_sparse_csr_tensor
()
const
;
/**
/**
* @brief Determine whether tensor is StringTensor
* @brief Determine whether tensor is StringTensor
*
*
* @return true
* @return bool
* @return false
*/
*/
bool
is_string_tensor
()
const
;
bool
is_string_tensor
()
const
;
...
@@ -268,40 +263,35 @@ class PADDLE_API Tensor final {
...
@@ -268,40 +263,35 @@ class PADDLE_API Tensor final {
/**
/**
* @brief Determine whether the tensor device is CPU
* @brief Determine whether the tensor device is CPU
*
*
* @return true
* @return bool
* @return false
*/
*/
bool
is_cpu
()
const
;
bool
is_cpu
()
const
;
/**
/**
* @brief Determine whether the tensor device is GPU
* @brief Determine whether the tensor device is GPU
*
*
* @return true
* @return bool
* @return false
*/
*/
bool
is_gpu
()
const
;
bool
is_gpu
()
const
;
/**
/**
* @brief Determine whether the tensor device is GPU_PINNED
* @brief Determine whether the tensor device is GPU_PINNED
*
*
* @return true
* @return bool
* @return false
*/
*/
bool
is_gpu_pinned
()
const
;
bool
is_gpu_pinned
()
const
;
/**
/**
* @brief Determine whether the tensor device is XPU
* @brief Determine whether the tensor device is XPU
*
*
* @return true
* @return bool
* @return false
*/
*/
bool
is_xpu
()
const
;
bool
is_xpu
()
const
;
/**
/**
* @brief Determine whether the tensor device is CustomDevice
* @brief Determine whether the tensor device is CustomDevice
*
*
* @return true
* @return bool
* @return false
*/
*/
bool
is_custom_device
()
const
;
bool
is_custom_device
()
const
;
...
@@ -482,16 +472,14 @@ class PADDLE_API Tensor final {
...
@@ -482,16 +472,14 @@ class PADDLE_API Tensor final {
/**
/**
* @brief Determine whether it is a meaningful Tensor
* @brief Determine whether it is a meaningful Tensor
*
*
* @return true
* @return bool
* @return false
*/
*/
bool
defined
()
const
;
bool
defined
()
const
;
/**
/**
* @brief Determine whether Tensor is initialized.
* @brief Determine whether Tensor is initialized.
*
*
* @return true
* @return bool
* @return false
*/
*/
bool
initialized
()
const
;
bool
initialized
()
const
;
...
@@ -499,8 +487,7 @@ class PADDLE_API Tensor final {
...
@@ -499,8 +487,7 @@ class PADDLE_API Tensor final {
* @brief Determine whether Tensor is initialized.
* @brief Determine whether Tensor is initialized.
* This is a deprecated method and may be removed in the future!
* This is a deprecated method and may be removed in the future!
*
*
* @return true
* @return bool
* @return false
*/
*/
bool
is_initialized
()
const
;
bool
is_initialized
()
const
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录