base.py 236 B

12345678
  1. """This module defines the base class for object scanning and gets rid of
  2. reference cycles."""
  3. from ray.util.annotations import DeveloperAPI
  4. @DeveloperAPI
  5. class DAGNodeBase:
  6. """Common base class for a node in a Ray task graph."""