gpustack-runner 0.1.22.post4__py3-none-any.whl → 0.1.22.post6__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.
- gpustack_runner/_version.py +2 -2
- gpustack_runner/_version_appendix.py +1 -1
- gpustack_runner/cmds/images.py +19 -5
- {gpustack_runner-0.1.22.post4.dist-info → gpustack_runner-0.1.22.post6.dist-info}/METADATA +2 -1
- {gpustack_runner-0.1.22.post4.dist-info → gpustack_runner-0.1.22.post6.dist-info}/RECORD +8 -8
- {gpustack_runner-0.1.22.post4.dist-info → gpustack_runner-0.1.22.post6.dist-info}/WHEEL +0 -0
- {gpustack_runner-0.1.22.post4.dist-info → gpustack_runner-0.1.22.post6.dist-info}/entry_points.txt +0 -0
- {gpustack_runner-0.1.22.post4.dist-info → gpustack_runner-0.1.22.post6.dist-info}/licenses/LICENSE +0 -0
gpustack_runner/_version.py
CHANGED
|
@@ -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.22.
|
|
31
|
-
__version_tuple__ = version_tuple = (0, 1, 22, '
|
|
30
|
+
__version__ = version = '0.1.22.post6'
|
|
31
|
+
__version_tuple__ = version_tuple = (0, 1, 22, 'post6')
|
|
32
32
|
try:
|
|
33
33
|
from ._version_appendix import git_commit
|
|
34
34
|
__commit_id__ = commit_id = git_commit
|
|
@@ -1 +1 @@
|
|
|
1
|
-
git_commit = "
|
|
1
|
+
git_commit = "89e310e"
|
gpustack_runner/cmds/images.py
CHANGED
|
@@ -440,14 +440,14 @@ class SaveImagesSubCommand(SubCommand):
|
|
|
440
440
|
|
|
441
441
|
command = [
|
|
442
442
|
"skopeo",
|
|
443
|
-
"--override-os",
|
|
444
|
-
override_os,
|
|
445
|
-
"--override-arch",
|
|
446
|
-
override_arch,
|
|
447
443
|
"copy",
|
|
448
444
|
"--src-tls-verify=false",
|
|
449
445
|
"--retry-times",
|
|
450
446
|
str(self.max_retries),
|
|
447
|
+
"--override-os",
|
|
448
|
+
override_os,
|
|
449
|
+
"--override-arch",
|
|
450
|
+
override_arch,
|
|
451
451
|
]
|
|
452
452
|
if self.source_username and self.source_password:
|
|
453
453
|
command.extend(
|
|
@@ -767,6 +767,10 @@ class CopyImagesSubCommand(SubCommand):
|
|
|
767
767
|
print(f"❌ Error syncing image '{img_name}'")
|
|
768
768
|
failures.append((img_name, img_err))
|
|
769
769
|
|
|
770
|
+
override_os, override_arch = None, None
|
|
771
|
+
if self.platform:
|
|
772
|
+
override_os, override_arch = self.platform.split("/", maxsplit=1)
|
|
773
|
+
|
|
770
774
|
# Submit tasks
|
|
771
775
|
for img in images:
|
|
772
776
|
command = [
|
|
@@ -774,10 +778,20 @@ class CopyImagesSubCommand(SubCommand):
|
|
|
774
778
|
"copy",
|
|
775
779
|
"--src-tls-verify=false",
|
|
776
780
|
"--dest-tls-verify=false",
|
|
777
|
-
"--all",
|
|
778
781
|
"--retry-times",
|
|
779
782
|
str(self.max_retries),
|
|
780
783
|
]
|
|
784
|
+
if override_os and override_arch:
|
|
785
|
+
command.extend(
|
|
786
|
+
[
|
|
787
|
+
"--override-os",
|
|
788
|
+
override_os,
|
|
789
|
+
"--override-arch",
|
|
790
|
+
override_arch,
|
|
791
|
+
],
|
|
792
|
+
)
|
|
793
|
+
else:
|
|
794
|
+
command.append("--all")
|
|
781
795
|
if self.source_username and self.source_password:
|
|
782
796
|
command.extend(
|
|
783
797
|
[
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gpustack-runner
|
|
3
|
-
Version: 0.1.22.
|
|
3
|
+
Version: 0.1.22.post6
|
|
4
4
|
Summary: GPUStack Runner is library for registering runnable accelerated backends and services in GPUStack.
|
|
5
5
|
Project-URL: Homepage, https://github.com/gpustack/runner
|
|
6
6
|
Project-URL: Bug Tracker, https://github.com/gpustack/gpustack/issues
|
|
@@ -54,6 +54,7 @@ The following table lists the supported accelerated backends and their correspon
|
|
|
54
54
|
|
|
55
55
|
> [!IMPORTANT]
|
|
56
56
|
> - Applied [ATB model patched](https://github.com/gpustack/gpustack/issues/2016#issuecomment-3646603380) to MindIE 2.2.rc1/2.1.rc2.
|
|
57
|
+
> - Applied [ATB config patched](https://github.com/gpustack/gpustack/issues/3551) to MindIE 2.2.rc1.
|
|
57
58
|
> - Applied [av package](https://github.com/gpustack/gpustack/issues/2016#issuecomment-3631228085) to MindIE 2.2.rc1/2.1.rc2.
|
|
58
59
|
> - Update vLLM 0.11.0 with stable vLLM Ascend plugin.
|
|
59
60
|
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
gpustack_runner/__init__.py,sha256=0_0jsxo1xjLtHTOIEU0_-A1qFEANzsVw-uXGjcILDwk,530
|
|
2
2
|
gpustack_runner/__main__.py,sha256=wtcp9lwMkaXGbQkuOY08EQhKfIHcTLSjMdnj2W3UGwk,1285
|
|
3
|
-
gpustack_runner/_version.py,sha256=
|
|
3
|
+
gpustack_runner/_version.py,sha256=pIUR8n7_4Bd9D7o3RWEFrNGX_pXd3M4slwMPehMqzpo,792
|
|
4
4
|
gpustack_runner/_version.pyi,sha256=A42NoSgcqEXVy2OeNm4LXC9CbyonbooYrSUBlPm2lGY,156
|
|
5
5
|
gpustack_runner/runner.py,sha256=GA7vy4xxaN63cFoc7_Ecft4mV5uYJe_DkQKkR1Htz3o,25881
|
|
6
6
|
gpustack_runner/runner.py.json,sha256=cwWroAmmvF1H9mT1tOPmWAZESKeclUd67EqOEBlCvs0,40265
|
|
7
7
|
gpustack_runner/cmds/__init__.py,sha256=Os8FdvqNjLYiVn_jnDo7rFEtAeVLJJI1odKHEqWF-Fw,417
|
|
8
8
|
gpustack_runner/cmds/__types__.py,sha256=7C4kQM0EHPD8WpJpTo6kh9rEdkrYALcLQ-GAzMMsqV8,789
|
|
9
|
-
gpustack_runner/cmds/images.py,sha256=
|
|
10
|
-
gpustack_runner/_version_appendix.py,sha256=
|
|
11
|
-
gpustack_runner-0.1.22.
|
|
12
|
-
gpustack_runner-0.1.22.
|
|
13
|
-
gpustack_runner-0.1.22.
|
|
14
|
-
gpustack_runner-0.1.22.
|
|
15
|
-
gpustack_runner-0.1.22.
|
|
9
|
+
gpustack_runner/cmds/images.py,sha256=8V2TAhXCuBge6rbCQoUKm35f1BO_YuvKBb8RyUbf1DA,38609
|
|
10
|
+
gpustack_runner/_version_appendix.py,sha256=nZgvyWkZ4NwLqYqLz19uxgnRTsKI8k72-8S0HcpSbds,23
|
|
11
|
+
gpustack_runner-0.1.22.post6.dist-info/METADATA,sha256=OAu8viR1pw70O7w69sug_YkBcHNpJmWQ5XJyHWQ8uto,13538
|
|
12
|
+
gpustack_runner-0.1.22.post6.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
13
|
+
gpustack_runner-0.1.22.post6.dist-info/entry_points.txt,sha256=M1Dxl6cY0kIgf2I4pPsV-_kU6BAtjj93spmsXAdwW3s,66
|
|
14
|
+
gpustack_runner-0.1.22.post6.dist-info/licenses/LICENSE,sha256=OiPibowBvB-NHV3TP_NOj18XNBlXcshXZFMpa3uvKVE,10362
|
|
15
|
+
gpustack_runner-0.1.22.post6.dist-info/RECORD,,
|
|
File without changes
|
{gpustack_runner-0.1.22.post4.dist-info → gpustack_runner-0.1.22.post6.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{gpustack_runner-0.1.22.post4.dist-info → gpustack_runner-0.1.22.post6.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|