Lines Matching +full:node +full:- +full:releases
2 * Copyright (c) 2018-2021 Arm Limited.
4 * SPDX-License-Identifier: MIT
37 inline bool is_utility_node(INode *node) in is_utility_node() argument
40 return utility_node_types.find(node->type()) != utility_node_types.end(); in is_utility_node()
53 return (tensor != nullptr) ? tensor->desc() : TensorDescriptor(); in get_tensor_descriptor()
65 tensor->set_accessor(std::move(accessor)); in set_tensor_accessor()
94 * @param[in] cfg Graph configuration meta-data
105 /** Default releases the graph context if not done manually
128 /** Get the list of driving nodes of a given node
130 * @param[in] node Node to find the driving node of
132 * @return A list with the driving node of a given node
134 std::vector<NodeIdxPair> get_driving_nodes(const INode &node);
135 /** Get the list of driver nodes of a given node
137 * @param[in] node Node to find the driver node of
139 * @return A list with the driver node of a given node
141 std::vector<NodeIdxPair> get_driver_nodes(const INode &node);