GPU device interface representing a physical GPU device
| 23 | * GPU device interface representing a physical GPU device |
| 24 | */ |
| 25 | public interface GpuDevice extends InternalIdentity, Identity { |
| 26 | |
| 27 | enum State { |
| 28 | Allocated, Free, Error, PartiallyAllocated, |
| 29 | } |
| 30 | |
| 31 | enum ManagedState { |
| 32 | Managed, Unmanaged, |
| 33 | } |
| 34 | |
| 35 | enum DeviceType { |
| 36 | PCI, MDEV, VGPUOnly, |
| 37 | } |
| 38 | |
| 39 | long getHostId(); |
| 40 | |
| 41 | State getState(); |
| 42 | } |
no outgoing calls
no test coverage detected