Skip to content

Commit

Permalink
run same image when checking for nvidia runtime availability
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaiPetukhov committed Dec 4, 2024
1 parent 1646dba commit f544d47
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion agent/worker/agent_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1069,16 +1069,19 @@ def restart_agent(

def nvidia_runtime_is_available():
docker_api = docker.from_env()
image = constants.DEFAULT_APP_DOCKER_IMAGE()
container_info = get_container_info()
image = container_info.get("Image")
try:
docker_api.containers.run(
image,
entrypoint="",
command="nvidia-smi",
runtime="nvidia",
remove=True,
)
return True
except Exception as e:
sly.logger.debug(f"Failed to run nvidia-smi:", exc_info=True)
return False


Expand Down
2 changes: 1 addition & 1 deletion agent/worker/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def TOKEN():
_SUPERVISELY_AGENT_FILES: f"/opt/supervisely/agents/agent-files-{TOKEN()[:8]}",
_SUPERVISELY_AGENT_FILES_CONTAINER: "/app/sly-files",
_OFFLINE_MODE: False,
_DEFAULT_APP_DOCKER_IMAGE: "supervisely/base-py-sdk",
_DEFAULT_APP_DOCKER_IMAGE: "supervisely/base-py-sdk:latest",
_AGENT_FILES_IN_APP_CONTAINER: "/agent-storage",
_AUTO_CLEAN_INT_RANGE_DAYS: 7,
_REQUESTS_CA_BUNDLE_DIR_CONTAINER: "/sly_certs",
Expand Down

0 comments on commit f544d47

Please sign in to comment.