(num, mult)
| 104 | return l[0] |
| 105 | |
| 106 | def round_up_multiple(num, mult): |
| 107 | return ceil(num / mult) * mult |
| 108 | |
| 109 | def get_code_utilization(codes, codebook_size, get_global=False): |
| 110 | if get_global and dist.is_initialized(): |
nothing calls this directly
no outgoing calls
no test coverage detected