Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleFL
提交
80e1ec51
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看板
提交
80e1ec51
编写于
8月 27, 2020
作者:
Y
yangqingyou
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
template truncate3
上级
af1a66bb
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
7 addition
and
10 deletion
+7
-10
core/privc3/fixedpoint_tensor_imp.h
core/privc3/fixedpoint_tensor_imp.h
+7
-10
未找到文件。
core/privc3/fixedpoint_tensor_imp.h
浏览文件 @
80e1ec51
...
...
@@ -211,10 +211,10 @@ void FixedPointTensor<T, N>::truncate(const FixedPointTensor<T, N>* op,
#else // use truncate3
// Protocol. `truncate3`
// Protocol. `truncate3`
(illustrated for data type T = int64_t)
// motivation:
// truncates in aby3 may cause msb error with small probability
// the reason is that before rishft op, its masked value e.g., x' - r' may overflow in int64
// the reason is that before rishft op, its masked value e.g., x' - r' may overflow in int64
_t
// so that, in `truncate3`, we limit r' in (-2^62, 2^62) to avoid the problem.
// notice:
...
...
@@ -245,17 +245,14 @@ void FixedPointTensor<T, N>::truncate(const FixedPointTensor<T, N>* op,
temp
.
emplace_back
(
tensor_factory
()
->
template
create
<
T
>(
op
->
shape
()));
}
// r', contraint in (
-2^62, 2^62
)
// r', contraint in (
constraint_low, contraint_upper
)
aby3_ctx
()
->
template
gen_random_private
(
*
temp
[
0
]);
int64_t
contraint_upper
=
~
((
uint64_t
)
1
<<
6
2
);
int64_t
contraint_low
=
(
uint64_t
)
1
<<
62
;
T
contraint_upper
=
(
T
)
1
<<
(
sizeof
(
T
)
*
8
-
2
);
T
contraint_low
=
-
contraint_upper
;
std
::
for_each
(
temp
[
0
]
->
data
(),
temp
[
0
]
->
data
()
+
temp
[
0
]
->
numel
(),
[
&
contraint_upper
,
&
contraint_low
]
(
T
&
a
)
{
// contraint -2^62 < a < 2^62
if
(
a
>=
0
)
{
a
&=
contraint_upper
;
}
else
{
a
|=
contraint_low
;
while
((
a
>
contraint_upper
||
a
<
contraint_low
))
{
a
=
aby3_ctx
()
->
template
gen_random_private
<
T
>();
}
});
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录