MCPcopy Create free account
hub / github.com/alibaba/GraphScope / unload_graph

Function unload_graph

python/graphscope/framework/dag_utils.py:761–770  ·  view source on GitHub ↗

Unload a graph. Args: graph (:class:`GraphDAGNode`): The graph to unload. Returns: An op to unload the `graph`.

(graph)

Source from the content-addressed store, hash-verified

759
760
761def unload_graph(graph):
762 """Unload a graph.
763
764 Args:
765 graph (:class:`GraphDAGNode`): The graph to unload.
766
767 Returns:
768 An op to unload the `graph`.
769 """
770 return create_unload_op(graph.session_id, types_pb2.UNLOAD_GRAPH, [graph.op])
771
772
773def unload_context(context):

Callers

nothing calls this directly

Calls 1

create_unload_opFunction · 0.85

Tested by

no test coverage detected