Supported hardware targets for solution implementations. Enumeration of hardware platforms that solutions can target.
| 55 | |
| 56 | |
| 57 | class SupportedHardware(str, Enum): |
| 58 | """Supported hardware targets for solution implementations. |
| 59 | |
| 60 | Enumeration of hardware platforms that solutions can target. |
| 61 | """ |
| 62 | |
| 63 | B200 = "B200" |
| 64 | """NVIDIA B200.""" |
| 65 | LOCAL = "LOCAL" |
| 66 | """Local NVIDIA GPU.""" |
| 67 | |
| 68 | |
| 69 | class SupportedBindings(str, Enum): |
nothing calls this directly
no outgoing calls
no test coverage detected