Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
97c64254
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2299
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看板
提交
97c64254
编写于
3月 07, 2017
作者:
Y
Yu Yang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add some more interfaces
上级
c32ade74
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
72 addition
and
4 deletion
+72
-4
paddle/capi/Arguments.cpp
paddle/capi/Arguments.cpp
+33
-0
paddle/capi/PaddleCAPI.h
paddle/capi/PaddleCAPI.h
+30
-0
paddle/capi/Vector.cpp
paddle/capi/Vector.cpp
+9
-4
未找到文件。
paddle/capi/Arguments.cpp
浏览文件 @
97c64254
...
...
@@ -72,4 +72,37 @@ int PDArgsGetIds(PD_Arguments args, uint64_t ID, PD_IVector ids) {
iv
->
vec
=
a
->
args
[
ID
].
ids
;
return
kPD_NO_ERROR
;
}
int
PDArgsSetIds
(
PD_Arguments
args
,
uint64_t
ID
,
PD_IVector
ids
)
{
//! TODO(lizhao): Complete this method.
return
kPD_UNDEFINED_ERROR
;
}
int
PDArgsSetSequenceStartPos
(
PD_Arguments
args
,
uint64_t
ID
,
PD_IVector
seqPos
)
{
//! TODO(lizhao): Complete this method.
return
kPD_UNDEFINED_ERROR
;
}
int
PDArgsSetSubSequenceStartPos
(
PD_Arguments
args
,
uint64_t
ID
,
PD_IVector
subSeqPos
)
{
//! TODO(lizhao): Complete this method.
return
kPD_UNDEFINED_ERROR
;
}
int
PDArgsGetSequenceStartPos
(
PD_Arguments
args
,
uint64_t
ID
,
PD_IVector
seqPos
)
{
//! TODO(lizhao): Complete this method.
return
kPD_UNDEFINED_ERROR
;
}
int
PDArgsGetSubSequenceStartPos
(
PD_Arguments
args
,
uint64_t
ID
,
PD_IVector
subSeqPos
)
{
//! TODO(lizhao): Complete this method.
return
kPD_UNDEFINED_ERROR
;
}
}
paddle/capi/PaddleCAPI.h
浏览文件 @
97c64254
...
...
@@ -51,6 +51,19 @@ typedef void* PD_IVector;
PD_API
int
PDIVecCreateNone
(
PD_IVector
*
ivec
);
/**
* @brief PDIVectorCreate create a paddle int vector
* @param [out] ivec: output int vector.
* @param [in] array: input array.
* @param [in] size: input array size.
* @param [in] copy: memory copy or just use same memory. True if copy.
* @return PD_Error
*/
PD_API
int
PDIVectorCreate
(
PD_IVector
*
ivec
,
int
*
array
,
uint64_t
size
,
bool
copy
);
PD_API
int
PDIVecDestroy
(
PD_IVector
ivec
);
PD_API
int
PDIVectorGet
(
PD_IVector
ivec
,
int
**
buffer
);
...
...
@@ -99,6 +112,23 @@ PD_API int PDArgsGetValue(PD_Arguments args, uint64_t ID, PD_Matrix mat);
PD_API
int
PDArgsGetIds
(
PD_Arguments
args
,
uint64_t
ID
,
PD_IVector
ids
);
PD_API
int
PDArgsSetIds
(
PD_Arguments
args
,
uint64_t
ID
,
PD_IVector
ids
);
PD_API
int
PDArgsSetSequenceStartPos
(
PD_Arguments
args
,
uint64_t
ID
,
PD_IVector
seqPos
);
PD_API
int
PDArgsGetSequenceStartPos
(
PD_Arguments
args
,
uint64_t
ID
,
PD_IVector
seqPos
);
PD_API
int
PDArgsSetSubSequenceStartPos
(
PD_Arguments
args
,
uint64_t
ID
,
PD_IVector
subSeqPos
);
PD_API
int
PDArgsGetSubSequenceStartPos
(
PD_Arguments
args
,
uint64_t
ID
,
PD_IVector
subSeqPos
);
/**
* @brief GradientMachine means a neural network.
*/
...
...
paddle/capi/Vector.cpp
浏览文件 @
97c64254
...
...
@@ -26,6 +26,11 @@ int PDIVecCreateNone(PD_IVector* ivec) {
return
kPD_NO_ERROR
;
}
int
PDIVectorCreate
(
PD_IVector
*
ivec
,
int
*
array
,
uint64_t
size
,
bool
copy
)
{
//! TODO(lizhao): Complete this method.
return
kPD_UNDEFINED_ERROR
;
}
int
PDIVecDestroy
(
PD_IVector
ivec
)
{
if
(
ivec
==
nullptr
)
return
kPD_NULLPTR
;
delete
cast
<
paddle
::
capi
::
CIVector
>
(
ivec
);
...
...
@@ -41,12 +46,12 @@ int PDIVectorGet(PD_IVector ivec, int** buffer) {
}
int
PDIVectorResize
(
PD_IVector
ivec
,
uint64_t
size
)
{
// TODO(lizhao): Complete this method.
return
0
;
//
!
TODO(lizhao): Complete this method.
return
kPD_UNDEFINED_ERROR
;
}
int
PDIVectorGetSize
(
PD_IVector
ivec
,
uint64_t
*
size
)
{
// TODO(lizhao): Complete this method.
return
0
;
//
!
TODO(lizhao): Complete this method.
return
kPD_UNDEFINED_ERROR
;
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录