|
|
|
@ -47,120 +47,3 @@ TEST(ProtoMaker, DuplicatedInOut) {
|
|
|
|
|
ASSERT_THROW(proto_maker(&op_proto, &op_checker),
|
|
|
|
|
paddle::platform::EnforceNotMet);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class TestInplaceProtoMaker : public paddle::framework::OpProtoAndCheckerMaker {
|
|
|
|
|
public:
|
|
|
|
|
void Make() {
|
|
|
|
|
AddInput("X", "input of test op");
|
|
|
|
|
AddOutput("XOut", "output of test op").Reuse("X");
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class TestInplaceProtoMaker2
|
|
|
|
|
: public paddle::framework::OpProtoAndCheckerMaker {
|
|
|
|
|
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) {
|
|
|
|
|
paddle::framework::proto::OpProto op_proto, op_proto2;
|
|
|
|
|
paddle::framework::OpAttrChecker op_checker;
|
|
|
|
|
TestInplaceProtoMaker proto_maker;
|
|
|
|
|
TestInplaceProtoMaker2 proto_maker2;
|
|
|
|
|
|
|
|
|
|
proto_maker(&op_proto, &op_checker);
|
|
|
|
|
|
|
|
|
|
ASSERT_THROW(proto_maker2(&op_proto2, &op_checker),
|
|
|
|
|
paddle::platform::EnforceNotMet);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 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();
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|