Skip to content

Commit 65b2931

Browse files
Usheraxiado-zz
authored andcommitted
To support AMD64 cpu
1 parent fa3d74a commit 65b2931

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
def get_version() -> str:
5-
return "0.1.42"
5+
return "0.1.43"
66

77
install_requires = [
88
"requests",

src/sharpai_hub/utils/check_env.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ def get_docker_compose_arch_filename():
6363
elif 'Intel64' in processor:
6464
arch = 'x86'
6565
docker_compose_yml = 'docker-compose-x86.yml'
66+
elif 'AMD64' in processor:
67+
arch = 'x86'
68+
docker_compose_yml = 'docker-compose-x86.yml'
6669
elif processor == 'aarch64':
6770
if 'tegra' in platform.platform():
6871
arch = 'aarch64'

0 commit comments

Comments
 (0)