Skip to content
Open
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
6 changes: 4 additions & 2 deletions gcm/tests/test_nvml_monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,10 @@ class IteratorFakeGPUDevice:
power_limit: int
retired_pages_double_bit_ecc_error: List[int]
retired_pages_multiple_single_bit_ecc_errors: List[int]
application_clock_info: ApplicationClockInfo = ApplicationClockInfo(
graphics_freq=1155, memory_freq=1593
application_clock_info: ApplicationClockInfo = field(
default_factory=lambda: ApplicationClockInfo(
graphics_freq=1155, memory_freq=1593
)
)

def get_compute_processes(self) -> List[ProcessInfo]:
Expand Down