test_split_op.cc 3.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/* 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 {

H
hjchen2 已提交
23 24 25
template <int BatchSize, int Axis>
void TensorRTSplitTest(const std::vector<int> &in_shape,
                       const std::vector<int> &sections) {
26 27
  std::unordered_set<std::string> parameters({""});
  framework::Scope scope;
H
hjchen2 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
  TRTConvertValidation validator(BatchSize + 1, parameters, scope, 10000);

  auto make_dim = [](const std::vector<int> &shape) {
    nvinfer1::DimsCHW dim;
    dim.c() = shape[0];
    dim.h() = shape[1];
    dim.w() = shape[2];
    return dim;
  };
  validator.DeclInputVar("split_input", make_dim(in_shape));
  std::vector<std::string> output_vars;
  for (size_t i = 0; i < sections.size(); ++i) {
    auto out_shape = in_shape;
    out_shape[Axis - 1] = sections[i];
    std::string output_name = "split_out" + std::to_string(i);
    validator.DeclOutputVar(output_name, make_dim(out_shape));
    output_vars.push_back(output_name);
  }
46 47 48 49 50

  // Prepare Op description
  framework::OpDesc desc;
  desc.SetType("split");
  desc.SetInput("X", {"split_input"});
H
hjchen2 已提交
51
  desc.SetOutput("Out", output_vars);
52

H
hjchen2 已提交
53 54 55
  desc.SetAttr("axis", Axis);
  desc.SetAttr("num", 0);
  desc.SetAttr("sections", sections);
56 57 58

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

H
hjchen2 已提交
59 60 61
  validator.Execute(BatchSize);
}

H
hjchen2 已提交
62 63
// batch = 0, axis = 1, same shape
TEST(split_op, test_same_shape_axis1_batch1) {
H
hjchen2 已提交
64 65
  TensorRTSplitTest<1, 1>({4, 2, 2}, {2, 2});
}
H
hjchen2 已提交
66 67
// batch = 0, axis = 1, different shape
TEST(split_op, test_different_shape_axis1_batch1) {
H
hjchen2 已提交
68 69
  TensorRTSplitTest<1, 1>({3, 2, 2}, {2, 1});
}
H
hjchen2 已提交
70 71
// batch = 10, axis = 1, same shape
TEST(split_op, test_same_shape_axis1_batch10) {
H
hjchen2 已提交
72 73
  TensorRTSplitTest<10, 1>({4, 2, 2}, {2, 2});
}
H
hjchen2 已提交
74 75
// batch = 10, axis = 1, different shape
TEST(split_op, test_different_shape_axis1_batch10) {
H
hjchen2 已提交
76
  TensorRTSplitTest<10, 1>({3, 2, 2}, {2, 1});
77
}
H
hjchen2 已提交
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
// batch = 0, axis = 2, same shape
TEST(split_op, test_same_shape_axis2_batch1) {
  TensorRTSplitTest<1, 2>({3, 4, 2}, {2, 2});
}
// batch = 0, axis = 2, different shape
TEST(split_op, test_different_shape_axis2_batch1) {
  TensorRTSplitTest<1, 2>({3, 3, 2}, {2, 1});
}
// batch = 10, axis = 2, same shape
TEST(split_op, test_same_shape_axis2_batch10) {
  TensorRTSplitTest<10, 2>({3, 4, 2}, {2, 2});
}
// batch = 10, axis = 2, different shape
TEST(split_op, test_different_shape_axis2_batch10) {
  TensorRTSplitTest<10, 2>({3, 3, 2}, {2, 1});
}
// batch = 0, axis = 3, same shape
TEST(split_op, test_same_shape_axis3_batch1) {
  TensorRTSplitTest<1, 3>({3, 2, 4}, {2, 2});
}
// batch = 0, axis = 3, different shape
TEST(split_op, test_different_shape_axis3_batch1) {
  TensorRTSplitTest<1, 3>({3, 2, 3}, {2, 1});
}
// batch = 10, axis = 3, same shape
TEST(split_op, test_same_shape_axis3_batch10) {
  TensorRTSplitTest<10, 3>({3, 2, 4}, {2, 2});
}
// batch = 10, axis = 3, different shape
TEST(split_op, test_different_shape_axis3_batch10) {
  TensorRTSplitTest<10, 3>({3, 2, 3}, {2, 1});
}
110 111 112 113 114 115

}  // namespace tensorrt
}  // namespace inference
}  // namespace paddle

USE_OP(split);