/** * Copyright 2019-2020 Huawei Technologies Co., Ltd * * 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. */ #ifndef INC_GRAPH_UTILS_NODE_UTILS_H_ #define INC_GRAPH_UTILS_NODE_UTILS_H_ #include #include #include #include "graph/node.h" namespace ge { // Op types of Const like Opps. extern const std::set kConstOpTypes; // Op types of If like Opps. extern const std::set kIfOpTypes; // Op types of While like Opps. extern const std::set kWhileOpTypes; // Op types of Case like Opps. extern const std::set kCaseOpTypes; // Op types of For like Opps. extern const std::set kForOpTypes; class NodeUtils { public: static graphStatus AddSendEventId(const NodePtr &node, const uint32_t &event_id); static graphStatus AddRecvEventId(const NodePtr &node, const uint32_t &event_id); static graphStatus GetSendEventIdList(const NodePtr &node, std::vector &vec_send); static graphStatus GetRecvEventIdList(const NodePtr &node, std::vector &vec_recv); static graphStatus ClearSendInfo(); static graphStatus ClearRecvInfo(); static graphStatus GetSingleOutputNodeOfNthLayer(const NodePtr &src, int depth, NodePtr &dst); static graphStatus GetDataOutAnchorAndControlInAnchor(const NodePtr &node_ptr, OutDataAnchorPtr &out_data, InControlAnchorPtr &in_control); static graphStatus ClearInDataAnchor(const NodePtr &node_ptr, const InDataAnchorPtr &in_data_anchor); static graphStatus SetAllAnchorStatus(const NodePtr &nodePtr); static graphStatus SetAllAnchorStatus(Node &node); static bool IsAnchorStatusSet(const NodePtr &nodePtr); static bool IsAnchorStatusSet(const Node &node); static graphStatus MoveOutputEdges(const NodePtr &origin_node, const NodePtr &new_node); static void UpdateIsInputConst(const NodePtr &nodePtr); static void UpdateIsInputConst(Node &node); static bool IsConst(const Node &node); static void UnlinkAll(const Node &node); static graphStatus UpdatePeerNodeInputDesc(const NodePtr &node_ptr); static bool IsInNodesEmpty(const Node &node); static GeTensorDesc GetOutputDesc(const Node &node, uint32_t index); static GeTensorDesc GetInputDesc(const Node &node, uint32_t index); static graphStatus UpdateOutputShape(const Node &node, uint32_t index, const GeShape &shape); static graphStatus UpdateInputShape(const Node &node, uint32_t index, const GeShape &shape); // check node whether unknown shape.If node shape contain -1 or -2,out param "is_unknow" will be true; // for func op, it will check subgraph yet, if some node shape of subgraph contain -1 or -2, // the out param "is_unknow" will be true too static graphStatus GetNodeUnknownShapeStatus(const Node &node, bool &is_unknow); static std::string GetNodeType(const Node &node); static ComputeGraphPtr GetSubgraph(const Node &node, uint32_t index); static graphStatus SetSubgraph(Node &node, uint32_t index, const ComputeGraphPtr &subgraph); /// /// Check if node is input of subgraph /// @param [in] node /// @return bool /// static bool IsSubgraphInput(const NodePtr &node); /// /// Check if node is output of subgraph /// @param [in] node /// @return bool /// static bool IsSubgraphOutput(const NodePtr &node); /// /// @brief Get subgraph original input node. /// @param [in] node /// @return Node /// static NodePtr GetParentInput(const NodePtr &node); /// /// @brief Check is varying_input for while node /// @param [in] node: Data node for subgraph /// @return bool /// static bool IsWhileVaryingInput(const ge::NodePtr &node); /// /// @brief Get subgraph input is constant. /// @param [in] node /// @param [out] string /// @return bool /// static bool GetConstOpType(const NodePtr &in_node, std::string &op_type); /// /// @brief Remove node-related subgraphs, including subgraphs of nodes in the subgraph. /// @param [in] node /// @return return GRAPH_SUCCESS if remove successfully, other for failed. /// static graphStatus RemoveSubgraphsOnNode(const NodePtr &node); /// /// @brief Get subgraph input data node by index. /// @param [in] node /// @return Node /// static vector GetSubgraphDataNodesByIndex(const Node &node, int index); /// /// @brief Get subgraph input data node by index. /// @param [in] node /// @return Node /// static vector GetSubgraphOutputNodes(const Node &node); static NodePtr GetInDataNodeByIndex(const Node &node, int index); static vector GetOutDataNodesByIndex(const Node &node, int index); private: static std::map> map_send_info_; static std::map> map_recv_info_; }; } // namespace ge #endif // INC_GRAPH_UTILS_NODE_UTILS_H_