| 101 | } |
| 102 | |
| 103 | inline int32_t getTrtSMVersionDec(int32_t smVersion) |
| 104 | { |
| 105 | // Treat SM89 as SM86 temporarily. |
| 106 | return (smVersion == 89) ? 86 : smVersion; |
| 107 | } |
| 108 | |
| 109 | inline int32_t getTrtSMVersionDec(int32_t majorVersion, int32_t minorVersion) |
| 110 | { |
no outgoing calls
no test coverage detected