You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

73 lines
3.5KB

  1. # -*- coding: utf-8 -*-
  2. from GPUtil import getAvailable, getGPUs
  3. from loguru import logger
  4. from enums.ExceptionEnum import ExceptionType
  5. from exception.CustomerException import ServiceException
  6. # order- 确定返回可用 GPU 设备 ID 的顺序。order应指定为以下字符串之一:
  7. # 'first'- 按升序排列可用的 GPU 设备 ID(默认)
  8. # 'last'- 按 id 降序排列可用的 GPU 设备 id
  9. # 'random'- 随机订购可用的 GPU 设备 ID
  10. # 'load'- 按负载递增排序可用的 GPU 设备 ID
  11. # 'memory'- 通过升序内存使用来排序可用的 GPU 设备 ID
  12. # limit- 将返回的 GPU 设备 ID 数量限制为指定数量。必须是正整数。(默认 = 1)
  13. # maxLoad- 被认为可用的 GPU 的最大当前相对负载。负载大于 的 GPUmaxLoad不会返回。(默认 = 0.5)
  14. # maxMemory- 被视为可用的 GPU 的最大当前相对内存使用量。maxMemory不返回当前内存使用量大于的 GPU 。(默认 = 0.5)
  15. # includeNan- 真/假标志,指示是否包括负载或内存使用为 NaN 的 GPU(指示无法检索使用情况)。(默认 = 假)
  16. # excludeID- ID 列表,应从可用 GPU 列表中排除。见GPU类描述。(默认 = [])
  17. # excludeUUIDexcludeID-除了它使用 UUID 之外,其他相同。(默认 = [])
  18. # 输出
  19. # deviceIDs - 所有可用 GPU 设备 ID 的列表。如果当前负载和内存使用量分别小于maxLoad和maxMemory,则认为 GPU 可用。该列表是根据 排序的order。返回的设备 ID 的最大数量由 限制limit。
  20. def get_gpu_ids():
  21. deviceIDs = getAvailable(maxLoad=0.80, maxMemory=0.80)
  22. return deviceIDs
  23. def get_all_gpu_ids():
  24. return getGPUs()
  25. def get_first_gpu_name():
  26. gps = get_all_gpu_ids()
  27. if len(gps) == 0:
  28. raise ServiceException(ExceptionType.NO_GPU_RESOURCES.value[0],
  29. ExceptionType.NO_GPU_RESOURCES.value[1])
  30. return gps[0].name
  31. def check_gpu_resource(requestId=None):
  32. gpu_ids = get_gpu_ids()
  33. if len(gpu_ids) == 0 or 0 not in gpu_ids:
  34. print_gpu_status(requestId)
  35. raise ServiceException(ExceptionType.NO_GPU_RESOURCES.value[0],
  36. ExceptionType.NO_GPU_RESOURCES.value[1])
  37. return gpu_ids
  38. def print_gpu_ex_status(requestId=None):
  39. gpu_ids = get_gpu_ids()
  40. result = False
  41. if len(gpu_ids) == 0 or 0 not in gpu_ids:
  42. result = True
  43. print_gpu_status(requestId)
  44. return result
  45. def print_gpu_status(requestId=None):
  46. GPUs = get_all_gpu_ids()
  47. if len(GPUs) == 0:
  48. return
  49. for gpu in GPUs:
  50. if requestId:
  51. logger.info("""############################################################################################
  52. GPU ID:{}, GPU 名称:{}, 负载率:{}, 内存使用率:{}, 总内存:{}, 占用内存:{}, 空闲内存:{}, requestId:{}
  53. ############################################################################################""", gpu.id,
  54. gpu.name, gpu.load * 100, gpu.memoryUtil * 100, gpu.memoryTotal, gpu.memoryUsed, gpu.memoryFree,
  55. requestId)
  56. else:
  57. logger.info("""############################################################################################
  58. GPU ID:{}, GPU 名称:{}, 负载率:{}, 内存使用率:{}, 总内存:{}, 占用内存:{}, 空闲内存:{}
  59. ############################################################################################""", gpu.id,
  60. gpu.name, gpu.load * 100, gpu.memoryUtil * 100, gpu.memoryTotal, gpu.memoryUsed, gpu.memoryFree)