Searched refs:enclosing_graph (Results 1 – 1 of 1) sorted by relevance
/external/tensorflow/tensorflow/python/framework/ |
D | convert_to_constants.py | 88 def __init__(self, enclosing_graph): argument 89 self._enclosing_graph = enclosing_graph 154 def __init__(self, function, enclosing_graph): argument 155 super(_Function, self).__init__(enclosing_graph) 159 _Node.new(node=n, function=self, enclosing_graph=enclosing_graph) 215 def __init__(self, node, function, enclosing_graph): argument 216 super(_Node, self).__init__(enclosing_graph) 224 def new(node, function, enclosing_graph): argument 227 return _VarHandle(node, function, enclosing_graph) 229 return _Case(node, function, enclosing_graph) [all …]
|