Source code for tensorial.gcnn._common """Common utility functions that operate on graphs""" from . import graph_ops __all__ = ("reduce",) [docs] def reduce(*args, **kwargs): return graph_ops.graph_segment_reduce(*args, **kwargs)