Skip to content

Commit

Permalink
To support AMD64 cpu
Browse files Browse the repository at this point in the history
  • Loading branch information
Usher authored and axiado-zz committed Aug 29, 2023
1 parent fa3d74a commit 65b2931
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


def get_version() -> str:
return "0.1.42"
return "0.1.43"

install_requires = [
"requests",
Expand Down
3 changes: 3 additions & 0 deletions src/sharpai_hub/utils/check_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ def get_docker_compose_arch_filename():
elif 'Intel64' in processor:
arch = 'x86'
docker_compose_yml = 'docker-compose-x86.yml'
elif 'AMD64' in processor:
arch = 'x86'
docker_compose_yml = 'docker-compose-x86.yml'
elif processor == 'aarch64':
if 'tegra' in platform.platform():
arch = 'aarch64'
Expand Down

0 comments on commit 65b2931

Please sign in to comment.