gpustack-runtime 0.1.41.post3__tar.gz → 0.1.42.post1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (142) hide show
  1. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/PKG-INFO +2 -2
  2. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/_version.py +2 -2
  3. gpustack_runtime-0.1.42.post1/gpustack_runtime/_version_appendix.py +1 -0
  4. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/cmds/detector.py +4 -2
  5. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/deployer/__types__.py +314 -233
  6. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/deployer/cdi/__init__.py +1 -1
  7. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/deployer/cdi/__types__.py +2 -2
  8. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/deployer/cdi/__utils__.py +4 -1
  9. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/deployer/cdi/amd.py +6 -8
  10. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/deployer/cdi/ascend.py +7 -9
  11. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/deployer/cdi/hygon.py +6 -8
  12. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/deployer/cdi/iluvatar.py +6 -8
  13. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/deployer/cdi/metax.py +6 -8
  14. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/deployer/cdi/thead.py +6 -8
  15. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/deployer/docker.py +133 -146
  16. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/deployer/k8s/deviceplugin/__init__.py +13 -8
  17. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/deployer/k8s/deviceplugin/plugin.py +26 -21
  18. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/deployer/kuberentes.py +89 -108
  19. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/deployer/podman.py +113 -120
  20. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/detector/__init__.py +2 -0
  21. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/detector/__types__.py +26 -0
  22. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/detector/__utils__.py +3 -0
  23. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/detector/amd.py +32 -10
  24. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/detector/ascend.py +67 -13
  25. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/detector/cambricon.py +3 -0
  26. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/detector/hygon.py +22 -3
  27. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/detector/iluvatar.py +15 -7
  28. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/detector/metax.py +16 -6
  29. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/detector/mthreads.py +22 -8
  30. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/detector/nvidia.py +148 -140
  31. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/detector/pyacl/__init__.py +34 -14
  32. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/detector/pydcmi/__init__.py +4 -2
  33. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/detector/pyixml/__init__.py +16 -0
  34. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/detector/pyrocmsmi/__init__.py +14 -0
  35. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/detector/thead.py +145 -134
  36. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/envs.py +7 -6
  37. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/pyproject.toml +1 -1
  38. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/samples/detect_output_amd_mi300x.json +2 -0
  39. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/samples/detect_output_amd_mi308x.json +8 -0
  40. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/samples/detect_output_amd_rx7800xt.json +1 -0
  41. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/samples/detect_output_ascend_310p3.json +2 -0
  42. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/samples/detect_output_ascend_910b2.json +8 -0
  43. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/samples/detect_output_hygon_k100ai.json +8 -0
  44. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/samples/detect_output_metax_c500.json +8 -0
  45. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/samples/detect_output_nvidia_gb10.json +1 -0
  46. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/samples/detect_output_nvidia_h100.json +8 -0
  47. gpustack_runtime-0.1.42.post1/tests/gpustack_runtime/detector/samples/detect_output_nvidia_h100_mig.json +309 -0
  48. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/samples/detect_output_nvidia_h200.json +8 -0
  49. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/samples/detect_output_nvidia_rtx4080super.json +2 -0
  50. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/samples/detect_output_nvidia_rtx4090d.json +1 -0
  51. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/samples/detect_output_nvidia_rtx5090d.json +1 -0
  52. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/samples/detect_output_thead_ppu.json +2 -0
  53. gpustack_runtime-0.1.42.post1/tests/gpustack_runtime/detector/samples/topology_output_nvidia_h100_mig.json +233 -0
  54. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/uv.lock +4 -4
  55. gpustack_runtime-0.1.41.post3/gpustack_runtime/_version_appendix.py +0 -1
  56. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/.codespelldict +0 -0
  57. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/.codespellrc +0 -0
  58. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/.dockerignore +0 -0
  59. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/.gitattributes +0 -0
  60. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/.gitignore +0 -0
  61. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/.pre-commit-config.yaml +0 -0
  62. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/.python-version +0 -0
  63. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/LICENSE +0 -0
  64. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/Makefile +0 -0
  65. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/README.md +0 -0
  66. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/buf.gen.yaml +0 -0
  67. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/buf.lock +0 -0
  68. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/buf.yaml +0 -0
  69. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/deploy/manifests/docker-compose.yaml +0 -0
  70. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/deploy/manifests/kubernetes.yaml +0 -0
  71. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/docs/index.md +0 -0
  72. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/docs/modules/gpustack_runtime.deployer.md +0 -0
  73. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/docs/modules/gpustack_runtime.detector.md +0 -0
  74. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/docs/modules/gpustack_runtime.md +0 -0
  75. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/__init__.py +0 -0
  76. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/__main__.py +0 -0
  77. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/_version.pyi +0 -0
  78. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/cmds/__init__.py +0 -0
  79. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/cmds/__types__.py +0 -0
  80. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/cmds/deployer.py +0 -0
  81. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/cmds/images.py +0 -0
  82. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/deployer/__init__.py +0 -0
  83. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/deployer/__patches__.py +0 -0
  84. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/deployer/__utils__.py +0 -0
  85. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/deployer/k8s/deviceplugin/__types__.py +0 -0
  86. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/deployer/k8s/types/kubelet/deviceplugin/v1beta1/__init__.py +0 -0
  87. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/deployer/k8s/types/kubelet/deviceplugin/v1beta1/api.proto +0 -0
  88. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/deployer/k8s/types/kubelet/deviceplugin/v1beta1/api_pb2.py +0 -0
  89. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/deployer/k8s/types/kubelet/deviceplugin/v1beta1/api_pb2.pyi +0 -0
  90. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/deployer/k8s/types/kubelet/deviceplugin/v1beta1/api_pb2_grpc.py +0 -0
  91. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/deployer/k8s/types/kubelet/deviceplugin/v1beta1/constants.py +0 -0
  92. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/detector/pyamdgpu/__init__.py +0 -0
  93. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/detector/pyamdsmi/__init__.py +0 -0
  94. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/detector/pycuda/__init__.py +0 -0
  95. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/detector/pyhgml/__init__.py +0 -0
  96. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/detector/pyhgml/libhgml.so +0 -0
  97. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/detector/pyhgml/libuki.so +0 -0
  98. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/detector/pyhsa/__init__.py +0 -0
  99. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/detector/pymxsml/__init__.py +0 -0
  100. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/detector/pyrocmcore/__init__.py +0 -0
  101. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/gpustack_runtime/logging.py +0 -0
  102. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/hatch.toml +0 -0
  103. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/mkdocs.yml +0 -0
  104. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/pack/Dockerfile +0 -0
  105. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/pack/Dockerfile.dummy +0 -0
  106. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/pytest.ini +0 -0
  107. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/ruff.toml +0 -0
  108. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/deployer/fixtures/__init__.py +0 -0
  109. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/deployer/fixtures/test_compare_versions.json +0 -0
  110. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/deployer/fixtures/test_correct_runner_image.json +0 -0
  111. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/deployer/fixtures/test_load_yaml_or_json.json +0 -0
  112. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/deployer/fixtures/test_load_yaml_or_json_multiple_jsons.json +0 -0
  113. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/deployer/fixtures/test_load_yaml_or_json_multiple_yamls.yaml +0 -0
  114. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/deployer/fixtures/test_load_yaml_or_json_single_json.json +0 -0
  115. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/deployer/fixtures/test_load_yaml_or_json_single_yaml.yaml +0 -0
  116. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/deployer/fixtures/test_nginx_entrypoint.sh +0 -0
  117. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/deployer/test_utils.py +0 -0
  118. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/fixtures/__init__.py +0 -0
  119. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/samples/README.md +0 -0
  120. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/samples/topology_output_amd_mi300x.json +0 -0
  121. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/samples/topology_output_amd_mi308x.json +0 -0
  122. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/samples/topology_output_amd_rx7800xt.json +0 -0
  123. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/samples/topology_output_ascend_310p3.json +0 -0
  124. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/samples/topology_output_ascend_910b2.json +0 -0
  125. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/samples/topology_output_hygon_k100ai.json +0 -0
  126. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/samples/topology_output_metax_c500.json +0 -0
  127. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/samples/topology_output_mthreads_s5000.json +0 -0
  128. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/samples/topology_output_nvidia_h100.json +0 -0
  129. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/samples/topology_output_nvidia_h200.json +0 -0
  130. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/samples/topology_output_nvidia_rtx4080super.json +0 -0
  131. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/samples/topology_output_nvidia_rtx4090d.json +0 -0
  132. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/samples/topology_output_nvidia_rtx5090d.json +0 -0
  133. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/samples/topology_output_thead_ppu.json +0 -0
  134. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/test_amd.py +0 -0
  135. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/test_ascend.py +0 -0
  136. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/test_cambricon.py +0 -0
  137. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/test_hygon.py +0 -0
  138. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/test_iluvatar.py +0 -0
  139. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/test_metax.py +0 -0
  140. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/test_mthreads.py +0 -0
  141. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/tests/gpustack_runtime/detector/test_nvidia.py +0 -0
  142. {gpustack_runtime-0.1.41.post3 → gpustack_runtime-0.1.42.post1}/uv.toml +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gpustack-runtime
3
- Version: 0.1.41.post3
3
+ Version: 0.1.42.post1
4
4
  Summary: GPUStack Runtime is library for detecting GPU resources and launching GPU workloads.
5
5
  Project-URL: Homepage, https://github.com/gpustack/runtime
6
6
  Project-URL: Bug Tracker, https://github.com/gpustack/gpustack/issues
@@ -16,7 +16,7 @@ Requires-Python: >=3.10
16
16
  Requires-Dist: argcomplete>=3.6.3
17
17
  Requires-Dist: cachetools>=5.5.2
18
18
  Requires-Dist: docker>=7.1.0
19
- Requires-Dist: gpustack-runner>=0.1.24.post1
19
+ Requires-Dist: gpustack-runner>=0.1.24.post4
20
20
  Requires-Dist: grpc-interceptor>=0.15.4
21
21
  Requires-Dist: grpcio>=1.76.0
22
22
  Requires-Dist: kubernetes>=33.1.0
@@ -27,8 +27,8 @@ version_tuple: VERSION_TUPLE
27
27
  __commit_id__: COMMIT_ID
28
28
  commit_id: COMMIT_ID
29
29
 
30
- __version__ = version = '0.1.41.post3'
31
- __version_tuple__ = version_tuple = (0, 1, 41, 'post3')
30
+ __version__ = version = '0.1.42.post1'
31
+ __version_tuple__ = version_tuple = (0, 1, 42, 'post1')
32
32
  try:
33
33
  from ._version_appendix import git_commit
34
34
  __commit_id__ = commit_id = git_commit
@@ -0,0 +1 @@
1
+ git_commit = "ff610ac"
@@ -6,6 +6,7 @@ import time
6
6
  from typing import TYPE_CHECKING
7
7
 
8
8
  from ..detector import (
9
+ DeviceMemoryStatusEnum,
9
10
  Devices,
10
11
  Topology,
11
12
  detect_devices,
@@ -122,7 +123,7 @@ class GetDevicesTopologySubCommand(SubCommand):
122
123
  "",
123
124
  "Legend (from nearest to farthest):",
124
125
  " X = Self",
125
- " LINK = Connection traversing with High-Speed Link (e.g., AMD XGMI, Ascend HCCS, NVIDIA NVLink)",
126
+ " LINK = Connection traversing with High-Speed Link (e.g., AMD XGMI, Ascend HCCS, MThreads MTLink, NVIDIA NVLink, T-Head ICNLink)",
126
127
  " PIX = Connection traversing at most a single PCIe bridge",
127
128
  " PXB = Connection traversing multiple PCIe bridges (without traversing the PCIe Host Bridge)",
128
129
  " PHB = Connection traversing PCIe as well as a PCIe Host Bridge (typically the CPU)",
@@ -142,7 +143,7 @@ def format_devices_table(devs: Devices) -> str:
142
143
  return "No GPUs detected."
143
144
 
144
145
  # Column headers
145
- col_headers = ["GPU", "Name", "Memory-Usage", "GPU-Util", "Temp", "CC"]
146
+ col_headers = ["GPU", "Name", "Memory-Usage", "GPU-Util", "Temp", "CC", "Status"]
146
147
  # Gather all rows to determine max width for each column
147
148
  rows = []
148
149
  for dev in devs:
@@ -153,6 +154,7 @@ def format_devices_table(devs: Devices) -> str:
153
154
  f"{dev.cores_utilization}%",
154
155
  f"{dev.temperature}C" if dev.temperature is not None else "N/A",
155
156
  dev.compute_capability if dev.compute_capability else "N/A",
157
+ "OK" if dev.memory_status == DeviceMemoryStatusEnum.HEALTHY else "ERR",
156
158
  ]
157
159
  rows.append(row)
158
160