Home
last modified time | relevance | path

Searched refs:_colocate_with (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/python/ops/
Dtensor_array_ops.py127 self._colocate_with = []
129 self._colocate_with = None
216 if not self._colocate_with:
217 self._colocate_with.append(value)
218 with ops.colocate_with(self._colocate_with[0]):
231 ta._colocate_with = self._colocate_with
290 ta._colocate_with = self._colocate_with
363 ta._colocate_with = self._colocate_with
394 ta._colocate_with = self._colocate_with
498 self._colocate_with = None
[all …]
Dcontrol_flow_ops.py436 new_ta._colocate_with = ta._colocate_with
/external/tensorflow/tensorflow/python/framework/
Dops.py5227 def _colocate_with(op, ignore_existing=False): function