Atomically set the value. Args: value: integer value.
(self, value)
| 199 | self._cell = cell |
| 200 | |
| 201 | def set(self, value): |
| 202 | """Atomically set the value. |
| 203 | |
| 204 | Args: |
| 205 | value: integer value. |
| 206 | """ |
| 207 | pywrap_tensorflow.TFE_MonitoringIntGaugeCellSet(self._cell, value) |
| 208 | |
| 209 | def value(self): |
| 210 | """Retrieves the current value.""" |
no outgoing calls