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.
		
		
		
		
		
			
		
			
				
					
					
						
							153 lines
						
					
					
						
							4.9 KiB
						
					
					
				
			
		
		
	
	
							153 lines
						
					
					
						
							4.9 KiB
						
					
					
				| /* Copyright (c) 2016 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 "paddle/fluid/framework/prune.h"
 | |
| 
 | |
| #include "paddle/fluid/framework/attribute.h"
 | |
| #include "paddle/fluid/framework/operator.h"
 | |
| #include "paddle/fluid/operators/net_op.h"
 | |
| 
 | |
| #include "paddle/fluid/framework/block_desc.h"
 | |
| #include "paddle/fluid/framework/op_desc.h"
 | |
| #include "paddle/fluid/framework/program_desc.h"
 | |
| 
 | |
| #include <gtest/gtest.h>
 | |
| 
 | |
| namespace f = paddle::framework;
 | |
| namespace ops = paddle::operators;
 | |
| 
 | |
| void AddOp(const std::string &type, const f::VariableNameMap &inputs,
 | |
|            const f::VariableNameMap &outputs, f::AttributeMap attrs,
 | |
|            paddle::framework::BlockDesc *block) {
 | |
|   // insert output
 | |
|   for (auto kv : outputs) {
 | |
|     for (auto v : kv.second) {
 | |
|       auto var = block->Var(v);
 | |
|       var->SetDataType(paddle::framework::proto::DataType::FP32);
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   // insert op
 | |
|   auto op = block->AppendOp();
 | |
|   op->SetType(type);
 | |
|   for (auto &kv : inputs) {
 | |
|     op->SetInput(kv.first, kv.second);
 | |
|   }
 | |
|   for (auto &kv : outputs) {
 | |
|     op->SetOutput(kv.first, kv.second);
 | |
|   }
 | |
|   op->SetAttrMap(attrs);
 | |
| }
 | |
| 
 | |
| TEST(Prune, one_operator) {
 | |
|   f::ProgramDesc program;
 | |
|   f::BlockDesc *block = program.MutableBlock(0);
 | |
| 
 | |
|   AddOp("one_one", {{"input", {"a"}}}, {{"output", {"b"}}}, f::AttributeMap{},
 | |
|         block);
 | |
| 
 | |
|   f::proto::ProgramDesc *pdesc = program.Proto();
 | |
|   f::proto::ProgramDesc pruned;
 | |
| 
 | |
|   f::Prune(*pdesc, &pruned);
 | |
|   PADDLE_ENFORCE_EQ(pruned.blocks(0).ops_size(), 0);
 | |
| 
 | |
|   pdesc->mutable_blocks(0)->mutable_ops(0)->set_is_target(true);
 | |
|   f::Prune(*pdesc, &pruned);
 | |
|   PADDLE_ENFORCE_EQ(pruned.blocks(0).ops_size(), 1);
 | |
| }
 | |
| 
 | |
| TEST(Prune, forward) {
 | |
|   f::ProgramDesc program;
 | |
|   f::BlockDesc *block = program.MutableBlock(0);
 | |
| 
 | |
|   AddOp("one_one", {{"input", {"a"}}}, {{"output", {"b"}}}, f::AttributeMap{},
 | |
|         block);
 | |
|   AddOp("one_one", {{"input", {"b"}}}, {{"output", {"c"}}}, f::AttributeMap{},
 | |
|         block);
 | |
|   AddOp("one_one", {{"input", {"c"}}}, {{"output", {"d"}}}, f::AttributeMap{},
 | |
|         block);
 | |
|   AddOp("one_one", {{"input", {"d"}}}, {{"output", {"e"}}}, f::AttributeMap{},
 | |
|         block);
 | |
| 
 | |
|   f::proto::ProgramDesc *pdesc = program.Proto();
 | |
| 
 | |
|   for (int i = 0; i < pdesc->blocks(0).ops_size(); ++i) {
 | |
|     f::proto::ProgramDesc pruned;
 | |
|     pdesc->mutable_blocks(0)->mutable_ops(i)->set_is_target(true);
 | |
|     f::Prune(*pdesc, &pruned);
 | |
|     PADDLE_ENFORCE_EQ(pruned.blocks(0).ops_size(), i + 1);
 | |
|   }
 | |
| }
 | |
| 
 | |
| TEST(Prune, multi_input_op) {
 | |
|   f::ProgramDesc program;
 | |
|   f::BlockDesc *block = program.MutableBlock(0);
 | |
| 
 | |
|   AddOp("one_one", {{"input", {"a0"}}}, {{"output", {"b0"}}}, f::AttributeMap{},
 | |
|         block);
 | |
|   AddOp("one_one", {{"input", {"a1"}}}, {{"output", {"b1"}}}, f::AttributeMap{},
 | |
|         block);
 | |
|   AddOp("one_one", {{"input", {"a2"}}}, {{"output", {"b2"}}}, f::AttributeMap{},
 | |
|         block);
 | |
|   AddOp("three_one", {{"input", {"b0", "b1", "b2"}}}, {{"output", {"c"}}},
 | |
|         f::AttributeMap{}, block);
 | |
| 
 | |
|   f::proto::ProgramDesc *pdesc = program.Proto();
 | |
|   pdesc->mutable_blocks(0)->mutable_ops(3)->set_is_target(true);
 | |
| 
 | |
|   f::proto::ProgramDesc pruned;
 | |
|   f::Prune(*pdesc, &pruned);
 | |
|   PADDLE_ENFORCE_EQ(pruned.blocks(0).ops_size(), 4);
 | |
| }
 | |
| 
 | |
| TEST(Prune, multi_output_op) {
 | |
|   f::ProgramDesc program;
 | |
|   f::BlockDesc *block = program.MutableBlock(0);
 | |
| 
 | |
|   AddOp("one_two", {{"input", {"a"}}}, {{"output", {"b", "c"}}},
 | |
|         f::AttributeMap{}, block);
 | |
|   AddOp("one_one", {{"input", {"b"}}}, {{"output", {"b1"}}}, f::AttributeMap{},
 | |
|         block);
 | |
|   AddOp("one_one", {{"input", {"c"}}}, {{"output", {"c1"}}}, f::AttributeMap{},
 | |
|         block);
 | |
| 
 | |
|   f::proto::ProgramDesc *pdesc = program.Proto();
 | |
|   pdesc->mutable_blocks(0)->mutable_ops(2)->set_is_target(true);
 | |
| 
 | |
|   f::proto::ProgramDesc pruned;
 | |
|   f::Prune(*pdesc, &pruned);
 | |
|   PADDLE_ENFORCE_EQ(pruned.blocks(0).ops_size(), 2);
 | |
| }
 | |
| 
 | |
| TEST(Prune, multi_target) {
 | |
|   f::ProgramDesc program;
 | |
|   f::BlockDesc *block = program.MutableBlock(0);
 | |
| 
 | |
|   AddOp("one_two", {{"input", {"a"}}}, {{"output", {"b", "c"}}},
 | |
|         f::AttributeMap{}, block);
 | |
|   AddOp("one_one", {{"input", {"b"}}}, {{"output", {"b1"}}}, f::AttributeMap{},
 | |
|         block);
 | |
|   AddOp("one_one", {{"input", {"c"}}}, {{"output", {"c1"}}}, f::AttributeMap{},
 | |
|         block);
 | |
| 
 | |
|   f::proto::ProgramDesc *pdesc = program.Proto();
 | |
|   pdesc->mutable_blocks(0)->mutable_ops(1)->set_is_target(true);
 | |
|   pdesc->mutable_blocks(0)->mutable_ops(2)->set_is_target(true);
 | |
| 
 | |
|   f::proto::ProgramDesc pruned;
 | |
|   f::Prune(*pdesc, &pruned);
 | |
|   PADDLE_ENFORCE_EQ(pruned.blocks(0).ops_size(), 3);
 | |
| }
 |