Adds an unref to this tensor with the specified timestamp. Args: timestamp: Timestamp of object unreference as an integer.
(self, timestamp)
| 371 | self._ref_times.append(timestamp) |
| 372 | |
| 373 | def add_unref(self, timestamp): |
| 374 | """Adds an unref to this tensor with the specified timestamp. |
| 375 | |
| 376 | Args: |
| 377 | timestamp: Timestamp of object unreference as an integer. |
| 378 | """ |
| 379 | self._unref_times.append(timestamp) |
| 380 | |
| 381 | |
| 382 | class Timeline(object): |
no test coverage detected