Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/python/eager/
Dcontext.py147 self.summary_step = None
531 def summary_step(self): member in Context
533 return self._thread_local_data.summary_step
535 @summary_step.setter
536 def summary_step(self, step): member in Context
538 self._thread_local_data.summary_step = step
Dcore_test.py80 self.assertIsNone(ctx.summary_step)
81 ctx.summary_step = 'mock'
82 self.assertEqual('mock', ctx.summary_step)
176 ctx.summary_step,
/external/tensorflow/tensorflow/python/ops/
Dsummary_ops_v2.py153 return context.context().summary_step
172 context.context().summary_step = step