(prefix, t)
| 40 | |
| 41 | |
| 42 | def format_offset(prefix, t): |
| 43 | if t > 0: |
| 44 | return prefix + '_t_plus_' + str(t) |
| 45 | elif t == 0: |
| 46 | return prefix + '_t' |
| 47 | else: |
| 48 | return prefix + '_t_minus_' + str(-t) |
| 49 | |
| 50 | |
| 51 | def add_loss_summaries(total_loss): |
nothing calls this directly
no outgoing calls
no test coverage detected