aten.py 35.5 KB
Newer Older
S
SunAhong1993 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#   Copyright (c) 2020  PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from x2paddle.core.util import *


def aten_adaptive_avg_pool2d(mapper, graph, node):
    """ 构造average adaptive pool2d的PaddleLayer。

S
SunAhong1993 已提交
21
    TorchScript示例:
S
SunAhong1993 已提交
22 23 24 25 26 27 28
        %x.5 : Tensor = aten::adaptive_avg_pool2d(%x.3, %_output_size.1)
        参数含义:
        %x.5 (Tensor): 池化后结果Tensor。
        %x.3 (Tensor): 输入Tensor。
        %_output_size.1 (list): 自适应池化后的Tensor的宽、高大小。
    """
    output_name = mapper._get_outputs_name(node)[0]
S
SunAhong1993 已提交
29 30 31 32
    layer_outputs = [output_name]
    layer_inputs = {}
    layer_attrs = {}
    inputs_name, inputs_node = mapper._get_inputs_name(node)
S
SunAhong1993 已提交
33 34
    # 获取当前节点输出的list
    current_outputs = [output_name]
S
SunAhong1993 已提交
35
    # 处理输入0,即%x.3
S
SunAhong1993 已提交
36
    mapper._check_input(graph, inputs_node[0], inputs_name[0], current_outputs)
S
SunAhong1993 已提交
37
    layer_inputs["input"] = inputs_name[0]
S
SunAhong1993 已提交
38
    # 获取当前节点输入的list
S
SunAhong1993 已提交
39 40 41 42 43
    current_inputs = list(layer_inputs.values())
    # 处理输入1,即%_output_size.1
    if inputs_name[1] in mapper.attrs:
        layer_attrs["pool_size"] = mapper.attrs[inputs_name[1]]
    else:
S
SunAhong1993 已提交
44 45
        mapper._check_input(graph, inputs_node[1], inputs_name[1],
                            current_outputs)
S
SunAhong1993 已提交
46 47 48 49
        layer_attrs["pool_size"] = inputs_name[1]
        current_inputs.append(inputs_name[1])
    layer_attrs["pool_type"] = string("avg")

S
SunAhong1993 已提交
50 51
    graph.add_layer(
        "fluid.layers.adaptive_pool2d",
S
SunAhong1993 已提交
52 53 54 55
        inputs=layer_inputs,
        outputs=layer_outputs,
        **layer_attrs)
    return current_inputs, current_outputs
S
SunAhong1993 已提交
56 57 58 59 60


def aten_addmm(mapper, graph, node):
    """ 构造addmm的PaddleLayer,该节点实现out = alpha ∗ x ∗ y + beta ∗ input。

S
SunAhong1993 已提交
61
    TorchScript示例:
S
SunAhong1993 已提交
62 63 64 65 66 67 68 69 70 71
        %ret.2 : Tensor = aten::addmm(%150, %input.3, %156, %151, %152)
        参数含义:
        %ret.2 (Tensor): addmm结果Tensor。
        %150 (Tensor): 输入Tensor input。
        %input.3 (Tensor): 输入Tensor x。
        %156 (Tensor): 输入Tensor y。
        %151 (int/float): 输入alpha。
        %152 (int/float): 输入beta。
    """
    output_name = mapper._get_outputs_name(node)[0]
S
SunAhong1993 已提交
72 73 74 75
    layer_outputs = [output_name]
    layer_inputs = {}
    layer_attrs = {}
    inputs_name, inputs_node = mapper._get_inputs_name(node)
S
SunAhong1993 已提交
76 77
    # 获取当前节点输出的list
    current_outputs = [output_name]
S
SunAhong1993 已提交
78
    # 处理输入0,即%150
S
SunAhong1993 已提交
79
    mapper._check_input(
S
SunAhong1993 已提交
80
        graph, inputs_node[0], inputs_name[0], current_outputs, add_dim=True)
S
SunAhong1993 已提交
81 82
    layer_inputs["input"] = inputs_name[0]
    # 处理输入1,即%input.3
S
SunAhong1993 已提交
83
    mapper._check_input(graph, inputs_node[1], inputs_name[1], current_outputs)
S
SunAhong1993 已提交
84 85
    layer_inputs["x"] = inputs_name[1]
    # 处理输入2,即%156
S
SunAhong1993 已提交
86
    mapper._check_input(graph, inputs_node[2], inputs_name[2], current_outputs)
S
SunAhong1993 已提交
87
    layer_inputs["y"] = inputs_name[2]
S
SunAhong1993 已提交
88
    # 获取当前节点输入的list
S
SunAhong1993 已提交
89 90 91 92 93
    current_inputs = list(layer_inputs.values())
    # 处理输入3,即%152
    if inputs_name[3] in mapper.attrs:
        layer_attrs["beta"] = mapper.attrs[inputs_name[3]]
    else:
S
SunAhong1993 已提交
94 95
        mapper._check_input(graph, inputs_node[3], inputs_name[3],
                            current_outputs)
S
SunAhong1993 已提交
96 97 98 99 100 101
        layer_attrs["beta"] = inputs_name[3]
        current_inputs.append(inputs_name[3])
    # 处理输入4,即%151
    if inputs_name[4] in mapper.attrs:
        layer_attrs["alpha"] = mapper.attrs[inputs_name[4]]
    else:
S
SunAhong1993 已提交
102 103
        mapper._check_input(graph, inputs_node[4], inputs_name[4],
                            current_outputs)
S
SunAhong1993 已提交
104 105 106
        layer_attrs["alpha"] = inputs_name[4]
        current_inputs.append(inputs_name[4])

S
SunAhong1993 已提交
107
    graph.add_layer(
S
SunAhong1993 已提交
108 109 110 111 112
        "fluid.layers.addmm",
        inputs=layer_inputs,
        outputs=layer_outputs,
        **layer_attrs)
    return current_inputs, current_outputs
S
SunAhong1993 已提交
113 114


S
SunAhong1993 已提交
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
def aten_add(mapper, graph, node):
    """ 构造数值相加的PaddleLayer,该节点实现out = x + y。

    TorchScript示例:
        %296 : int = aten::add(%i.12, %288)
        参数含义:
        %296 (-): 相加结果。
        %i.12 (-): 输入数值 x。
        %288 (-): 输入数值 y。
    """
    output_name = mapper._get_outputs_name(node)[0]
    layer_outputs = [output_name]
    layer_inputs = {}
    inputs_name, inputs_node = mapper._get_inputs_name(node)
    # 获取当前节点输出的list
    current_outputs = [output_name]
    # 处理输入0,即%i.12
    mapper._check_input(graph, inputs_node[0], inputs_name[0], current_outputs)
    layer_inputs["x"] = inputs_name[0]
    # 处理输入1,即%288
    mapper._check_input(
        graph, inputs_node[1], inputs_name[1], current_outputs, add_dim=True)
    layer_inputs["y"] = inputs_name[1]
    # 获取当前节点输入的list
    current_inputs = list(layer_inputs.values())

    graph.add_layer("prim.add", inputs=layer_inputs, outputs=layer_outputs)
    return current_inputs, current_outputs


S
SunAhong1993 已提交
145
def aten_add_(mapper, graph, node):
S
SunAhong1993 已提交
146
    """ 构造数值相加的PaddleLayer,该节点实现out = x + alpha * y。
S
SunAhong1993 已提交
147

S
SunAhong1993 已提交
148
    TorchScript示例:
S
SunAhong1993 已提交
149
        %137 : Tensor = aten::add(%136, %130, %130)
S
SunAhong1993 已提交
150 151 152 153 154 155 156
        参数含义:
        %output.5 (Tensor): add结果Tensor。
        %output.2 (Tensor): 输入Tensor x。
        %150 (Tensor): 输入Tensor y。
        %151 (int/float): 输入alpha。
    """
    output_name = mapper._get_outputs_name(node)[0]
S
SunAhong1993 已提交
157 158 159 160
    layer_outputs = [output_name]
    layer_inputs = {}
    layer_attrs = {}
    inputs_name, inputs_node = mapper._get_inputs_name(node)
S
SunAhong1993 已提交
161 162
    # 获取当前节点输出的list
    current_outputs = [output_name]
S
SunAhong1993 已提交
163
    # 处理输入0,即%output.2
S
SunAhong1993 已提交
164
    mapper._check_input(graph, inputs_node[0], inputs_name[0], current_outputs)
S
SunAhong1993 已提交
165 166 167
    layer_inputs["x"] = inputs_name[0]
    # 处理输入1,即%150
    mapper._check_input(
S
SunAhong1993 已提交
168
        graph, inputs_node[1], inputs_name[1], current_outputs, add_dim=True)
S
SunAhong1993 已提交
169
    layer_inputs["y"] = inputs_name[1]
S
SunAhong1993 已提交
170
    # 获取当前节点输入的list
S
SunAhong1993 已提交
171 172 173 174 175
    current_inputs = list(layer_inputs.values())
    # 处理输入2,即%151
    if inputs_name[2] in mapper.attrs:
        layer_attrs["alpha"] = mapper.attrs[inputs_name[2]]
    else:
S
SunAhong1993 已提交
176 177
        mapper._check_input(graph, inputs_node[2], inputs_name[2],
                            current_outputs)
S
SunAhong1993 已提交
178 179 180 181
        layer_attrs["alpha"] = inputs_name[2]
        current_inputs.append(inputs_name[2])

    graph.add_layer(
S
SunAhong1993 已提交
182
        "prim.add_", inputs=layer_inputs, outputs=layer_outputs, **layer_attrs)
S
SunAhong1993 已提交
183
    return current_inputs, current_outputs
S
SunAhong1993 已提交
184 185 186


def aten_append(mapper, graph, node):
S
SunAhong1993 已提交
187 188 189 190 191 192 193 194 195
    """ 构造对list进行append的PaddleLayer。

    TorchScript示例:
        %90 : int[] = aten::append(%_output_size.1, %v.1)
        参数含义:
        %90 (list): 输出,append后的list。
        %_output_size.1 (list): 需要进行append的list。
        %v.1 (-): append的元素。
    """
S
SunAhong1993 已提交
196
    output_name = mapper._get_outputs_name(node)[0]
S
SunAhong1993 已提交
197 198 199
    layer_outputs = [output_name]
    layer_inputs = {}
    inputs_name, inputs_node = mapper._get_inputs_name(node)
S
SunAhong1993 已提交
200 201
    # 获取当前节点输出的list
    current_outputs = [output_name]
S
SunAhong1993 已提交
202
    # 处理输入0,即_output_size.1
S
SunAhong1993 已提交
203
    mapper._check_input(graph, inputs_node[0], inputs_name[0], current_outputs)
S
SunAhong1993 已提交
204 205
    layer_inputs["list"] = inputs_name[0]
    # 处理输入1,即v.1
S
SunAhong1993 已提交
206
    mapper._check_input(graph, inputs_node[1], inputs_name[1], current_outputs)
S
SunAhong1993 已提交
207
    layer_inputs["element"] = inputs_name[1]
S
SunAhong1993 已提交
208
    # 获取当前节点输入的list
S
SunAhong1993 已提交
209 210 211 212
    current_inputs = list(layer_inputs.values())

    graph.add_layer("prim.append", inputs=layer_inputs, outputs=layer_outputs)
    return current_inputs, current_outputs
S
SunAhong1993 已提交
213 214


S
SunAhong1993 已提交
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
def aten_batch_norm(mapper, graph, node):
    """ 构造BatchNorm的PaddleLayer。

    TorchScript示例:
        %input.81 : Tensor = aten::batch_norm(%input.80, %778, %779, %776, %777, %780,
                                              %exponential_average_factor.23, %766, %781)
        参数含义:
        %input.81 (Tensor): 输出,批处理后的结果。
        %input.80 (Tensor): 需要进行批处理的特征层。
        %778 (Tensor): weights。
        %779 (Tensor): bias。
        %776 (Tensor): 全局均值。
        %777 (Tensor): 全局方差。
        %780 (bool): 是否训练。
        %exponential_average_factor.23 (float): 用于计算均值和方差的比例。
        %766 (float): 为了数值稳定加在分母上的值。
        %781 (bool): 是否启用cudnn。
    """
    if "batchnorm" in mapper.dygraph_name_id:
        mapper.dygraph_name_id["batchnorm"] += 1
    else:
        mapper.dygraph_name_id["batchnorm"] = 0
    batchnorm_name = "batchnorm" + str(mapper.dygraph_name_id["batchnorm"])
    output_name = mapper._get_outputs_name(node)[0]
    layer_outputs = [batchnorm_name, output_name]
    layer_inputs = {}
    layer_attrs = {}
    layer_attrs["is_test"] = True
    inputs_name, inputs_node = mapper._get_inputs_name(node)
    # 获取当前节点输出的list
    current_outputs = [output_name]
    # 处理输入0,即%input.80
    mapper._check_input(graph, inputs_node[0], inputs_name[0], current_outputs)
    layer_inputs["input"] = inputs_name[0]
    # 获取当前节点输入、输出的list
    current_inputs = list(layer_inputs.values())
    # 处理输入1,即%778
    weights = mapper.pytorch_params[inputs_name[1]]
    mapper.paddle_params[batchnorm_name + ".weight"] = weights
    layer_attrs['num_channels'] = weights.shape[0]
    # 处理输入2,即%779
    if inputs_name[2] in mapper.pytorch_params:
        bias = mapper.pytorch_params[inputs_name[2]]
        if bias is not None:
            mapper.paddle_params[batchnorm_name + ".bias"] = bias
    else:
        mapper.paddle_params[batchnorm_name + ".bias"] = False
    # 处理输入3,即%776
    mean = mapper.pytorch_params[inputs_name[3]]
    mapper.paddle_params[batchnorm_name + "._mean"] = mean
    # 处理输入4,即%777
    var = mapper.pytorch_params[inputs_name[4]]
    mapper.paddle_params[batchnorm_name + "._variance"] = var
    # 处理输入6,即%exponential_average_factor.23
    layer_attrs["momentum"] = mapper.attrs[inputs_name[6]]
    # 处理输入7,即%766
    layer_attrs["epsilon"] = mapper.attrs[inputs_name[7]]

    graph.add_layer(
        "fluid.dygraph.BatchNorm",
        inputs=layer_inputs,
        outputs=layer_outputs,
        **layer_attrs)
    return current_inputs, current_outputs


S
SunAhong1993 已提交
281
def aten_conv2d(mapper, graph, node):
S
SunAhong1993 已提交
282 283 284 285 286 287 288 289 290 291 292 293 294 295
    """ 构造conv2d的PaddleLayer。

    TorchScript示例:
        %input.10 : Tensor = aten::conv2d(%input.8, %25, %27, %28, %29, %30, %26)
        参数含义:
        %input.10 (Tensor): 输出,卷积后的结果。
        %input.8 (Tensor): 需要进行卷积的特征层。
        %25 (Tensor): weights。
        %27 (Tensor): bias。
        %28 (int): 步长大小。
        %29 (int): 填充大小。
        %30 (int): 膨胀系数大小。
        %26 (int): 卷积的组数。
    """
S
SunAhong1993 已提交
296 297 298 299 300
    if "conv" in mapper.dygraph_name_id:
        mapper.dygraph_name_id["conv"] += 1
    else:
        mapper.dygraph_name_id["conv"] = 0
    conv2d_name = "conv" + str(mapper.dygraph_name_id["conv"])
S
SunAhong1993 已提交
301 302 303 304 305
    output_name = mapper._get_outputs_name(node)[0]
    layer_outputs = [conv2d_name, output_name]
    layer_inputs = {}
    layer_attrs = {}
    inputs_name, inputs_node = mapper._get_inputs_name(node)
S
SunAhong1993 已提交
306 307
    # 获取当前节点输出的list
    current_outputs = [output_name]
S
SunAhong1993 已提交
308
    # 处理输入0,即%input.8
S
SunAhong1993 已提交
309
    mapper._check_input(graph, inputs_node[0], inputs_name[0], current_outputs)
S
SunAhong1993 已提交
310
    layer_inputs["input"] = inputs_name[0]
S
SunAhong1993 已提交
311
    # 获取当前节点输入的list
S
SunAhong1993 已提交
312 313 314 315 316 317 318 319 320
    current_inputs = list(layer_inputs.values())
    # 处理输入1,即%25
    weights = mapper.pytorch_params[inputs_name[1]]
    mapper.paddle_params[conv2d_name + ".weight"] = weights
    layer_attrs["num_filters"] = weights.shape[0]
    layer_attrs["filter_size"] = weights.shape[2:]
    # 处理输入2,即%27
    if inputs_name[2] in mapper.pytorch_params:
        bias = mapper.pytorch_params[inputs_name[2]]
S
SunAhong1993 已提交
321 322 323 324
        if bias is not None:
            mapper.paddle_params[conv2d_name + ".bias"] = bias
        else:
            layer_attrs["bias_attr"] = False
S
SunAhong1993 已提交
325
    else:
S
SunAhong1993 已提交
326
        layer_attrs["bias_attr"] = False
S
SunAhong1993 已提交
327 328 329 330 331 332 333 334 335 336 337
    # 处理输入3,即%28
    layer_attrs["stride"] = mapper.attrs[inputs_name[3]]
    # 处理输入4,即%29
    layer_attrs["padding"] = mapper.attrs[inputs_name[4]]
    # 处理输入5,即%30
    layer_attrs["dilation"] = mapper.attrs[inputs_name[5]]
    # 处理输入6,即%26
    layer_attrs["groups"] = mapper.attrs[inputs_name[6]]
    layer_attrs['num_channels'] = weights.shape[1] * mapper.attrs[inputs_name[
        6]]

S
SunAhong1993 已提交
338 339
    graph.add_layer(
        "fluid.dygraph.Conv2D",
S
SunAhong1993 已提交
340 341 342 343
        inputs=layer_inputs,
        outputs=layer_outputs,
        **layer_attrs)
    return current_inputs, current_outputs
S
SunAhong1993 已提交
344 345 346


def aten_dim(mapper, graph, node):
S
SunAhong1993 已提交
347 348 349 350 351 352 353 354
    """ 构造获取维度的PaddleLayer。

    TorchScript示例:
        %106 : int = aten::dim(%101)
        参数含义:
        %106 (int): 输出,Tensor的维度。
        %101 (Tensor): 输入的Tensor。
    """
S
SunAhong1993 已提交
355
    output_name = mapper._get_outputs_name(node)[0]
S
SunAhong1993 已提交
356 357 358
    layer_outputs = [output_name]
    layer_inputs = {}
    inputs_name, inputs_node = mapper._get_inputs_name(node)
S
SunAhong1993 已提交
359 360
    # 获取当前节点输出的list
    current_outputs = [output_name]
S
SunAhong1993 已提交
361
    # 处理输入0,即%input.8
S
SunAhong1993 已提交
362
    mapper._check_input(graph, inputs_node[0], inputs_name[0], current_outputs)
S
SunAhong1993 已提交
363
    layer_inputs["input"] = inputs_name[0]
S
SunAhong1993 已提交
364
    # 获取当前节点输入的list
S
SunAhong1993 已提交
365 366 367
    current_inputs = list(layer_inputs.values())

    graph.add_layer("prim.shape", inputs=layer_inputs, outputs=layer_outputs)
S
SunAhong1993 已提交
368
    graph.add_layer(
S
SunAhong1993 已提交
369 370
        "prim.len", inputs={"input": output_name}, outputs=layer_outputs)
    return current_inputs, current_outputs
S
SunAhong1993 已提交
371 372 373


def aten_dropout(mapper, graph, node):
S
SunAhong1993 已提交
374 375 376 377 378 379 380 381 382
    """ 构造Dropout的PaddleLayer。

    TorchScript示例:
        %119 : Tensor = aten::dropout(%result.3, %117, %118)
        参数含义:
        %119 (Tensor): Dropout后的Tensor。
        %result.3 (Tensor): 输入Tensor。
        %118 (bool): 是否是训练阶段。
    """
S
SunAhong1993 已提交
383 384 385 386 387
    if "dropout" in mapper.dygraph_name_id:
        mapper.dygraph_name_id["dropout"] += 1
    else:
        mapper.dygraph_name_id["dropout"] = 0
    dropout_name = "dropout" + str(mapper.dygraph_name_id["dropout"])
S
SunAhong1993 已提交
388 389 390 391
    output_name = mapper._get_outputs_name(node)[0]
    layer_outputs = [dropout_name, output_name]
    layer_inputs = {}
    inputs_name, inputs_node = mapper._get_inputs_name(node)
S
SunAhong1993 已提交
392 393
    # 获取当前节点输出的list
    current_outputs = [output_name]
S
SunAhong1993 已提交
394
    # 处理输入0,即%119
S
SunAhong1993 已提交
395
    mapper._check_input(graph, inputs_node[0], inputs_name[0], current_outputs)
S
SunAhong1993 已提交
396 397 398 399
    layer_inputs["input"] = inputs_name[0]
    # 获取当前节点输入、输出的list
    current_inputs = list(layer_inputs.values())

S
SunAhong1993 已提交
400 401
    graph.add_layer(
        "fluid.dygraph.Dropout",
S
SunAhong1993 已提交
402 403
        inputs=layer_inputs,
        outputs=layer_outputs,
S
SunAhong1993 已提交
404
        p=0.0)
S
SunAhong1993 已提交
405
    return current_inputs, current_outputs
S
SunAhong1993 已提交
406 407 408


def aten_eq(mapper, graph, node):
S
SunAhong1993 已提交
409 410 411 412 413 414 415 416 417
    """ 构造判断数值是否相等的PaddleLayer。

    TorchScript示例:
        %125 : bool = aten::eq(%124, %123)
        参数含义:
        %125 (bool): 对比后结果。
        %124 (-): 需对比的输入1。
        %123 (-): 需对比的输入2。
    """
S
SunAhong1993 已提交
418
    output_name = mapper._get_outputs_name(node)[0]
S
SunAhong1993 已提交
419 420 421
    layer_outputs = [output_name]
    layer_inputs = {}
    inputs_name, inputs_node = mapper._get_inputs_name(node)
S
SunAhong1993 已提交
422 423
    # 获取当前节点输出的list
    current_outputs = [output_name]
S
SunAhong1993 已提交
424
    # 处理输入0,即%124
S
SunAhong1993 已提交
425 426
    mapper._check_input(graph, inputs_node[0], inputs_name[0], current_outputs)
    layer_inputs["x"] = inputs_name[0]
S
SunAhong1993 已提交
427
    # 处理输入1,即%123
S
SunAhong1993 已提交
428 429 430
    mapper._check_input(graph, inputs_node[1], inputs_name[1], current_outputs)
    layer_inputs["y"] = inputs_name[1]
    # 获取当前节点输入的list
S
SunAhong1993 已提交
431 432 433 434
    current_inputs = list(layer_inputs.values())

    graph.add_layer("prim.eq", inputs=layer_inputs, outputs=layer_outputs)
    return current_inputs, current_outputs
S
SunAhong1993 已提交
435 436 437


def aten_flatten(mapper, graph, node):
S
SunAhong1993 已提交
438 439 440 441 442 443 444 445 446 447 448 449
    """ 构造flatten的PaddleLayer。

    TorchScript示例:
        %x.8 : Tensor = aten::flatten(%x, %4, %2)
        参数含义:
        %x.8 (Tensor): flatten后结果。
        %x (Tensor): 输入Tensor。
        %4 (int): flatten的开始维度。
        %2 (int): flatten的结束维度。

    注意:目前flatten只支持第一维的flatten
    """
S
SunAhong1993 已提交
450
    output_name = mapper._get_outputs_name(node)[0]
S
SunAhong1993 已提交
451 452 453
    layer_outputs = [output_name]
    layer_inputs = {}
    inputs_name, inputs_node = mapper._get_inputs_name(node)
S
SunAhong1993 已提交
454 455
    # 获取当前节点输出的list
    current_outputs = [output_name]
S
SunAhong1993 已提交
456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472
    # 处理输入1,即%4
    graph.add_layer(
        "prim.assert",
        inputs={},
        outputs=[inputs_name[1]],
        type='eq',
        key=mapper.attrs[inputs_name[1]],
        value=1)
    # 处理输入2,即%2
    graph.add_layer(
        "prim.assert",
        inputs={},
        outputs=[inputs_name[2]],
        type='eq',
        key=mapper.attrs[inputs_name[2]],
        value=-1)
    # 处理输入0,即%x
S
SunAhong1993 已提交
473
    mapper._check_input(graph, inputs_node[0], inputs_name[0], current_outputs)
S
SunAhong1993 已提交
474
    layer_inputs["x"] = inputs_name[0]
S
SunAhong1993 已提交
475
    # 获取当前节点输入的list
S
SunAhong1993 已提交
476 477
    current_inputs = list(layer_inputs.values())

S
SunAhong1993 已提交
478 479
    graph.add_layer(
        "fluid.layers.flatten",
S
SunAhong1993 已提交
480 481
        inputs=layer_inputs,
        outputs=layer_outputs,
S
SunAhong1993 已提交
482
        axis=1)
S
SunAhong1993 已提交
483
    return current_inputs, current_outputs
S
SunAhong1993 已提交
484 485 486


def aten___getitem__(mapper, graph, node):
S
SunAhong1993 已提交
487 488 489 490 491 492 493 494 495
    """ 构造获取list中元素的PaddleLayer。

    TorchScript示例:
        %v.1 : int = aten::__getitem__(%72, %88)
        参数含义:
        %v.1 (-): 输出,list中的元素。
        %72 (list): 需要获取元素的list。
        %88 (int): 索引。
    """
S
SunAhong1993 已提交
496
    output_name = mapper._get_outputs_name(node)[0]
S
SunAhong1993 已提交
497 498 499
    layer_outputs = [output_name]
    layer_inputs = {}
    inputs_name, inputs_node = mapper._get_inputs_name(node)
S
SunAhong1993 已提交
500 501
    # 获取当前节点输出的list
    current_outputs = [output_name]
S
SunAhong1993 已提交
502
    # 处理输入0,即%72
S
SunAhong1993 已提交
503
    mapper._check_input(graph, inputs_node[0], inputs_name[0], current_outputs)
S
SunAhong1993 已提交
504 505
    layer_inputs["list"] = inputs_name[0]
    # 处理输入1,即%88
S
SunAhong1993 已提交
506
    mapper._check_input(graph, inputs_node[1], inputs_name[1], current_outputs)
S
SunAhong1993 已提交
507
    layer_inputs["index"] = inputs_name[1]
S
SunAhong1993 已提交
508
    # 获取当前节点输入的list
S
SunAhong1993 已提交
509 510 511 512
    current_inputs = list(layer_inputs.values())

    graph.add_layer("prim.getitem", inputs=layer_inputs, outputs=layer_outputs)
    return current_inputs, current_outputs
S
SunAhong1993 已提交
513 514


S
SunAhong1993 已提交
515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561
def aten_hardtanh_(mapper, graph, node):
    """ 构造hardtanh激活的PaddleLayer。

    TorchScript示例:
        %result.9 : Tensor = aten::hardtanh_(%input.20, %67, %66)
        参数含义:
        %result.9 (Tensor): 输出,hardtanh激活后的Tensor。
        %input.20 (Tensor): 需要hardtanh激活的Tensor。
        %67 (float): hardtanh激活的最小阈值。
        %66 (float): hardtanh激活的最大阈值。
    """
    output_name = mapper._get_outputs_name(node)[0]
    layer_outputs = [output_name]
    layer_inputs = {}
    inputs_name, inputs_node = mapper._get_inputs_name(node)
    # 获取当前节点输出的list
    current_outputs = [output_name]
    # 处理输入1,即%67
    graph.add_layer(
        "prim.assert",
        inputs={},
        outputs=[inputs_name[1]],
        type='eq',
        key=mapper.attrs[inputs_name[1]],
        value=0.0)
    # 处理输入2,即%66
    graph.add_layer(
        "prim.assert",
        inputs={},
        outputs=[inputs_name[2]],
        type='eq',
        key=mapper.attrs[inputs_name[2]],
        value=6.0)
    # 处理输入0,即%input.20
    mapper._check_input(graph, inputs_node[0], inputs_name[0], current_outputs)
    layer_inputs["x"] = inputs_name[0]
    # 获取当前节点输入的list
    current_inputs = list(layer_inputs.values())

    graph.add_layer(
        'fluid.layers.relu6',
        inputs=layer_inputs,
        outputs=layer_outputs,
        threshold=6.0)
    return current_inputs, current_outputs


S
SunAhong1993 已提交
562
def aten_le(mapper, graph, node):
S
SunAhong1993 已提交
563 564 565 566 567 568 569 570 571
    """ 构造对比大小的PaddleLayer。

    TorchScript示例:
        %80 : bool = aten::le(%78, %79)
        参数含义:
        %80 (bool): 输出,第一个元素是否小于第二个元素。
        %78 (-): 需对比的输入1。
        %79 (-): 需对比的输入2。
    """
S
SunAhong1993 已提交
572
    output_name = mapper._get_outputs_name(node)[0]
S
SunAhong1993 已提交
573 574 575
    layer_outputs = [output_name]
    layer_inputs = {}
    inputs_name, inputs_node = mapper._get_inputs_name(node)
S
SunAhong1993 已提交
576 577
    # 获取当前节点输出的list
    current_outputs = [output_name]
S
SunAhong1993 已提交
578
    # 处理输入0,即%78
S
SunAhong1993 已提交
579
    mapper._check_input(graph, inputs_node[0], inputs_name[0], current_outputs)
S
SunAhong1993 已提交
580 581
    layer_inputs["input0"] = inputs_name[0]
    # 处理输入1,即%79
S
SunAhong1993 已提交
582
    mapper._check_input(graph, inputs_node[1], inputs_name[1], current_outputs)
S
SunAhong1993 已提交
583
    layer_inputs["input1"] = inputs_name[1]
S
SunAhong1993 已提交
584
    # 获取当前节点输入的list
S
SunAhong1993 已提交
585 586 587 588
    current_inputs = list(layer_inputs.values())

    graph.add_layer("prim.le", inputs=layer_inputs, outputs=layer_outputs)
    return current_inputs, current_outputs
S
SunAhong1993 已提交
589 590 591


def aten_len(mapper, graph, node):
S
SunAhong1993 已提交
592 593 594 595 596 597 598 599
    """ 构造获取list长度的PaddleLayer。

    TorchScript示例:
        %85 : int = aten::len(%83)
        参数含义:
        %85 (int): 输出,list的长度。
        %72 (list): 需要获取长度的list。
    """
S
SunAhong1993 已提交
600
    output_name = mapper._get_outputs_name(node)[0]
S
SunAhong1993 已提交
601 602 603
    layer_outputs = [output_name]
    layer_inputs = {}
    inputs_name, inputs_node = mapper._get_inputs_name(node)
S
SunAhong1993 已提交
604 605
    # 获取当前节点输出的list
    current_outputs = [output_name]
S
SunAhong1993 已提交
606
    # 处理输入0,即%72
S
SunAhong1993 已提交
607
    mapper._check_input(graph, inputs_node[0], inputs_name[0], current_outputs)
S
SunAhong1993 已提交
608
    layer_inputs["input"] = inputs_name[0]
S
SunAhong1993 已提交
609
    # 获取当前节点输入的list
S
SunAhong1993 已提交
610 611 612 613
    current_inputs = list(layer_inputs.values())

    graph.add_layer("prim.len", inputs=layer_inputs, outputs=layer_outputs)
    return current_inputs, current_outputs
S
SunAhong1993 已提交
614 615 616


def aten_max_pool2d(mapper, graph, node):
S
SunAhong1993 已提交
617 618 619 620 621 622 623 624 625 626 627 628 629
    """ 构造最大池化的PaddleLayer。

    TorchScript示例:
        %input.8 : Tensor = aten::max_pool2d(%result.11, %20, %23, %21, %22, %19)
        参数含义:
        %input.8 (Tensor): 输出,池化后的结果。
        %result.11 (Tensor): 需要池化的Tensor。
        %20 (list): 池化kernel的大小。
        %23 (list): 步长大小。
        %21 (list): 填充大小。
        %22 (list): 膨胀系数大小。
        %19 (bool): 是否用ceil函数计算输出高度和宽度。
    """
S
SunAhong1993 已提交
630 631 632 633 634
    if "pool" in mapper.dygraph_name_id:
        mapper.dygraph_name_id["pool"] += 1
    else:
        mapper.dygraph_name_id["pool"] = 0
    pool_name = "pool" + str(mapper.dygraph_name_id["pool"])
S
SunAhong1993 已提交
635 636 637 638 639
    output_name = mapper._get_outputs_name(node)[0]
    layer_outputs = [pool_name, output_name]
    layer_inputs = {}
    layer_attrs = {}
    inputs_name, inputs_node = mapper._get_inputs_name(node)
S
SunAhong1993 已提交
640 641
    # 获取当前节点输出的list
    current_outputs = [output_name]
S
SunAhong1993 已提交
642
    # 处理输入0,即%result.11
S
SunAhong1993 已提交
643
    mapper._check_input(graph, inputs_node[0], inputs_name[0], current_outputs)
S
SunAhong1993 已提交
644
    layer_inputs["input"] = inputs_name[0]
S
SunAhong1993 已提交
645
    # 获取当前节点输入的list
S
SunAhong1993 已提交
646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664
    current_inputs = list(layer_inputs.values())
    # 处理输入1,即%20
    layer_attrs["pool_size"] = mapper.attrs[inputs_name[1]]
    # 处理输入2,即%23
    layer_attrs["pool_stride"] = mapper.attrs[inputs_name[2]]
    # 处理输入3,即%21
    layer_attrs["pool_padding"] = mapper.attrs[inputs_name[3]]
    # 处理输入4,即%22
    graph.add_layer(
        "prim.assert",
        inputs={},
        outputs=[inputs_name[4]],
        type="eq",
        key=mapper.attrs[inputs_name[4]],
        value=[1, [1, 1]])
    # 处理输入5,即%19
    layer_attrs["ceil_mode"] = mapper.attrs[inputs_name[5]]
    layer_attrs["pool_type"] = string("max")

S
SunAhong1993 已提交
665 666
    graph.add_layer(
        "fluid.dygraph.Pool2D",
S
SunAhong1993 已提交
667 668 669 670
        inputs=layer_inputs,
        outputs=layer_outputs,
        **layer_attrs)
    return current_inputs, current_outputs
S
SunAhong1993 已提交
671 672 673


def aten_matmul(mapper, graph, node):
S
SunAhong1993 已提交
674 675 676 677 678 679 680 681 682
    """ 构造矩阵相乘的PaddleLayer。

    TorchScript示例:
        %output.2 : Tensor = aten::matmul(%101, %111)
        参数含义:
        %output.2 (Tensor): 输出,相乘后的结果。
        %101 (Tensor): 矩阵1。
        %102 (Tensor): 矩阵2。
    """
S
SunAhong1993 已提交
683
    output_name = mapper._get_outputs_name(node)[0]
S
SunAhong1993 已提交
684 685 686
    layer_outputs = [output_name]
    layer_inputs = {}
    inputs_name, inputs_node = mapper._get_inputs_name(node)
S
SunAhong1993 已提交
687 688
    # 获取当前节点输出的list
    current_outputs = [output_name]
S
SunAhong1993 已提交
689
    # 处理输入0,即%101
S
SunAhong1993 已提交
690
    mapper._check_input(graph, inputs_node[0], inputs_name[0], current_outputs)
S
SunAhong1993 已提交
691 692
    layer_inputs["x"] = inputs_name[0]
    # 处理输入1,即%102
S
SunAhong1993 已提交
693
    mapper._check_input(graph, inputs_node[1], inputs_name[1], current_outputs)
S
SunAhong1993 已提交
694
    layer_inputs["y"] = inputs_name[1]
S
SunAhong1993 已提交
695
    # 获取当前节点输入的list
S
SunAhong1993 已提交
696 697 698 699 700
    current_inputs = list(layer_inputs.values())

    graph.add_layer(
        "fluid.layers.matmul", inputs=layer_inputs, outputs=layer_outputs)
    return current_inputs, current_outputs
S
SunAhong1993 已提交
701 702


S
SunAhong1993 已提交
703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786
def aten_mul(mapper, graph, node):
    """ 构造数值相乘的PaddleLayer。

    TorchScript示例:
        %size_prods.39 : int = aten::mul(%size_prods.38, %114)
        参数含义:
        %size_prods.39 (Tensor): 输出,相乘后的结果。
        %size_prods.38 (-): 数值1。
        %114 (-): 数值2。
    """
    output_name = mapper._get_outputs_name(node)[0]
    layer_outputs = [output_name]
    layer_inputs = {}
    inputs_name, inputs_node = mapper._get_inputs_name(node)
    # 获取当前节点输出的list
    current_outputs = [output_name]
    # 处理输入0,即%size_prods.38
    mapper._check_input(graph, inputs_node[0], inputs_name[0], current_outputs)
    layer_inputs["x"] = inputs_name[0]
    # 处理输入1,即%114
    mapper._check_input(graph, inputs_node[1], inputs_name[1], current_outputs)
    layer_inputs["y"] = inputs_name[1]
    # 获取当前节点输入的list
    current_inputs = list(layer_inputs.values())
    current_outputs = layer_outputs

    graph.add_layer("prim.mul", inputs=layer_inputs, outputs=layer_outputs)
    return current_inputs, current_outputs


def aten_ne(mapper, graph, node):
    """ 构造判断数值是否不相等的PaddleLayer。

    TorchScript示例:
        %134 : bool = aten::ne(%133, %132)
        参数含义:
        %134 (bool): 对比后结果。
        %133 (-): 需对比的输入1。
        %132 (-): 需对比的输入2。
    """
    output_name = mapper._get_outputs_name(node)[0]
    layer_outputs = [output_name]
    layer_inputs = {}
    inputs_name, inputs_node = mapper._get_inputs_name(node)
    # 获取当前节点输出的list
    current_outputs = [output_name]
    # 处理输入0,即%124
    mapper._check_input(graph, inputs_node[0], inputs_name[0], current_outputs)
    layer_inputs["x"] = inputs_name[0]
    # 处理输入1,即%123
    mapper._check_input(graph, inputs_node[1], inputs_name[1], current_outputs)
    layer_inputs["y"] = inputs_name[1]
    # 获取当前节点输入的list
    current_inputs = list(layer_inputs.values())

    graph.add_layer("prim.ne", inputs=layer_inputs, outputs=layer_outputs)
    return current_inputs, current_outputs


def aten_neg(mapper, graph, node):
    """ 构造对数值取负的PaddleLayer。

    TorchScript示例:
        %909 : int = aten::neg(%908)
        参数含义:
        %909 (int): 取负后结果。
        %908 (int): 需取负的输入。
    """
    output_name = mapper._get_outputs_name(node)[0]
    layer_outputs = [output_name]
    layer_inputs = {}
    inputs_name, inputs_node = mapper._get_inputs_name(node)
    # 获取当前节点输出的list
    current_outputs = [output_name]
    # 处理输入0,即%124
    mapper._check_input(graph, inputs_node[0], inputs_name[0], current_outputs)
    layer_inputs["input"] = inputs_name[0]
    # 获取当前节点输入的list
    current_inputs = list(layer_inputs.values())

    graph.add_layer("prim.neg", inputs=layer_inputs, outputs=layer_outputs)
    return current_inputs, current_outputs


S
SunAhong1993 已提交
787
def aten_relu_(mapper, graph, node):
S
SunAhong1993 已提交
788 789 790 791 792 793 794 795 796 797
    """ 构造ReLU激活的PaddleLayer。

    TorchScript示例:
        %result.3 : Tensor = aten::relu_(%input.5)
        参数含义:
        %result.3 (Tensor): 输出,ReLU后的结果。
        %result.5 (Tensor): 需要ReLU的Tensor。

    注意: inplace这个参数在paddle中未实现
    """
S
SunAhong1993 已提交
798
    output_name = mapper._get_outputs_name(node)[0]
S
SunAhong1993 已提交
799 800 801
    layer_outputs = [output_name]
    layer_inputs = {}
    inputs_name, inputs_node = mapper._get_inputs_name(node)
S
SunAhong1993 已提交
802 803
    # 获取当前节点输出的list
    current_outputs = [output_name]
S
SunAhong1993 已提交
804
    # 处理输入0,即%result.5
S
SunAhong1993 已提交
805
    mapper._check_input(graph, inputs_node[0], inputs_name[0], current_outputs)
S
SunAhong1993 已提交
806
    layer_inputs["x"] = inputs_name[0]
S
SunAhong1993 已提交
807
    # 获取当前节点输入的list
S
SunAhong1993 已提交
808 809
    current_inputs = list(layer_inputs.values())

S
SunAhong1993 已提交
810
    graph.add_layer(
S
SunAhong1993 已提交
811 812
        "fluid.layers.relu", inputs=layer_inputs, outputs=layer_outputs)
    return current_inputs, current_outputs
S
SunAhong1993 已提交
813 814 815


def aten_relu6(mapper, graph, node):
S
SunAhong1993 已提交
816 817 818 819 820 821 822 823 824 825
    """ 构造ReLU6激活的PaddleLayer。

    TorchScript示例:
        %result.3 : Tensor = aten::relu6(%input.5)
        参数含义:
        %result.3 (Tensor): 输出,ReLU6后的结果。
        %result.5 (Tensor): 需要ReLU6的Tensor。

    注意: inplace这个参数在paddle中未实现
    """
S
SunAhong1993 已提交
826
    output_name = mapper._get_outputs_name(node)[0]
S
SunAhong1993 已提交
827 828 829
    layer_outputs = [output_name]
    layer_inputs = {}
    inputs_name, inputs_node = mapper._get_inputs_name(node)
S
SunAhong1993 已提交
830 831
    # 获取当前节点输出的list
    current_outputs = [output_name]
S
SunAhong1993 已提交
832
    # 处理输入0,即%result.5
S
SunAhong1993 已提交
833
    mapper._check_input(graph, inputs_node[0], inputs_name[0], current_outputs)
S
SunAhong1993 已提交
834 835 836 837
    layer_inputs["x"] = inputs_name[0]
    # 获取当前节点输入、输出的list
    current_inputs = list(layer_inputs.values())

S
SunAhong1993 已提交
838 839
    graph.add_layer(
        "fluid.layers.relu6",
S
SunAhong1993 已提交
840 841
        inputs=layer_inputs,
        outputs=layer_outputs,
S
SunAhong1993 已提交
842
        threshold=6.0)
S
SunAhong1993 已提交
843
    return current_inputs, current_outputs
S
SunAhong1993 已提交
844 845


S
SunAhong1993 已提交
846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876
def aten_reshape(mapper, graph, node):
    """ 构造调整大小的PaddleLayer。

    TorchScript示例:
        %x.6 : Tensor = aten::reshape(%4700, %4703)
        参数含义:
        %x.6 (Tensor): 输出,reshape后的Tensor。
        %4700 (Tensor): 需要reshape的Tensor。
        %4703 (list): 形状大小组成的list。
    """
    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
    current_outputs = [output_name]
    # 处理输入0,即%4700
    mapper._check_input(graph, inputs_node[0], inputs_name[0], current_outputs)
    layer_inputs["x"] = inputs_name[0]
    # 处理输入1,即%4703
    mapper._check_input(graph, inputs_node[1], inputs_name[1], current_outputs)
    layer_inputs["shape"] = inputs_name[1]
    # 获取当前节点输入、输出的list
    current_inputs = list(layer_inputs.values())

    graph.add_layer(
        "fluid.layers.reshape", inputs=layer_inputs, outputs=layer_outputs)
    return current_inputs, current_outputs


S
SunAhong1993 已提交
877
def aten_size(mapper, graph, node):
S
SunAhong1993 已提交
878 879 880 881 882 883 884 885
    """ 构造获取shape的PaddleLayer。

    TorchScript示例:
        %73 : int[] = aten::size(%x.12)
        参数含义:
        %73 (list): 输出,shape的list。
        %x.12 (Tensor): 需要获取shape的Tensor。
    """
S
SunAhong1993 已提交
886
    output_name = mapper._get_outputs_name(node)[0]
S
SunAhong1993 已提交
887 888 889
    layer_outputs = [output_name]
    layer_inputs = {}
    inputs_name, inputs_node = mapper._get_inputs_name(node)
S
SunAhong1993 已提交
890 891
    # 获取当前节点输出的list
    current_outputs = [output_name]
S
SunAhong1993 已提交
892
    # 处理输入0,即%x.12
S
SunAhong1993 已提交
893
    mapper._check_input(graph, inputs_node[0], inputs_name[0], current_outputs)
S
SunAhong1993 已提交
894
    layer_inputs["input"] = inputs_name[0]
S
SunAhong1993 已提交
895
    # 获取当前节点输入的list
S
SunAhong1993 已提交
896 897 898 899
    current_inputs = list(layer_inputs.values())

    graph.add_layer("prim.shape", inputs=layer_inputs, outputs=layer_outputs)
    return current_inputs, current_outputs
S
SunAhong1993 已提交
900 901 902


def aten_slice(mapper, graph, node):
S
SunAhong1993 已提交
903 904 905 906 907 908 909 910 911 912 913
    """ 构造切分list的PaddleLayer。

    TorchScript示例:
        %83 : int[] = aten::slice(%73, %82, %75, %77)
        参数含义:
        %83 (list): 输出,切分后的list。
        %73 (list): 需要切分的list。
        %82 (int): 切分的开始索引。
        %75 (int): 切分的结束索引。
        %77 (int): 切分的步长。
    """
S
SunAhong1993 已提交
914
    output_name = mapper._get_outputs_name(node)[0]
S
SunAhong1993 已提交
915 916 917
    layer_outputs = [output_name]
    layer_inputs = {}
    inputs_name, inputs_node = mapper._get_inputs_name(node)
S
SunAhong1993 已提交
918 919
    # 获取当前节点输出的list
    current_outputs = [output_name]
S
SunAhong1993 已提交
920
    # 处理输入0,即%73
S
SunAhong1993 已提交
921
    mapper._check_input(graph, inputs_node[0], inputs_name[0], current_outputs)
S
SunAhong1993 已提交
922 923
    layer_inputs["input"] = inputs_name[0]
    # 处理输入1,即%82
S
SunAhong1993 已提交
924 925
    mapper._check_input(graph, inputs_node[1], inputs_name[1], current_outputs)
    layer_inputs["start"] = inputs_name[1]
S
SunAhong1993 已提交
926
    # 处理输入2,即%75
S
SunAhong1993 已提交
927 928
    mapper._check_input(graph, inputs_node[2], inputs_name[2], current_outputs)
    layer_inputs["end"] = inputs_name[2]
S
SunAhong1993 已提交
929
    # 处理输入3,即%77
S
SunAhong1993 已提交
930 931 932 933
    mapper._check_input(graph, inputs_node[3], inputs_name[3], current_outputs)
    layer_inputs["step"] = inputs_name[3]
    # 获取当前节点输入的list
    current_inputs = list(layer_inputs.values())
S
SunAhong1993 已提交
934

S
SunAhong1993 已提交
935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965
    graph.add_layer("prim.slice", inputs=layer_inputs, outputs=current_outputs)
    return current_inputs, current_outputs


def aten_sub(mapper, graph, node):
    """ 构造数值相减的PaddleLayer。

    TorchScript示例:
        %840 : int = aten::sub(%839, %836)
        参数含义:
        %840 (-): 相减结果。
        %839 (-): 输入数值 x。
        %836 (-): 输入数值 y。
    """
    output_name = mapper._get_outputs_name(node)[0]
    layer_outputs = [output_name]
    layer_inputs = {}
    inputs_name, inputs_node = mapper._get_inputs_name(node)
    # 获取当前节点输出的list
    current_outputs = [output_name]
    # 处理输入0,即%839
    mapper._check_input(graph, inputs_node[0], inputs_name[0], current_outputs)
    layer_inputs["x"] = inputs_name[0]
    # 处理输入1,即%836
    mapper._check_input(
        graph, inputs_node[1], inputs_name[1], current_outputs, add_dim=True)
    layer_inputs["y"] = inputs_name[1]
    # 获取当前节点输入的list
    current_inputs = list(layer_inputs.values())

    graph.add_layer("prim.sub", inputs=layer_inputs, outputs=layer_outputs)
S
SunAhong1993 已提交
966
    return current_inputs, current_outputs
S
SunAhong1993 已提交
967 968 969


def aten_t(mapper, graph, node):
S
SunAhong1993 已提交
970 971 972
    """ 构造矩阵转置的PaddleLayer。

    TorchScript示例:
S
SunAhong1993 已提交
973
        %840 : int = aten::sub(%839, %836)
S
SunAhong1993 已提交
974 975 976 977
        参数含义:
        %109 (Tensor): 输出,转置后的矩阵。
        %102 (Tensor): 需要转置的Tensor。
    """
S
SunAhong1993 已提交
978
    output_name = mapper._get_outputs_name(node)[0]
S
SunAhong1993 已提交
979 980 981
    layer_outputs = [output_name]
    layer_inputs = {}
    inputs_name, inputs_node = mapper._get_inputs_name(node)
S
SunAhong1993 已提交
982 983
    # 获取当前节点输出的list
    current_outputs = [output_name]
S
SunAhong1993 已提交
984
    # 处理输入0,即%x.12
S
SunAhong1993 已提交
985
    mapper._check_input(graph, inputs_node[0], inputs_name[0], current_outputs)
S
SunAhong1993 已提交
986
    layer_inputs["x"] = inputs_name[0]
S
SunAhong1993 已提交
987
    # 获取当前节点输入的list
S
SunAhong1993 已提交
988 989
    current_inputs = list(layer_inputs.values())

S
SunAhong1993 已提交
990 991
    graph.add_layer(
        "fluid.layers.transpose",
S
SunAhong1993 已提交
992 993
        inputs=layer_inputs,
        outputs=layer_outputs,
S
SunAhong1993 已提交
994
        perm=[1, 0])
S
SunAhong1993 已提交
995
    return current_inputs, current_outputs