| 135 | return peak_bytes; |
| 136 | } |
| 137 | int64 residual_bytes() const { |
| 138 | int64 residual_bytes = 0; |
| 139 | for (const ExecMemory& exec : memory_execs_) { |
| 140 | residual_bytes += exec.residual_bytes(); |
| 141 | } |
| 142 | return residual_bytes; |
| 143 | } |
| 144 | int64 output_bytes() const { |
| 145 | int64 output_bytes = 0; |
| 146 | for (const ExecMemory& exec : memory_execs_) { |
no outgoing calls
no test coverage detected