HomeSort by relevance Sort by last modified time
    Searched refs:seen_ops (Results 1 - 2 of 2) sorted by null

  /external/tensorflow/tensorflow/contrib/lite/python/
op_hint.py 228 seen_ops = set()
232 if operand in seen_ops:
234 seen_ops.add(operand)
  /external/tensorflow/tensorflow/python/training/
saver.py 630 seen_ops = set()
638 self._AddSaveable(saveables, seen_ops, op)
663 self._AddSaveable(saveables, seen_ops, saveable)
684 self._AddSaveable(saveables, seen_ops, saveable)
687 def _AddSaveable(self, saveables, seen_ops, saveable):
692 seen_ops: Set of the ops of the saveables already processed. Used to
699 if saveable.op in seen_ops:
703 seen_ops.add(saveable.op)
    [all...]

Completed in 90 milliseconds