Per-config suffix used for compile artifacts (out_ , artifact_ .json).
(P, M, K, N)
| 11 | |
| 12 | |
| 13 | def cfg_name(P, M, K, N): |
| 14 | """Per-config suffix used for compile artifacts (out_<cfg>, artifact_<cfg>.json).""" |
| 15 | return f"{P}_{M // P}_{K // P}_{N // P}" |
| 16 | |
| 17 | |
| 18 | def float_to_hex(f): |
nothing calls this directly
no outgoing calls
no test coverage detected