You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
2.4 KiB
92 lines
2.4 KiB
#include "paddle/operators/net_op.h"
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#include "paddle/framework/op_registry.h"
|
|
#include "paddle/framework/operator.h"
|
|
|
|
namespace paddle {
|
|
namespace operators {
|
|
|
|
static int infer_shape_cnt = 0;
|
|
static int run_cnt = 0;
|
|
|
|
class TestOp : public OperatorBase {
|
|
public:
|
|
void InferShape(const framework::Scope& scope) const override {
|
|
++infer_shape_cnt;
|
|
}
|
|
void Run(const framework::Scope& scope,
|
|
const paddle::platform::DeviceContext& dev_ctx) const override {
|
|
++run_cnt;
|
|
}
|
|
};
|
|
|
|
class EmptyOp : public OperatorBase {
|
|
public:
|
|
void InferShape(const Scope& scope) const override {}
|
|
void Run(const Scope& scope,
|
|
const platform::DeviceContext& dev_ctx) const override {}
|
|
};
|
|
|
|
template <typename T>
|
|
void AssertSameVectorWithoutOrder(const std::vector<T>& expected,
|
|
const std::vector<T>& actual) {
|
|
ASSERT_EQ(expected.size(), actual.size());
|
|
std::unordered_set<T> expected_set;
|
|
for (auto& tmp : expected) {
|
|
expected_set.insert(tmp);
|
|
}
|
|
for (auto& act : actual) {
|
|
ASSERT_NE(expected_set.end(), expected_set.find(act));
|
|
}
|
|
}
|
|
|
|
TEST(OpKernel, all) {
|
|
auto net = std::make_shared<NetOp>();
|
|
ASSERT_NE(net, nullptr);
|
|
|
|
auto op1 = std::make_shared<TestOp>();
|
|
op1->inputs_ = {"x", "w1", "b1"};
|
|
op1->outputs_ = {"y"};
|
|
net->AddOp(op1);
|
|
|
|
auto op2 = std::make_shared<TestOp>();
|
|
op2->inputs_ = {"y", "w2", "b2"};
|
|
op2->outputs_ = {"z"};
|
|
net->AddOp(op2);
|
|
|
|
net->CompleteAddOp();
|
|
AssertSameVectorWithoutOrder({"x", "w1", "b1", "w2", "b2"}, net->inputs_);
|
|
AssertSameVectorWithoutOrder({"y", "z"}, net->outputs_);
|
|
auto tmp_idx_iter = net->attrs_.find("temporary_index");
|
|
ASSERT_NE(net->attrs_.end(), tmp_idx_iter);
|
|
auto& tmp_idx = boost::get<std::vector<int>>(tmp_idx_iter->second);
|
|
ASSERT_EQ(1UL, tmp_idx.size());
|
|
ASSERT_EQ("y", net->outputs_[tmp_idx[0]]);
|
|
|
|
Scope scope;
|
|
platform::CPUDeviceContext dev_ctx;
|
|
|
|
net->InferShape(scope);
|
|
net->Run(scope, dev_ctx);
|
|
ASSERT_EQ(2, infer_shape_cnt);
|
|
ASSERT_EQ(2, run_cnt);
|
|
ASSERT_THROW(net->AddOp(op2), paddle::platform::EnforceNotMet);
|
|
}
|
|
|
|
TEST(NetOp, insert_op) {
|
|
NetOp net;
|
|
auto op1 = std::make_shared<EmptyOp>();
|
|
op1->inputs_ = {"x", "w1", "b1"};
|
|
op1->outputs_ = {"y"};
|
|
net.AddOp(op1);
|
|
net.InsertOp(0, op1);
|
|
ASSERT_EQ(2UL, net.ops_.size());
|
|
net.InsertOp(2, op1);
|
|
ASSERT_EQ(3UL, net.ops_.size());
|
|
}
|
|
|
|
} // namespace operators
|
|
} // namespace paddle
|