File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,7 +9,11 @@ class GPUProfile(BaseModel):
99 """Available vGPU profile"""
1010
1111 available : int
12- """Number of instances that can be created with this profile"""
12+ """Number of virtual functions currently able to create this profile.
13+
14+ Best-effort: creating an instance may reduce availability on sibling functions
15+ sharing GPU framebuffer.
16+ """
1317
1418 framebuffer_mb : int
1519 """Frame buffer size in MB"""
Original file line number Diff line number Diff line change 1919class GPU (BaseModel ):
2020 """GPU information attached to the instance"""
2121
22+ device_path : Optional [str ] = None
23+ """sysfs path of the assigned vGPU device"""
24+
2225 mdev_uuid : Optional [str ] = None
23- """mdev device UUID"""
26+ """mdev device UUID (mdev hosts only) """
2427
2528 profile : Optional [str ] = None
2629 """vGPU profile name"""
You can’t perform that action at this time.
0 commit comments