gpustack-runtime 0.1.38.post2__py3-none-any.whl → 0.1.38.post4__py3-none-any.whl

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.
@@ -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.38.post2'
31
- __version_tuple__ = version_tuple = (0, 1, 38, 'post2')
30
+ __version__ = version = '0.1.38.post4'
31
+ __version_tuple__ = version_tuple = (0, 1, 38, 'post4')
32
32
  try:
33
33
  from ._version_appendix import git_commit
34
34
  __commit_id__ = commit_id = git_commit
@@ -1 +1 @@
1
- git_commit = "2567d66"
1
+ git_commit = "6f0c13f"
@@ -223,8 +223,9 @@ def rsmi_dev_target_graphics_version_get(device=0):
223
223
  c_version = c_uint64()
224
224
  ret = rocmsmiLib.rsmi_dev_target_graphics_version_get(device, byref(c_version))
225
225
  _rocmsmiCheckReturn(ret)
226
- version = hex(c_version.value)[2:]
227
- return "gfx" + version
226
+ if c_version.value < 2000:
227
+ return "gfx" + str(c_version.value)
228
+ return "gfx" + hex(c_version.value)[2:]
228
229
  except AttributeError:
229
230
  return None
230
231
 
gpustack_runtime/envs.py CHANGED
@@ -381,7 +381,7 @@ variables: dict[str, Callable[[], Any]] = {
381
381
  "GPUSTACK_RUNTIME_DEPLOY_RESOURCE_KEY_MAP_BACKEND_VISIBLE_DEVICES": lambda: to_dict(
382
382
  getenv(
383
383
  "GPUSTACK_RUNTIME_DEPLOY_RESOURCE_KEY_MAP_BACKEND_VISIBLE_DEVICES",
384
- "amd.com/devices=HIP_VISIBLE_DEVICES,ROCR_VISIBLE_DEVICES;"
384
+ "amd.com/devices=HIP_VISIBLE_DEVICES;"
385
385
  "huawei.com/devices=ASCEND_RT_VISIBLE_DEVICES,NPU_VISIBLE_DEVICES;"
386
386
  "cambricon.com/devices=MLU_VISIBLE_DEVICES;"
387
387
  "hygon.com/devices=HIP_VISIBLE_DEVICES;"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gpustack-runtime
3
- Version: 0.1.38.post2
3
+ Version: 0.1.38.post4
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
@@ -1,8 +1,8 @@
1
1
  gpustack_runtime/__init__.py,sha256=kKcK6DMIXOdpWhgMS7xlsNrBNvEmY0L8eyQtBIC3CU4,160
2
2
  gpustack_runtime/__main__.py,sha256=Peh1iQnBiQ8GS0lew9rDwlciAHFJn2x7Tm8jyx1PJW8,3488
3
- gpustack_runtime/_version.py,sha256=ouuYyFNWHR0cA89x0BUEhiLvsudYfbD6bnvl5BAIkko,792
3
+ gpustack_runtime/_version.py,sha256=LkZ_HfAvkuhNFV2XXPUQguUa-DQ2qLZRrbeWHEfbt7I,792
4
4
  gpustack_runtime/_version.pyi,sha256=A42NoSgcqEXVy2OeNm4LXC9CbyonbooYrSUBlPm2lGY,156
5
- gpustack_runtime/envs.py,sha256=qvGn57dVQSdC01QtIQQ7gVRJEls-IvrWXk7WHmPCZM0,25750
5
+ gpustack_runtime/envs.py,sha256=idxNocU7IkDmP7m41oBEpXgWNg3WM8m_ByPbb4qR2qc,25729
6
6
  gpustack_runtime/logging.py,sha256=h_fvD5FV7GHCo00IUDLQmkPR-H6r66IX_WSwZwl0mCw,6869
7
7
  gpustack_runtime/cmds/__init__.py,sha256=V2c-rsQyHJCMo3XUqoh78EeL10AM8SDx8hdwpyrRNCc,1084
8
8
  gpustack_runtime/cmds/__types__.py,sha256=7C4kQM0EHPD8WpJpTo6kh9rEdkrYALcLQ-GAzMMsqV8,789
@@ -38,10 +38,10 @@ gpustack_runtime/detector/pymxsml/mxsml.py,sha256=nRuKSVxIsJj2SJX-SYnE9NGZ7hGjWO
38
38
  gpustack_runtime/detector/pymxsml/mxsml_extension.py,sha256=zfWFRGa9eSup336t2lPhIvCbPpa7Prn-7xCHRljg4CI,26967
39
39
  gpustack_runtime/detector/pymxsml/mxsml_mcm.py,sha256=a4rX7hJNJKTqLodKU9rYeDaAEKef6UNVThl1w-aiFsA,15363
40
40
  gpustack_runtime/detector/pyrocmcore/__init__.py,sha256=8XxKmwLX4-uoP7cfxjGoEmk9qlrGf0804pgyb74mJKs,2108
41
- gpustack_runtime/detector/pyrocmsmi/__init__.py,sha256=wuSue_p48-JjkdCK82pd1KS9c42w_xkBPmhGnu5kp-k,11481
42
- gpustack_runtime/_version_appendix.py,sha256=0uQRTtcOX04gPFN1zUuiipbVLMP5bnddPMs9ZGKfgPU,23
43
- gpustack_runtime-0.1.38.post2.dist-info/METADATA,sha256=EuFK6z_K-7EfwQh9rfbc-H3NwVX8nPtCmsB7cpYluxc,1971
44
- gpustack_runtime-0.1.38.post2.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
45
- gpustack_runtime-0.1.38.post2.dist-info/entry_points.txt,sha256=bBO_61GxP6dIT74uZwbSDgW5Vt2pTePUS3CgjUJkUgg,68
46
- gpustack_runtime-0.1.38.post2.dist-info/licenses/LICENSE,sha256=OiPibowBvB-NHV3TP_NOj18XNBlXcshXZFMpa3uvKVE,10362
47
- gpustack_runtime-0.1.38.post2.dist-info/RECORD,,
41
+ gpustack_runtime/detector/pyrocmsmi/__init__.py,sha256=gtyiS4vXpuc9Y9xt3cw_ObqiivbsU8_xi48TIqZA0hk,11538
42
+ gpustack_runtime/_version_appendix.py,sha256=1L4vGb6HxfiLiH-HSVsrR2OIygICICdUcmIuz_niMWc,23
43
+ gpustack_runtime-0.1.38.post4.dist-info/METADATA,sha256=u66aVvRmepjlSotPiQ7DWGmaOZJyvI2Xz9HQyQs1cnM,1971
44
+ gpustack_runtime-0.1.38.post4.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
45
+ gpustack_runtime-0.1.38.post4.dist-info/entry_points.txt,sha256=bBO_61GxP6dIT74uZwbSDgW5Vt2pTePUS3CgjUJkUgg,68
46
+ gpustack_runtime-0.1.38.post4.dist-info/licenses/LICENSE,sha256=OiPibowBvB-NHV3TP_NOj18XNBlXcshXZFMpa3uvKVE,10362
47
+ gpustack_runtime-0.1.38.post4.dist-info/RECORD,,