Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
2efc8755
S
Serving
项目概览
PaddlePaddle
/
Serving
大约 1 年 前同步成功
通知
186
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看板
提交
2efc8755
编写于
10月 25, 2019
作者:
X
xulongteng
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'bert' of
https://github.com/MRXLT/Serving
into bert
上级
7c4d218d
e2435737
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
4 addition
and
3 deletion
+4
-3
demo-client/src/bert_service.cpp
demo-client/src/bert_service.cpp
+1
-0
demo-serving/op/bert_service_op.cpp
demo-serving/op/bert_service_op.cpp
+2
-2
sdk-cpp/proto/bert_service.proto
sdk-cpp/proto/bert_service.proto
+1
-1
未找到文件。
demo-client/src/bert_service.cpp
浏览文件 @
2efc8755
...
...
@@ -94,6 +94,7 @@ int create_req(Request* req,
}
}
ins
->
set_max_seq_len
(
max_seq_len
);
ins
->
set_emb_size
(
emb_size
);
}
return
0
;
}
...
...
demo-serving/op/bert_service_op.cpp
浏览文件 @
2efc8755
...
...
@@ -127,13 +127,13 @@ int BertServiceOp::inference() {
#if 0 // print request
std::ostringstream oss;
for (int j = 0; j < 3; j++) {
int64_t* example = reinterpret_cast<int64_t*>(
*in)[j].data.data(
);
int64_t* example = reinterpret_cast<int64_t*>(
(*in)[j].data.data()
);
for (uint32_t i = 0; i < MAX_SEQ_LEN; i++) {
oss << *(example + i) << " ";
}
oss << ";";
}
float* example = reinterpret_cast<float*>(
*in)[3].data.data(
);
float* example = reinterpret_cast<float*>(
(*in)[3].data.data()
);
for (int i = 0; i < MAX_SEQ_LEN; i++) {
oss << *(example + i) << " ";
}
...
...
sdk-cpp/proto/bert_service.proto
浏览文件 @
2efc8755
...
...
@@ -38,7 +38,7 @@ message BertResInstance { repeated Embedding_values instances = 1; };
message
Response
{
repeated
BertResInstance
instances
=
1
;
optional
int64
op_time
=
2
;
optional
int64
infer
t
_time
=
3
;
optional
int64
infer_time
=
3
;
};
service
BertService
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录