Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
机器未来
Paddle
提交
daa6cb92
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看板
未验证
提交
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)
...
@@ -40,6 +40,10 @@ get_property(phi_modules GLOBAL PROPERTY PHI_MODULES)
get_property
(
phi_kernels GLOBAL PROPERTY PHI_KERNELS
)
get_property
(
phi_kernels GLOBAL PROPERTY PHI_KERNELS
)
set
(
utils_modules stringpiece pretty_log string_helper benchmark
)
set
(
utils_modules stringpiece pretty_log string_helper benchmark
)
if
(
WITH_CUSTOM_DEVICE
)
set
(
fluid_modules
${
fluid_modules
}
phi_capi
)
endif
()
add_subdirectory
(
api
)
add_subdirectory
(
api
)
# Create static inference library if needed
# Create static inference library if needed
...
...
paddle/fluid/inference/api/CMakeLists.txt
浏览文件 @
daa6cb92
...
@@ -55,6 +55,9 @@ set(paddle_inference_api_deps
...
@@ -55,6 +55,9 @@ set(paddle_inference_api_deps
if
(
WITH_CRYPTO
)
if
(
WITH_CRYPTO
)
list
(
APPEND paddle_inference_api_deps paddle_crypto
)
list
(
APPEND paddle_inference_api_deps paddle_crypto
)
endif
()
endif
()
if
(
WITH_CUSTOM_DEVICE
)
set
(
paddle_inference_api_deps
${
paddle_inference_api_deps
}
phi_capi
)
endif
()
cc_library
(
cc_library
(
paddle_inference_api
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) {
...
@@ -156,3 +156,7 @@ std::shared_ptr<framework::Cipher> MakeCipher(const std::string &config_file) {
#endif
#endif
}
// namespace paddle
}
// 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 @@
...
@@ -5,6 +5,7 @@
*profile*;
*profile*;
*phi*;
*phi*;
*FLAGS_*;
*FLAGS_*;
PD_*;
local:
local:
*;
*;
};
};
paddle/phi/capi/include/c_tensor.h
浏览文件 @
daa6cb92
...
@@ -24,7 +24,7 @@ extern "C" {
...
@@ -24,7 +24,7 @@ extern "C" {
typedef
struct
PD_Tensor
PD_Tensor
;
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_DataLayout
PD_TensorGetDataLayout
(
const
PD_Tensor
*
tensor
,
PD_Status
*
status
);
PD_Status
*
status
);
...
...
paddle/phi/capi/include/wrapper_base.h
浏览文件 @
daa6cb92
...
@@ -128,7 +128,7 @@ class DenseTensor : public WrapperBase<PD_Tensor> {
...
@@ -128,7 +128,7 @@ class DenseTensor : public WrapperBase<PD_Tensor> {
PD_DataType
dtype
()
const
{
PD_DataType
dtype
()
const
{
C_Status
status
;
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
);
PD_CHECK_STATUS
(
status
);
return
data_type
;
return
data_type
;
}
}
...
...
paddle/phi/capi/lib/c_tensor.cc
浏览文件 @
daa6cb92
...
@@ -19,7 +19,7 @@
...
@@ -19,7 +19,7 @@
#include "paddle/phi/core/dense_tensor.h"
#include "paddle/phi/core/dense_tensor.h"
#include "paddle/phi/core/meta_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
(
status
)
{
if
(
!
tensor
)
{
if
(
!
tensor
)
{
*
status
=
C_FAILED
;
*
status
=
C_FAILED
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录