Searched defs:graph_parents (Results 1 - 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/python/ops/distributions/
H A Dbijector_impl.py383 graph_parents=None,
406 graph_parents: Python list of graph prerequisites of this `Bijector`.
417 ValueError: If a member of `graph_parents` is not a `Tensor`.
422 self._graph_parents = graph_parents or []
451 def graph_parents(self): member in class:Bijector
452 """Returns this `Bijector`'s graph_parents as a Python list."""
771 name, values=(values or []) + self.graph_parents) as scope:
/external/tensorflow/tensorflow/python/ops/linalg/
H A Dlinear_operator.py146 graph_parents=None,
160 graph_parents: Python list of graph prerequisites of this `LinearOperator`
175 ValueError: If any member of graph_parents is `None` or not a `Tensor`.
196 graph_parents = [] if graph_parents is None else graph_parents
197 for i, t in enumerate(graph_parents):
201 self._graph_parents = graph_parents
236 def graph_parents(self): member in class:LinearOperator

Completed in 1103 milliseconds