Atomically increments the value. Args: value: non-negative value.
(self, value)
| 151 | self._cell = cell |
| 152 | |
| 153 | def increase_by(self, value): |
| 154 | """Atomically increments the value. |
| 155 | |
| 156 | Args: |
| 157 | value: non-negative value. |
| 158 | """ |
| 159 | pywrap_tensorflow.TFE_MonitoringCounterCellIncrementBy(self._cell, value) |
| 160 | |
| 161 | def value(self): |
| 162 | """Retrieves the current value.""" |
no outgoing calls