Stores the maximum allocation for a given allocator within the timelne. Parameters: timestamp: `tensorflow::Env::NowMicros()` when this maximum was reached. num_bytes: the total memory used at this time. tensors: the set of tensors allocated at this time.
| 30 | |
| 31 | |
| 32 | class AllocationMaximum(collections.namedtuple( |
| 33 | 'AllocationMaximum', ('timestamp', 'num_bytes', 'tensors'))): |
| 34 | """Stores the maximum allocation for a given allocator within the timelne. |
| 35 | |
| 36 | Parameters: |
| 37 | timestamp: `tensorflow::Env::NowMicros()` when this maximum was reached. |
| 38 | num_bytes: the total memory used at this time. |
| 39 | tensors: the set of tensors allocated at this time. |
| 40 | """ |
| 41 | pass |
| 42 | |
| 43 | |
| 44 | class StepStatsAnalysis(collections.namedtuple( |
no outgoing calls
no test coverage detected