| 142 | return residual_bytes; |
| 143 | } |
| 144 | int64 output_bytes() const { |
| 145 | int64 output_bytes = 0; |
| 146 | for (const ExecMemory& exec : memory_execs_) { |
| 147 | output_bytes += exec.output_bytes(); |
| 148 | } |
| 149 | return output_bytes; |
| 150 | } |
| 151 | int64 accelerator_temp_bytes() const { |
| 152 | int64 accelerator_temp_bytes = 0; |
| 153 | for (const ExecMemory& exec : memory_execs_) { |
no outgoing calls
no test coverage detected