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

Function create_unload_op

python/graphscope/framework/dag_utils.py:738–746  ·  view source on GitHub ↗

Uility method to create a unload `Operation` based on op type and op.

(session_id, op_type, inputs)

Source from the content-addressed store, hash-verified

736
737
738def create_unload_op(session_id, op_type, inputs):
739 """Uility method to create a unload `Operation` based on op type and op."""
740 op = Operation(
741 session_id,
742 op_type,
743 inputs=inputs,
744 output_types=types_pb2.NULL_OUTPUT,
745 )
746 return op
747
748
749def unload_app(app):

Callers 3

unload_appFunction · 0.85
unload_graphFunction · 0.85
unload_contextFunction · 0.85

Calls 1

OperationClass · 0.90

Tested by

no test coverage detected