Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleFL
提交
3720dcf1
P
PaddleFL
项目概览
PaddlePaddle
/
PaddleFL
通知
35
Star
5
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
6
列表
看板
标记
里程碑
合并请求
4
Wiki
3
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleFL
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
6
Issue
6
列表
看板
标记
里程碑
合并请求
4
合并请求
4
Pages
分析
分析
仓库分析
DevOps
Wiki
3
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
3720dcf1
编写于
9月 02, 2020
作者:
Y
yangqingyou
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
amend
上级
7d553c48
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
3 addition
and
17 deletion
+3
-17
core/privc/triplet_generator.h
core/privc/triplet_generator.h
+1
-13
core/privc/triplet_generator_impl.h
core/privc/triplet_generator_impl.h
+2
-4
未找到文件。
core/privc/triplet_generator.h
浏览文件 @
3720dcf1
...
...
@@ -152,19 +152,7 @@ private:
return
privc_ctx
()
->
next_party
();
}
// gen triplet for int64_t type
std
::
vector
<
uint64_t
>
gen_product
(
const
std
::
vector
<
uint64_t
>
&
input
)
{
return
gen_product_impl
<
T
>
(
input
,
Type2Type
<
T
>
());
};
template
<
typename
T__
>
std
::
vector
<
uint64_t
>
gen_product_impl
(
const
std
::
vector
<
uint64_t
>
&
input
,
Type2Type
<
T__
>
)
{
PADDLE_THROW
(
"type except `int64_t` for generating triplet is not implemented yet"
);
}
template
<
typename
T__
>
std
::
vector
<
uint64_t
>
gen_product_impl
(
const
std
::
vector
<
uint64_t
>
&
input
,
Type2Type
<
int64_t
>
);
std
::
vector
<
uint64_t
>
gen_product
(
const
std
::
vector
<
uint64_t
>
&
input
);
const
block
_base_ot_choices
;
...
...
core/privc/triplet_generator_impl.h
浏览文件 @
3720dcf1
...
...
@@ -123,10 +123,8 @@ void TripletGenerator<T, N>::fill_triplet_buffer_impl(const Type2Type<int64_t>)
}
template
<
typename
T
,
size_t
N
>
template
<
typename
T_
>
std
::
vector
<
uint64_t
>
TripletGenerator
<
T
,
N
>::
gen_product_impl
(
const
std
::
vector
<
uint64_t
>
&
input
,
Type2Type
<
int64_t
>
)
{
std
::
vector
<
uint64_t
>
TripletGenerator
<
T
,
N
>::
gen_product
(
const
std
::
vector
<
uint64_t
>
&
input
)
{
size_t
word_width
=
8
*
sizeof
(
uint64_t
);
std
::
vector
<
uint64_t
>
ret
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录