You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
:param system_capacity: A constant value for the GPU RAM capacity of all the GPUs in the system.
465
465
:param system: The GPU RAM usage of all the GPUs in the system.
466
466
:param main: The GPU RAM usage of the main process.
467
-
:param descendents: The summed GPU RAM usage of the descendent processes (i.e. child processes, grandchild processes, etc.).
468
-
:param combined: The summed GPU RAM usage of both the main process and any descendent processes it may have.
467
+
:param descendants: The summed GPU RAM usage of the descendant processes (i.e. child processes, grandchild processes, etc.).
468
+
:param combined: The summed GPU RAM usage of both the main process and any descendant processes it may have.
469
469
"""
470
470
unit: str
471
471
system_capacity: float
472
472
system: float=0.
473
473
main: float=0.
474
-
descendents: float=0.
474
+
descendants: float=0.
475
475
combined: float=0.
476
476
477
477
@@ -498,27 +498,27 @@ class ProcessingUnitPercentages:
498
498
@dclass.dataclass
499
499
classCPUUtilization:
500
500
"""
501
-
Information related to CPU usage, including core utilization percentages of the main process and any descendent processes it may have as well as system-wide utilization.
502
-
The system hardware utilization percentages are strictly divided by the total number of cores in the system while that of the main, descendent, and combined processes can be divided by the expected number of cores used in a task.
501
+
Information related to CPU usage, including core utilization percentages of the main process and any descendant processes it may have as well as system-wide utilization.
502
+
The system hardware utilization percentages are strictly divided by the total number of cores in the system while that of the main, descendant, and combined processes can be divided by the expected number of cores used in a task.
503
503
504
504
:param system_core_count: The number of cores available to the entire operating system.
505
-
:param n_expected_cores: The number of cores expected to be used by the main process and/or any descendent processes it may have.
505
+
:param n_expected_cores: The number of cores expected to be used by the main process and/or any descendant processes it may have.
506
506
:param system: The utilization percentages of all the cores in the entire operating system.
507
507
:param main: The utilization percentages of the cores used by the main process.
508
-
:param descendents: The utilization percentages summed across descendent processes (i.e. child processes, grandchild processes, etc.).
509
-
:param combined: The utilization percentages summed across both the descendent processes and the main process.
508
+
:param descendants: The utilization percentages summed across descendant processes (i.e. child processes, grandchild processes, etc.).
509
+
:param combined: The utilization percentages summed across both the descendant processes and the main process.
510
510
:param main_n_threads: The maximum detected number of threads used by the main process at any time.
511
-
:param descendents_n_threads: The maximum sum of threads used across the descendent processes at any time.
512
-
:param combined_n_threads: The maximum sum of threads used by both the main and descendent processes.
511
+
:param descendants_n_threads: The maximum sum of threads used across the descendant processes at any time.
512
+
:param combined_n_threads: The maximum sum of threads used by both the main and descendant processes.
0 commit comments