bob.med.tb.utils.resources¶
Tools for interacting with the running computer or GPU
Module Attributes
The number of bytes in a gigabyte |
Functions
Returns static CPU information about the current system. |
|
|
Returns process (+child) information using |
Returns GPU (static) information using nvidia-smi |
|
|
Returns GPU information about current non-static status using nvidia-smi |
|
Returns GPU information from query |
-
bob.med.tb.utils.resources.
GB
= 1073741824.0¶ The number of bytes in a gigabyte
-
bob.med.tb.utils.resources.
run_nvidia_smi
(query, rename=None)[source]¶ Returns GPU information from query
For a comprehensive list of options and help, execute
nvidia-smi --help-query-gpu
on a host with a GPU- Parameters
query (list) – A list of query strings as defined by
nvidia-smi --help-query-gpu
rename (
list
, Optional) – A list of keys to yield in the return value for each entry above. It gives you the opportunity to rewrite some key names for convenience. This list, if provided, must be of the same length asquery
.
- Returns
data – An ordered dictionary (organized as 2-tuples) containing the queried parameters (
rename
versions). Ifnvidia-smi
is not available, returnsNone
. Percentage information is left alone, memory information is transformed to gigabytes (floating-point).- Return type
tuple
, None
-
bob.med.tb.utils.resources.
gpu_constants
()[source]¶ Returns GPU (static) information using nvidia-smi
See
run_nvidia_smi()
for operational details.- Returns
data – If
nvidia-smi
is not available, returnsNone
, otherwise, we return an ordered dictionary (organized as 2-tuples) containing the followingnvidia-smi
query information:- Return type
tuple
, None
-
bob.med.tb.utils.resources.
gpu_log
()[source]¶ Returns GPU information about current non-static status using nvidia-smi
See
run_nvidia_smi()
for operational details.- Returns
data – If
nvidia-smi
is not available, returnsNone
, otherwise, we return an ordered dictionary (organized as 2-tuples) containing the followingnvidia-smi
query information:- Return type
tuple
, None
-
bob.med.tb.utils.resources.
cpu_constants
()[source]¶ Returns static CPU information about the current system.
-
bob.med.tb.utils.resources.
cpu_log
()[source]¶ Returns process (+child) information using
psutil
.This call examines the current process plus any spawn child and returns the combined resource usage summary for the process group.
- Returns
data – An ordered dictionary (organized as 2-tuples) containing these entries:
cpu_memory_used
(float
): total memory used from the system, in gigabytescpu_rss
(float
): RAM currently used by process and children, in gigabytescpu_vms
(float
): total memory (RAM + swap) currently used by process and children, in gigabytescpu_percent
(float
): percentage of the total CPU used by this process and children (recursively) since last call (first time called should be ignored). This number depends on the number of CPUs in the system and can be greater than 100%cpu_processes
(int
): total number of processes including self and children (recursively)cpu_open_files
(int
): total number of open files by self and children
- Return type