test_elementwise_op.cc 2.5 KB
Newer Older
N
nhzlx 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/* Copyright (c) 2018 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. */

#include <gtest/gtest.h>
#include "paddle/fluid/inference/tensorrt/convert/op_converter.h"
#include "paddle/fluid/inference/tensorrt/convert/ut_helper.h"

namespace paddle {
namespace inference {
namespace tensorrt {

TEST(elementwise_op, add_weight_test) {
  std::unordered_set<std::string> parameters({"elementwise_add-Y"});
  framework::Scope scope;
N
nhzlx 已提交
26
  TRTConvertValidation validator(10, parameters, scope, 1 << 15);
N
nhzlx 已提交
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
  validator.DeclInputVar("elementwise_add-X", nvinfer1::DimsCHW(10, 3, 3));
  validator.DeclParamVar("elementwise_add-Y", nvinfer1::Dims3(10, 1, 1));
  // validator.DeclParamVar("mul-Y", nvinfer1::Dims2(8, 2));
  validator.DeclOutputVar("elementwise_add-Out", nvinfer1::DimsCHW(10, 3, 3));

  // Prepare Op description
  framework::OpDesc desc;
  desc.SetType("elementwise_add");
  desc.SetInput("X", {"elementwise_add-X"});
  desc.SetInput("Y", {"elementwise_add-Y"});
  desc.SetOutput("Out", {"elementwise_add-Out"});

  int axis = 1;
  desc.SetAttr("axis", axis);

  validator.SetOp(*desc.Proto());

N
nhzlx 已提交
44
  validator.Execute(8);
N
nhzlx 已提交
45 46 47 48 49
}

TEST(elementwise_op, add_tensor_test) {
  std::unordered_set<std::string> parameters;
  framework::Scope scope;
N
nhzlx 已提交
50
  TRTConvertValidation validator(8, parameters, scope, 1 << 15);
N
nhzlx 已提交
51 52 53 54 55 56 57 58 59 60 61 62
  validator.DeclInputVar("elementwise_add-X", nvinfer1::DimsCHW(10, 3, 3));
  validator.DeclInputVar("elementwise_add-Y", nvinfer1::Dims3(10, 3, 3));
  // validator.DeclParamVar("mul-Y", nvinfer1::Dims2(8, 2));
  validator.DeclOutputVar("elementwise_add-Out", nvinfer1::DimsCHW(10, 3, 3));

  // Prepare Op description
  framework::OpDesc desc;
  desc.SetType("elementwise_add");
  desc.SetInput("X", {"elementwise_add-X"});
  desc.SetInput("Y", {"elementwise_add-Y"});
  desc.SetOutput("Out", {"elementwise_add-Out"});

N
nhzlx 已提交
63
  // the defalut axis of elementwise op is -1
N
nhzlx 已提交
64 65 66

  validator.SetOp(*desc.Proto());

N
nhzlx 已提交
67
  validator.Execute(8);
N
nhzlx 已提交
68 69 70 71 72 73
}

}  // namespace tensorrt
}  // namespace inference
}  // namespace paddle
USE_OP(elementwise_add);