Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
daa6cb92
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看板
未验证
提交
daa6cb92
编写于
7月 13, 2022
作者:
R
ronnywang
提交者:
GitHub
7月 13, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[CustomKernel] phi capi add inference support (#44268)
上级
7dc7fc4b
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
15 addition
and
3 deletion
+15
-3
paddle/fluid/inference/CMakeLists.txt
paddle/fluid/inference/CMakeLists.txt
+4
-0
paddle/fluid/inference/api/CMakeLists.txt
paddle/fluid/inference/api/CMakeLists.txt
+3
-0
paddle/fluid/inference/api/api.cc
paddle/fluid/inference/api/api.cc
+4
-0
paddle/fluid/inference/paddle_inference_custom_device.map
paddle/fluid/inference/paddle_inference_custom_device.map
+1
-0
paddle/phi/capi/include/c_tensor.h
paddle/phi/capi/include/c_tensor.h
+1
-1
paddle/phi/capi/include/wrapper_base.h
paddle/phi/capi/include/wrapper_base.h
+1
-1
paddle/phi/capi/lib/c_tensor.cc
paddle/phi/capi/lib/c_tensor.cc
+1
-1
未找到文件。
paddle/fluid/inference/CMakeLists.txt
浏览文件 @
daa6cb92
...
...
@@ -40,6 +40,10 @@ get_property(phi_modules GLOBAL PROPERTY PHI_MODULES)
get_property
(
phi_kernels GLOBAL PROPERTY PHI_KERNELS
)
set
(
utils_modules stringpiece pretty_log string_helper benchmark
)
if
(
WITH_CUSTOM_DEVICE
)
set
(
fluid_modules
${
fluid_modules
}
phi_capi
)
endif
()
add_subdirectory
(
api
)
# Create static inference library if needed
...
...
paddle/fluid/inference/api/CMakeLists.txt
浏览文件 @
daa6cb92
...
...
@@ -55,6 +55,9 @@ set(paddle_inference_api_deps
if
(
WITH_CRYPTO
)
list
(
APPEND paddle_inference_api_deps paddle_crypto
)
endif
()
if
(
WITH_CUSTOM_DEVICE
)
set
(
paddle_inference_api_deps
${
paddle_inference_api_deps
}
phi_capi
)
endif
()
cc_library
(
paddle_inference_api
...
...
paddle/fluid/inference/api/api.cc
浏览文件 @
daa6cb92
...
...
@@ -156,3 +156,7 @@ std::shared_ptr<framework::Cipher> MakeCipher(const std::string &config_file) {
#endif
}
// namespace paddle
#ifdef PADDLE_WITH_CUSTOM_DEVICE
#include "paddle/phi/capi/capi.h"
#endif
paddle/fluid/inference/paddle_inference_custom_device.map
浏览文件 @
daa6cb92
...
...
@@ -5,6 +5,7 @@
*profile*;
*phi*;
*FLAGS_*;
PD_*;
local:
*;
};
paddle/phi/capi/include/c_tensor.h
浏览文件 @
daa6cb92
...
...
@@ -24,7 +24,7 @@ extern "C" {
typedef
struct
PD_Tensor
PD_Tensor
;
PD_DataType
PD_TensorGetDataType
(
const
PD_Tensor
*
tensor
,
PD_Status
*
status
);
PD_DataType
PD_TensorGet
PD
DataType
(
const
PD_Tensor
*
tensor
,
PD_Status
*
status
);
PD_DataLayout
PD_TensorGetDataLayout
(
const
PD_Tensor
*
tensor
,
PD_Status
*
status
);
...
...
paddle/phi/capi/include/wrapper_base.h
浏览文件 @
daa6cb92
...
...
@@ -128,7 +128,7 @@ class DenseTensor : public WrapperBase<PD_Tensor> {
PD_DataType
dtype
()
const
{
C_Status
status
;
auto
data_type
=
PD_TensorGetDataType
(
raw_data
(),
&
status
);
auto
data_type
=
PD_TensorGet
PD
DataType
(
raw_data
(),
&
status
);
PD_CHECK_STATUS
(
status
);
return
data_type
;
}
...
...
paddle/phi/capi/lib/c_tensor.cc
浏览文件 @
daa6cb92
...
...
@@ -19,7 +19,7 @@
#include "paddle/phi/core/dense_tensor.h"
#include "paddle/phi/core/meta_tensor.h"
PD_DataType
PD_TensorGetDataType
(
const
PD_Tensor
*
tensor
,
PD_Status
*
status
)
{
PD_DataType
PD_TensorGet
PD
DataType
(
const
PD_Tensor
*
tensor
,
PD_Status
*
status
)
{
if
(
status
)
{
if
(
!
tensor
)
{
*
status
=
C_FAILED
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录