Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions relay-event-schema/src/protocol/contexts/gpu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ pub struct GpuContext {
#[metastructure(pii = "maybe")]
pub vendor_name: Annotated<String>,

/// The driver version as reported by the graphics device.
#[metastructure(pii = "maybe")]
pub driver_version: Annotated<String>,

/// The total GPU memory available in Megabytes.
#[metastructure(pii = "maybe")]
pub memory_size: Annotated<u64>,
Expand Down
Loading