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.
79 lines
2.2 KiB
79 lines
2.2 KiB
/*
|
|
Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.
|
|
|
|
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/operators/net_op.h"
|
|
#include "paddle/framework/op_registry.h"
|
|
|
|
namespace paddle {
|
|
namespace operators {
|
|
|
|
void NetOp::CompleteAddOp(bool calc) {
|
|
add_op_done_ = true;
|
|
if (!calc) return;
|
|
std::unordered_set<std::string> input_set;
|
|
std::unordered_set<std::string> output_set;
|
|
std::unordered_set<std::string> temp_output;
|
|
for (auto& op : ops_) {
|
|
for (auto& ipt : op->inputs_) {
|
|
if (!Contains(output_set, ipt)) { // Not other op's output
|
|
input_set.insert(ipt);
|
|
} else {
|
|
temp_output.insert(ipt);
|
|
}
|
|
}
|
|
|
|
for (auto& opt : op->outputs_) {
|
|
output_set.insert(opt);
|
|
}
|
|
}
|
|
|
|
inputs_.reserve(input_set.size());
|
|
std::copy(input_set.begin(), input_set.end(), std::back_inserter(inputs_));
|
|
std::sort(inputs_.begin(), inputs_.end());
|
|
|
|
outputs_.reserve(output_set.size());
|
|
std::copy(output_set.begin(), output_set.end(), std::back_inserter(outputs_));
|
|
std::sort(outputs_.begin(), outputs_.end());
|
|
|
|
std::vector<int> tmp_index;
|
|
tmp_index.reserve(temp_output.size());
|
|
int output_len = static_cast<int>(outputs_.size());
|
|
for (int i = 0; i < output_len; ++i) {
|
|
if (Contains(temp_output, outputs_[i])) {
|
|
tmp_index.push_back(i);
|
|
}
|
|
}
|
|
|
|
attrs_["temporary_index"] = tmp_index;
|
|
}
|
|
|
|
std::string NetOp::DebugString() const {
|
|
std::ostringstream os;
|
|
os << OperatorBase::DebugString() << std::endl;
|
|
for (auto& op : ops_) {
|
|
std::istringstream is(op->DebugString());
|
|
for (std::string line; std::getline(is, line);) {
|
|
os << " " << line << std::endl;
|
|
}
|
|
}
|
|
return os.str();
|
|
}
|
|
|
|
bool NetOp::IsNetOp() const { return true; }
|
|
|
|
} // namespace operators
|
|
} // namespace paddle
|