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

  /external/tensorflow/tensorflow/contrib/compiler/
xla.py 52 _UNSUPPORTED_OPS = set([
132 self._unsupported_ops = []
136 if self._unsupported_ops:
139 for op in self._unsupported_ops[:_MAX_WARNING_LINES]
142 len(self._unsupported_ops), op_str)
143 if len(self._unsupported_ops) > _MAX_WARNING_LINES:
145 len(self._unsupported_ops) - _MAX_WARNING_LINES)
180 if op.type in _UNSUPPORTED_OPS:
181 self._unsupported_ops.append(op)
  /external/tensorflow/tensorflow/python/tpu/
tpu.py 53 _UNSUPPORTED_OPS = set([
163 self._unsupported_ops = []
203 if self._unsupported_ops:
205 for op in self._unsupported_ops[:_MAX_WARNING_LINES]])
207 len(self._unsupported_ops), op_str)
208 if len(self._unsupported_ops) > _MAX_WARNING_LINES:
210 (len(self._unsupported_ops) - _MAX_WARNING_LINES))
364 if op.type in _UNSUPPORTED_OPS:
365 self._unsupported_ops.append(op)
    [all...]

Completed in 177 milliseconds