(architecture)
| 49 | return [p + c for c in cpus for p in precisions] |
| 50 | |
| 51 | def getRealSize(architecture): |
| 52 | realSize = { |
| 53 | 's': 4, |
| 54 | 'd': 8 |
| 55 | } |
| 56 | return realSize[ architecture[0].lower() ] |
| 57 | |
| 58 | def getCpu(architecture): |
| 59 | return architecture[1:] |
nothing calls this directly
no outgoing calls
no test coverage detected