Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
47b8040d
S
Serving
项目概览
PaddlePaddle
/
Serving
大约 1 年 前同步成功
通知
185
Star
833
Fork
253
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
105
列表
看板
标记
里程碑
合并请求
10
Wiki
2
Wiki
分析
仓库
DevOps
项目成员
Pages
S
Serving
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
105
Issue
105
列表
看板
标记
里程碑
合并请求
10
合并请求
10
Pages
分析
分析
仓库分析
DevOps
Wiki
2
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
47b8040d
编写于
3月 10, 2022
作者:
H
HexToString
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add 2 lod fix
上级
2c6b21d5
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
12 addition
and
13 deletion
+12
-13
core/predictor/framework/bsf-inl.h
core/predictor/framework/bsf-inl.h
+0
-1
core/predictor/framework/bsf.h
core/predictor/framework/bsf.h
+12
-12
未找到文件。
core/predictor/framework/bsf-inl.h
100644 → 100755
浏览文件 @
47b8040d
...
...
@@ -70,7 +70,6 @@ bool Task<InItemT, OutItemT>::task_fetch_create(BatchTasks<TaskT>& batchTask) {
// 每个lod型的fetchvar拷贝到对应的临时空间中
// 最后再计算临时空间的总量,合并fetchvar和lod
fetchvar_batch
=
0
;
}
else
{
// 普通fetchvar情况,此时该Task总的fetchvar_batch =
// 输入的总的batch_size()
...
...
core/predictor/framework/bsf.h
100644 → 100755
浏览文件 @
47b8040d
...
...
@@ -290,12 +290,13 @@ struct Task {
// which means error.
if
(
feedvar_batch_size
(
feedvar_index
)
!=
1
&&
total_feed_batch
!=
1
)
{
return
false
;
}
else
{
// which means feedvar shape[0] = 1.
// shape[0] does not change with batch
}
else
if
(
feedvar_batch_size
(
feedvar_index
)
!=
1
&&
total_feed_batch
==
1
){
for
(
int
temp
=
0
;
temp
<
feedvar_index
;
++
temp
){
set_feed_nobatch_index
.
insert
(
temp
);
}
total_feed_batch
=
feedvar_batch_size
(
feedvar_index
);
}
else
{
set_feed_nobatch_index
.
insert
(
feedvar_index
);
total_feed_batch
=
std
::
max
(
feedvar_batch_size
(
feedvar_index
),
total_feed_batch
);
}
}
// 将lod feedvar index加入到vector中。
...
...
@@ -400,6 +401,7 @@ struct Task {
size_t
lod_length
=
0
;
size_t
2l
od_length
=
0
;
size_t
total_shape0
=
0
;
size_t
once_lod0_length
=
0
;
int
lod_size
=
1
;
size_t
feedvar_index
=
vector_fetch_lod_index
[
index
];
// 由于PaddleTensor的resize实现,是每次都会清空,所以必须先统计总长度。
...
...
@@ -408,12 +410,13 @@ struct Task {
lod_size
=
outLodTensorVector
[
taskmeta_index
][
index
].
lod
.
size
();
data_length
+=
outLodTensorVector
[
taskmeta_index
][
index
].
data
.
length
();
lod_length
+=
outLodTensorVector
[
taskmeta_index
][
index
].
lod
[
0
].
size
();
once_lod0_length
=
outLodTensorVector
[
taskmeta_index
][
index
].
lod
[
0
].
size
();
lod_length
+=
once_lod0_length
;
total_shape0
+=
outLodTensorVector
[
taskmeta_index
][
index
].
shape
[
0
];
if
(
lod_size
==
2
)
{
2l
od_length
+=
outLodTensorVector
[
taskmeta_index
][
index
].
lod
[
0
]
[
lod
_length
-
1
];
[
once_lod0
_length
-
1
];
}
}
// 一次性扩容PaddleTensor中的data和lod
...
...
@@ -1162,18 +1165,15 @@ class BatchTasks {
// which means fetchvar shape[0] = 1.
// shape[0] does not change with batch
set_fetch_nobatch_index
.
insert
(
fetchvar_index
);
_total_fetch_batch
=
std
::
max
(
fetchvar_batch_size
(
fetchvar_index
),
_total_fetch_batch
);
}
else
if
(
_total_fetch_batch
==
1
)
{
// 这时意味着,之前的fetchvar shape[0] 全部都= 1
// 当前的fetchvar shape[0] > 1
// 所以,之前的都是no_batch
for
(
size_t
temp_index
=
fetchvar_index
-
1
;
temp_index
>=
0
;
for
(
size_t
temp_index
=
0
;
temp_index
<
fetchvar_index
;
--
temp_index
)
{
set_fetch_nobatch_index
.
insert
(
fetchvar_index
);
}
_total_fetch_batch
=
std
::
max
(
fetchvar_batch_size
(
fetchvar_index
),
_total_fetch_batch
);
_total_fetch_batch
=
fetchvar_batch_size
(
fetchvar_index
);
}
else
{
// which means error.
return
false
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录