Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
X2Paddle
提交
b39b9ccf
X
X2Paddle
项目概览
PaddlePaddle
/
X2Paddle
大约 1 年 前同步成功
通知
328
Star
698
Fork
167
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
26
列表
看板
标记
里程碑
合并请求
4
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
X
X2Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
26
Issue
26
列表
看板
标记
里程碑
合并请求
4
合并请求
4
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
b39b9ccf
编写于
5月 09, 2022
作者:
W
WJJ1995
提交者:
GitHub
5月 09, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fixed aten index (#787)
* add replication pad * update op_list.md * re-lint * fixed aten::index * rm useless code
上级
90962085
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
12 addition
and
19 deletion
+12
-19
x2paddle/op_mapper/pytorch2paddle/aten.py
x2paddle/op_mapper/pytorch2paddle/aten.py
+12
-19
未找到文件。
x2paddle/op_mapper/pytorch2paddle/aten.py
浏览文件 @
b39b9ccf
...
...
@@ -2853,45 +2853,38 @@ def aten_hardswish(mapper, graph, node):
def
aten_index
(
mapper
,
graph
,
node
):
"""
构造选择元素的PaddleLayer。
TorchScript
示例
:
"""
TorchScript
Code
:
%1681 : Float = aten::index(%1653, %1680)
参数含义
:
%1681 (Tensor):
输出,选择后的Tensor。
%1653 (Tensor):
需要选择的Tensor。
%1680 (int):
选择的索引。
Parameter meaning
:
%1681 (Tensor):
Output Tensor
%1653 (Tensor):
Input Tensor
%1680 (int):
Index
"""
scope_name
=
mapper
.
normalize_scope_name
(
node
)
output_name
=
mapper
.
_get_outputs_name
(
node
)[
0
]
layer_outputs
=
[
output_name
]
layer_inputs
=
{}
layer_attrs
=
{}
inputs_name
,
inputs_node
=
mapper
.
_get_inputs_name
(
node
)
#
获取当前节点输出的
list
#
output
list
current_outputs
=
[
output_name
]
#
处理输入0,即%1653
#
process Input Tensor
mapper
.
_check_input
(
graph
,
inputs_node
[
0
],
inputs_name
[
0
],
current_outputs
,
scope_name
)
layer_inputs
[
"x"
]
=
inputs_name
[
0
]
#
处理输入1,即%1680
#
process Index
mapper
.
_check_input
(
graph
,
inputs_node
[
1
],
inputs_name
[
1
],
current_outputs
,
scope_name
)
layer_inputs
[
"index"
]
=
inputs_name
[
1
]
# 获取当前节点输入的list
current_inputs
=
list
(
layer_inputs
.
values
())
graph
.
add_layer
(
"prim.getitem"
,
inputs
=
{
"list"
:
layer_inputs
[
"index"
]},
outputs
=
[
layer_inputs
[
"index"
]],
scope_name
=
scope_name
,
index
=
0
)
graph
.
add_layer
(
"paddle.index_select"
,
inputs
=
layer_inputs
,
inputs
=
{
"list"
:
layer_inputs
[
"x"
]},
outputs
=
layer_outputs
,
scope_name
=
scope_name
,
**
layer_attrs
)
index
=
layer_inputs
[
"index"
]
)
return
current_inputs
,
current_outputs
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录