MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / is_utility_node

Function is_utility_node

arm_compute/graph/Utils.h:41–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

39class GraphContext;
40
41inline bool is_utility_node(INode *node)
42{
43 std::set<NodeType> utility_node_types = {NodeType::PrintLayer};
44 return utility_node_types.find(node->type()) != utility_node_types.end();
45}
46
47/** Returns the tensor descriptor of a given tensor
48 *

Callers 2

configure_all_nodesFunction · 0.85
get_transition_handlesFunction · 0.85

Calls 3

findMethod · 0.80
typeMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected