op_proto_maker_test.cc 4.7 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14

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. */

Y
Yi Wang 已提交
15
#include "paddle/fluid/framework/op_proto_maker.h"
16 17 18 19 20

#include "gtest/gtest.h"

class TestAttrProtoMaker : public paddle::framework::OpProtoAndCheckerMaker {
 public:
Y
Yu Yang 已提交
21
  void Make() {
22 23 24 25 26 27
    AddAttr<float>("scale", "scale of test op");
    AddAttr<float>("scale", "scale of test op");
  }
};

TEST(ProtoMaker, DuplicatedAttr) {
28
  paddle::framework::proto::OpProto op_proto;
29
  paddle::framework::OpAttrChecker op_checker;
Y
Yu Yang 已提交
30
  TestAttrProtoMaker proto_maker;
Y
yuyang18 已提交
31 32
  ASSERT_THROW(proto_maker(&op_proto, &op_checker),
               paddle::platform::EnforceNotMet);
33 34 35 36
}

class TestInOutProtoMaker : public paddle::framework::OpProtoAndCheckerMaker {
 public:
Y
Yu Yang 已提交
37
  void Make() {
38 39 40 41 42 43
    AddInput("input", "input of test op");
    AddInput("input", "input of test op");
  }
};

TEST(ProtoMaker, DuplicatedInOut) {
44
  paddle::framework::proto::OpProto op_proto;
45
  paddle::framework::OpAttrChecker op_checker;
Y
Yu Yang 已提交
46
  TestAttrProtoMaker proto_maker;
Y
yuyang18 已提交
47 48
  ASSERT_THROW(proto_maker(&op_proto, &op_checker),
               paddle::platform::EnforceNotMet);
49
}
50 51

class TestInplaceProtoMaker : public paddle::framework::OpProtoAndCheckerMaker {
52 53 54 55 56 57 58 59 60
 public:
  void Make() {
    AddInput("X", "input of test op");
    AddOutput("XOut", "output of test op").Reuse("X");
  }
};

class TestInplaceProtoMaker2
    : public paddle::framework::OpProtoAndCheckerMaker {
61 62 63 64 65 66 67 68 69
 public:
  void Make() {
    AddInput("X", "input of test op");
    AddOutput("XOut", "output of test op").Reuse("X");
    AddOutput("NoOut", "output of test op").Reuse("NotExists");
  }
};

TEST(ProtoMaker, InplaceOutput) {
70
  paddle::framework::proto::OpProto op_proto, op_proto2;
71 72
  paddle::framework::OpAttrChecker op_checker;
  TestInplaceProtoMaker proto_maker;
73 74 75 76 77
  TestInplaceProtoMaker2 proto_maker2;

  proto_maker(&op_proto, &op_checker);

  ASSERT_THROW(proto_maker2(&op_proto2, &op_checker),
78 79
               paddle::platform::EnforceNotMet);
}
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 110 111 112 113 114 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 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166

// normal reuse
class TestReuseProtoMaker : public paddle::framework::OpProtoAndCheckerMaker {
 public:
  void Make() {
    AddInput("X", "input of test op");
    AddInput("Y", "input of test op");
    AddOutput("Out", "output of test op");
    AddOutput("XOut", "output of test op");
    // avoid destructor exception.
    // Validate();
    TestReuse();
  }

  virtual void TestReuse() {}
};

// test duplicate reuse error
class TestReuseProtoMaker2 : public TestReuseProtoMaker {
 public:
  void TestReuse() {
    Reuse("Out", "X");
    Reuse("Out", "Y");
  }
};

// NotExists Input
class TestReuseProtoMaker3 : public TestReuseProtoMaker {
 public:
  void TestReuse() {
    Reuse("Out", "NotExists");
    Reuse("XOut", "X");
  }
};

// NotExists Output
class TestReuseProtoMaker4 : public TestReuseProtoMaker {
 public:
  void TestReuse() { Reuse("NotExists", "X"); }
};

TEST(ProtoMaker, Reuse) {
  paddle::framework::proto::OpProto op_proto;
  paddle::framework::OpAttrChecker op_checker;
  TestReuseProtoMaker proto_maker;
  proto_maker(&op_proto, &op_checker);
}

// NOTE(dzhwinter):
// There is a Fatal CHECK on base class destructor, which will call abort inside
// instead of
// throw an exception. If we throw an exception in Make(), we will trigger the
// CHECK and terminate the tests.
//
// I had tried to replace the default CHECK with a exception, however, it's
// still not supported by glog.
// the details:
// https://github.com/google/glog/issues/249
// https://github.com/facebookresearch/TensorComprehensions/issues/351
/*
TEST(ProtoMaker, ReuseWithException) {
  paddle::framework::proto::OpProto op_proto2, op_proto3, op_proto4;
  paddle::framework::OpAttrChecker op_checker;
  TestReuseProtoMaker2 proto_maker2;
  TestReuseProtoMaker3 proto_maker3;
  TestReuseProtoMaker4 proto_maker4;
  EXPECT_THROW(proto_maker2(&op_proto2, &op_checker),
               paddle::platform::EnforceNotMet);

  EXPECT_THROW(proto_maker3(&op_proto3, &op_checker),
               paddle::platform::EnforceNotMet);

  EXPECT_THROW(proto_maker4(&op_proto4, &op_checker),
               paddle::platform::EnforceNotMet);
}

void FailureFunction() {
  throw std::runtime_error("Check failed in destructor.");
  // return 0;
}

int main(int argc, char** argv) {
  testing::InitGoogleTest(&argc, argv);
  google::InstallFailureFunction(&FailureFunction);
  return RUN_ALL_TESTS();
}
*/