|
|
|
@ -13,6 +13,7 @@ See the License for the specific language governing permissions and
|
|
|
|
|
limitations under the License. */
|
|
|
|
|
|
|
|
|
|
#include "paddle/fluid/framework/ir/node.h"
|
|
|
|
|
#include "paddle/fluid/framework/op_info.h"
|
|
|
|
|
|
|
|
|
|
namespace paddle {
|
|
|
|
|
namespace framework {
|
|
|
|
@ -24,10 +25,33 @@ constexpr char Node::kControlDepVarName[];
|
|
|
|
|
const char Node::kControlDepVarName[] = "__control_var";
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
std::unique_ptr<Node> CreateNodeForTest(const std::string& name,
|
|
|
|
|
std::unique_ptr<Node> CreateNodeForTest(const std::string &name,
|
|
|
|
|
Node::Type type) {
|
|
|
|
|
return std::unique_ptr<Node>(new Node(name, type));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool Node::RuntimeHasAttr(const std::string &name) const {
|
|
|
|
|
if (Op()->HasAttr(name)) {
|
|
|
|
|
return true;
|
|
|
|
|
} else {
|
|
|
|
|
auto &op_info = OpInfoMap::Instance();
|
|
|
|
|
auto op_type = Op()->Type();
|
|
|
|
|
if (op_info.Has(op_type)) {
|
|
|
|
|
auto op_info_ptr = op_info.Get(op_type);
|
|
|
|
|
if (op_info_ptr.HasOpProtoAndChecker()) {
|
|
|
|
|
const proto::OpProto &proto = op_info_ptr.Proto();
|
|
|
|
|
for (int i = 0; i != proto.attrs_size(); ++i) {
|
|
|
|
|
const proto::OpProto::Attr &attr = proto.attrs(i);
|
|
|
|
|
if (attr.name() == name) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace ir
|
|
|
|
|
} // namespace framework
|
|
|
|
|
} // namespace paddle
|
|
|
|
|