Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleFL
提交
a4c04cb1
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看板
未验证
提交
a4c04cb1
编写于
5月 07, 2020
作者:
Q
Qinghe JING
提交者:
GitHub
5月 07, 2020
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #62 from qjing666/new_version
fix bugs in New version
上级
26ee3422
75615750
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
4 addition
and
4 deletion
+4
-4
core/paddlefl_mpc/operators/mpc_elementwise_add_op.h
core/paddlefl_mpc/operators/mpc_elementwise_add_op.h
+3
-3
python/setup.py
python/setup.py
+1
-1
未找到文件。
core/paddlefl_mpc/operators/mpc_elementwise_add_op.h
浏览文件 @
a4c04cb1
...
...
@@ -106,9 +106,9 @@ template <typename DeviceContext, typename T>
class
MpcElementwiseAddKernel
:
public
MpcOpKernel
<
T
>
{
public:
void
ComputeImpl
(
const
framework
::
ExecutionContext
&
ctx
)
const
override
{
auto
*
in_x_t
=
ctx
.
Input
<
LoD
Tensor
>
(
"X"
);
auto
*
in_y_t
=
ctx
.
Input
<
LoD
Tensor
>
(
"Y"
);
auto
*
out_t
=
ctx
.
Output
<
LoD
Tensor
>
(
"Out"
);
auto
*
in_x_t
=
ctx
.
Input
<
Tensor
>
(
"X"
);
auto
*
in_y_t
=
ctx
.
Input
<
Tensor
>
(
"Y"
);
auto
*
out_t
=
ctx
.
Output
<
Tensor
>
(
"Out"
);
int
axis
=
ctx
.
Attr
<
int
>
(
"axis"
);
...
...
python/setup.py
浏览文件 @
a4c04cb1
...
...
@@ -22,7 +22,7 @@ import platform
from
setuptools
import
find_packages
from
setuptools
import
setup
from
paddle_fl.version
import
fl_version
def
python_version
():
"""
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录