Searched refs:enclosing_graph (Results 1 – 1 of 1) sorted by relevance
/external/tensorflow/tensorflow/python/framework/ |
D | convert_to_constants.py | 83 def __init__(self, enclosing_graph): argument 84 self._enclosing_graph = enclosing_graph 149 def __init__(self, function, enclosing_graph): argument 150 super(_Function, self).__init__(enclosing_graph) 154 _Node.new(node=n, function=self, enclosing_graph=enclosing_graph) 210 def __init__(self, node, function, enclosing_graph): argument 211 super(_Node, self).__init__(enclosing_graph) 219 def new(node, function, enclosing_graph): argument 222 return _VarHandle(node, function, enclosing_graph) 224 return _Case(node, function, enclosing_graph) [all …]
|