Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
Paddle
提交
61a49e49
P
Paddle
项目概览
BaiXuePrincess
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
61a49e49
编写于
5月 16, 2017
作者:
H
Helin Wang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add paddle_release_param
上级
1c908df6
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
21 addition
and
21 deletion
+21
-21
paddle/go/pserver/lib/client/main.go
paddle/go/pserver/lib/client/main.go
+19
-5
paddle/go/pserver/lib/client/test/main.c
paddle/go/pserver/lib/client/test/main.c
+2
-16
未找到文件。
paddle/go/pserver/lib/client/main.go
浏览文件 @
61a49e49
...
...
@@ -15,10 +15,24 @@ typedef enum {
typedef struct {
char* name;
paddle_element_type element_type;
void
* content;
char
* content;
int content_len;
} paddle_parameter, paddle_gradient;
static inline void paddle_release_param(paddle_parameter* param) {
if (param != NULL) {
if (param->name != NULL) {
free(param->name);
}
if (param->content != NULL) {
free(param->content);
}
free(param);
}
}
typedef int client;
*/
import
"C"
...
...
@@ -185,12 +199,12 @@ func paddle_get_params(client C.client, names **C.char, dst **C.paddle_parameter
}
}
if
param
.
content
!=
nullPtr
{
if
unsafe
.
Pointer
(
param
.
content
)
!=
nullPtr
{
if
int
(
param
.
content_len
)
==
len
(
p
.
Content
)
{
contentAllocated
=
true
}
else
{
log
.
Println
(
"warning: pre-allocated content len does not match parameter content len, pre-allocated content will be freed."
,
param
.
content_len
,
len
(
p
.
Content
))
C
.
free
(
param
.
content
)
C
.
free
(
unsafe
.
Pointer
(
param
.
content
)
)
}
}
}
...
...
@@ -199,9 +213,9 @@ func paddle_get_params(client C.client, names **C.char, dst **C.paddle_parameter
param
.
name
=
C
.
CString
(
p
.
Name
)
}
if
!
contentAllocated
{
param
.
content
=
C
.
malloc
(
C
.
size_t
(
len
(
p
.
Content
)))
param
.
content
=
(
*
C
.
char
)(
C
.
malloc
(
C
.
size_t
(
len
(
p
.
Content
)
)))
}
C
.
memcpy
(
param
.
content
,
unsafe
.
Pointer
(
&
p
.
Content
[
0
]),
C
.
size_t
(
len
(
p
.
Content
)))
C
.
memcpy
(
unsafe
.
Pointer
(
param
.
content
)
,
unsafe
.
Pointer
(
&
p
.
Content
[
0
]),
C
.
size_t
(
len
(
p
.
Content
)))
param
.
content_len
=
C
.
int
(
len
(
p
.
Content
))
param
.
element_type
=
C
.
paddle_element_type
(
p
.
ElementType
)
}
...
...
paddle/go/pserver/lib/client/test/main.c
浏览文件 @
61a49e49
...
...
@@ -8,20 +8,6 @@ void panic() {
*
(
void
*
)
0
;
}
void
releaseParam
(
paddle_parameter
*
param
)
{
if
(
param
!=
NULL
)
{
if
(
param
->
name
!=
NULL
)
{
free
(
param
->
name
);
}
if
(
param
->
content
!=
NULL
)
{
free
(
param
->
content
);
}
free
(
param
);
}
}
int
main
()
{
char
addr
[]
=
"localhost:3000"
;
client
c
=
paddle_new_pserver_client
(
addr
);
...
...
@@ -65,8 +51,8 @@ int main() {
panic
();
}
releaseP
aram
(
params
[
0
]);
releaseP
aram
(
params
[
1
]);
paddle_release_p
aram
(
params
[
0
]);
paddle_release_p
aram
(
params
[
1
]);
if
(
!
paddle_save_model
(
c
,
"/tmp/"
))
{
panic
();
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录